perms.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package model
  2. import "go.mongodb.org/mongo-driver/bson/primitive"
  3. const (
  4. Perm_Root = "超级管理员" //超级管理员
  5. Perm_SubAccount = "SubAccount" //子账号管理
  6. Perm_AccountRole = "AccountRole" //角色管理
  7. Perm_Shoe_Public_list = "ShoePublicList" //款式查看企业公开列表
  8. Perm_Shoe_Public_edit = "ShoePublicEdit" //款式编辑企业公开列表
  9. Perm_Shoe_Public_Remove = "ShoePublicRemove" //款式删除权限
  10. Perm_Shoe_Upload = "ShoeUpload" //款式上传
  11. Perm_Shoe_Remove = "ShoeRemove" //款式删除
  12. )
  13. type PermItem struct {
  14. Value string `bson:"value,omitempty" json:"value"`
  15. Name string `bson:"name,omitempty" json:"name"`
  16. }
  17. type Perms struct {
  18. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  19. Group string `bson:"group,omitempty" json:"group"`
  20. Children []*PermItem `bson:"children,omitempty" json:"children"`
  21. }
  22. // func (r *Role) IsPermOk(perm string) bool {
  23. // if r.Name == Perm_Root {
  24. // return true
  25. // }
  26. // if r.Perms == nil {
  27. // return false
  28. // }
  29. // for _, p := range r.Perms {
  30. // for _, item := range p.Children {
  31. // if item.Value == perm {
  32. // return true
  33. // }
  34. // }
  35. // }
  36. // return false
  37. // }