funcGenCasbin() { e, err := casbin.NewEnforcer("./casbin/model.conf", "./casbin/policy.csv") if err != nil { fmt.Println("NewEnforce err:", err) return }
sub := "alice"// the user that wants to access a resource. obj := "data1"// the resource that is going to be accessed. act := "read"// the operation that the user performs on the resource.
enforce, err := e.Enforce(sub, obj, act) // true if err != nil { fmt.Println("Enforce err:", err) return } if enforce { fmt.Println("permit alice to read data1") // permit alice to read data1 } else { fmt.Println("deny the request, show an error") // deny the request, show an error } }
funcGenCasbin() { e, err := casbin.NewEnforcer(“./casbin/model.conf”, “./casbin/policy.csv”) if err != nil { fmt.Println(“NewEnforce err:”, err) return }
sub := "alice"// the user that wants to access a resource. obj := "data1"// the resource that is going to be accessed. act := "read"// the operation that the user performs on the resource.
funcGenCasbin() { e, err := casbin.NewEnforcer("./casbin/model.conf", "./casbin/policy.csv") if err != nil { fmt.Println("NewEnforce err:", err) return }
sub := "alice"// the user that wants to access a resource. obj := "data1"// the resource that is going to be accessed. act := "read"// the operation that the user performs on the resource.
func(e Enforcer) GetEnforcer(sub, obj, act string) error { enforce, err := e.Enforce(sub, obj, act) // true if err != nil { return err } if enforce { fmt.Println("成功访问") // permit alice to read data1 } else { fmt.Println("无权限A访问") // deny the request, show an error } returnnil }
funcRunCasbin() { e, err := NewEnforcer("./casbin/model.conf", "./casbin/policy.csv") if err != nil { fmt.Println(err) } sub := "alice"// the user that wants to access a resource. obj := "data1"// the resource that is going to be accessed. act := "read"// the operation that the user performs on the resource.