Documentation ¶
Index ¶
- type Base
- type MenuModel
- func (t MenuModel) AddRole(roleId string)
- func (t MenuModel) CheckRole(roleId string) bool
- func (t MenuModel) Delete()
- func (t MenuModel) DeleteRoles()
- func (t MenuModel) Find(id interface{}) MenuModel
- func (t MenuModel) MapToModel(m map[string]interface{}) MenuModel
- func (t MenuModel) New(title, icon, uri, header string, parentId, order int64) MenuModel
- func (t MenuModel) ResetOrder(data []map[string]interface{})
- func (t MenuModel) SetConn(con db.Connection) MenuModel
- func (t MenuModel) Update(title, icon, uri, header string, parentId int64) MenuModel
- type OperationLogModel
- func (t OperationLogModel) Find(id interface{}) OperationLogModel
- func (t OperationLogModel) MapToModel(m map[string]interface{}) OperationLogModel
- func (t OperationLogModel) New(userId int64, path, method, ip, input string) OperationLogModel
- func (t OperationLogModel) SetConn(con db.Connection) OperationLogModel
- type PermissionModel
- func (t PermissionModel) Find(id interface{}) PermissionModel
- func (t PermissionModel) FindByName(name string) PermissionModel
- func (t PermissionModel) FindBySlug(slug string) PermissionModel
- func (t PermissionModel) IsEmpty() bool
- func (t PermissionModel) IsSlugExist(slug string, id string) bool
- func (t PermissionModel) MapToModel(m map[string]interface{}) PermissionModel
- func (t PermissionModel) SetConn(con db.Connection) PermissionModel
- type RoleModel
- func (t RoleModel) AddPermission(permissionId string)
- func (t RoleModel) CheckPermission(permissionId string) bool
- func (t RoleModel) DeletePermissions()
- func (t RoleModel) Find(id interface{}) RoleModel
- func (t RoleModel) IsSlugExist(slug string, id string) bool
- func (t RoleModel) MapToModel(m map[string]interface{}) RoleModel
- func (t RoleModel) New(name, slug string) RoleModel
- func (t RoleModel) SetConn(con db.Connection) RoleModel
- func (t RoleModel) Update(name, slug string) RoleModel
- type UserModel
- func (t UserModel) AddPermission(permissionId string)
- func (t UserModel) AddRole(roleId string)
- func (t UserModel) CheckPermission(permission string) bool
- func (t UserModel) CheckPermissionById(permissionId string) bool
- func (t UserModel) CheckPermissionByUrlMethod(path, method string, formParams url.Values) bool
- func (t UserModel) CheckRole(slug string) bool
- func (t UserModel) CheckRoleId(roleId string) bool
- func (t UserModel) DeletePermissions()
- func (t UserModel) DeleteRoles()
- func (t UserModel) Find(id interface{}) UserModel
- func (t UserModel) FindByUserName(username interface{}) UserModel
- func (t UserModel) GetAllRoleId() []interface{}
- func (t UserModel) GetCheckPermissionByUrlMethod(path, method string) string
- func (t UserModel) HasMenu() bool
- func (t UserModel) IsEmpty() bool
- func (t UserModel) IsSuperAdmin() bool
- func (t UserModel) MapToModel(m map[string]interface{}) UserModel
- func (t UserModel) New(username, password, name, avatar string) UserModel
- func (t UserModel) ReleaseConn() UserModel
- func (t UserModel) SetConn(con db.Connection) UserModel
- func (t UserModel) Update(username, password, name, avatar string) UserModel
- func (t UserModel) UpdateAvatar(avatar string)
- func (t UserModel) UpdatePwd(password string) UserModel
- func (t UserModel) WithMenus() UserModel
- func (t UserModel) WithPermissions() UserModel
- func (t UserModel) WithRoles() UserModel
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Base ¶ added in v1.2.12
type Base struct { TableName string Conn db.Connection }
Base is base model structure.
type MenuModel ¶ added in v1.2.12
type MenuModel struct { Base Id int64 Title string ParentId int64 Icon string Uri string Header string CreatedAt string UpdatedAt string }
MenuModel is menu model structure.
func MenuWithId ¶ added in v1.2.12
MenuWithId return a default menu model of given id.
func (MenuModel) CheckRole ¶ added in v1.2.12
CheckRole check the role if has permission to get the menu.
func (MenuModel) Delete ¶ added in v1.2.12
func (t MenuModel) Delete()
Delete delete the menu model.
func (MenuModel) DeleteRoles ¶ added in v1.2.12
func (t MenuModel) DeleteRoles()
DeleteRoles delete roles with menu.
func (MenuModel) MapToModel ¶ added in v1.2.12
MapToModel get the menu model from given map.
func (MenuModel) ResetOrder ¶ added in v1.2.12
ResetOrder update the order of menu models.
type OperationLogModel ¶ added in v1.2.12
type OperationLogModel struct { Base Id int64 UserId int64 Path string Method string Ip string Input string CreatedAt string UpdatedAt string }
OperationLogModel is operation log model structure.
func OperationLog ¶ added in v1.2.12
func OperationLog() OperationLogModel
OperationLog return a default operation log model.
func (OperationLogModel) Find ¶ added in v1.2.12
func (t OperationLogModel) Find(id interface{}) OperationLogModel
Find return a default operation log model of given id.
func (OperationLogModel) MapToModel ¶ added in v1.2.12
func (t OperationLogModel) MapToModel(m map[string]interface{}) OperationLogModel
MapToModel get the operation log model from given map.
func (OperationLogModel) New ¶ added in v1.2.12
func (t OperationLogModel) New(userId int64, path, method, ip, input string) OperationLogModel
New create a new operation log model.
func (OperationLogModel) SetConn ¶ added in v1.2.12
func (t OperationLogModel) SetConn(con db.Connection) OperationLogModel
type PermissionModel ¶ added in v1.2.12
type PermissionModel struct { Base Id int64 Name string Slug string HttpMethod []string HttpPath []string CreatedAt string UpdatedAt string }
PermissionModel is permission model structure.
func Permission ¶ added in v1.2.12
func Permission() PermissionModel
Permission return a default permission model.
func PermissionWithId ¶ added in v1.2.12
func PermissionWithId(id string) PermissionModel
PermissionWithId return a default permission model of given id.
func (PermissionModel) Find ¶ added in v1.2.12
func (t PermissionModel) Find(id interface{}) PermissionModel
Find return the permission model of given id.
func (PermissionModel) FindByName ¶ added in v1.2.12
func (t PermissionModel) FindByName(name string) PermissionModel
FindBySlug return the permission model of given slug.
func (PermissionModel) FindBySlug ¶ added in v1.2.12
func (t PermissionModel) FindBySlug(slug string) PermissionModel
FindBySlug return the permission model of given slug.
func (PermissionModel) IsEmpty ¶ added in v1.2.12
func (t PermissionModel) IsEmpty() bool
IsEmpty check the user model is empty or not.
func (PermissionModel) IsSlugExist ¶ added in v1.2.12
func (t PermissionModel) IsSlugExist(slug string, id string) bool
IsSlugExist check the row exist with given slug and id.
func (PermissionModel) MapToModel ¶ added in v1.2.12
func (t PermissionModel) MapToModel(m map[string]interface{}) PermissionModel
MapToModel get the permission model from given map.
func (PermissionModel) SetConn ¶ added in v1.2.12
func (t PermissionModel) SetConn(con db.Connection) PermissionModel
type RoleModel ¶ added in v1.2.12
RoleModel is role model structure.
func RoleWithId ¶ added in v1.2.12
RoleWithId return a default role model of given id.
func (RoleModel) AddPermission ¶ added in v1.2.12
AddPermission add the permissions to the role.
func (RoleModel) CheckPermission ¶ added in v1.2.12
CheckPermission check the permission of role.
func (RoleModel) DeletePermissions ¶ added in v1.2.12
func (t RoleModel) DeletePermissions()
DeletePermissions delete all the permissions of role.
func (RoleModel) IsSlugExist ¶ added in v1.2.12
IsSlugExist check the row exist with given slug and id.
func (RoleModel) MapToModel ¶ added in v1.2.12
MapToModel get the role model from given map.
type UserModel ¶ added in v1.2.12
type UserModel struct { Base `json:"-"` Id int64 `json:"id"` Name string `json:"name"` UserName string `json:"user_name"` Password string `json:"password"` Avatar string `json:"avatar"` RememberToken string `json:"remember_token"` Permissions []PermissionModel `json:"permissions"` MenuIds []int64 `json:"menu_ids"` Roles []RoleModel `json:"role"` Level string `json:"level"` LevelName string `json:"level_name"` CreatedAt string `json:"created_at"` UpdatedAt string `json:"updated_at"` }
UserModel is user model structure.
func UserWithId ¶ added in v1.2.12
UserWithId return a default user model of given id.
func (UserModel) AddPermission ¶ added in v1.2.12
AddPermission add a permission of the user model.
func (UserModel) CheckPermission ¶ added in v1.2.12
CheckPermission check the permission of the user.
func (UserModel) CheckPermissionById ¶ added in v1.2.12
CheckPermission check the permission of the user.
func (UserModel) CheckPermissionByUrlMethod ¶ added in v1.2.12
func (UserModel) CheckRoleId ¶ added in v1.2.12
CheckRole check the role of the user model.
func (UserModel) DeletePermissions ¶ added in v1.2.12
func (t UserModel) DeletePermissions()
DeletePermissions delete all the permissions of the user model.
func (UserModel) DeleteRoles ¶ added in v1.2.12
func (t UserModel) DeleteRoles()
DeleteRoles delete all the roles of the user model.
func (UserModel) FindByUserName ¶ added in v1.2.12
FindByUserName return a default user model of given name.
func (UserModel) GetAllRoleId ¶ added in v1.2.12
func (t UserModel) GetAllRoleId() []interface{}
func (UserModel) GetCheckPermissionByUrlMethod ¶ added in v1.2.12
func (UserModel) IsSuperAdmin ¶ added in v1.2.12
IsSuperAdmin check the user model is super admin or not.
func (UserModel) MapToModel ¶ added in v1.2.12
MapToModel get the user model from given map.
func (UserModel) ReleaseConn ¶ added in v1.2.12
UpdateAvatar update the avatar of user.
func (UserModel) UpdateAvatar ¶ added in v1.2.12
UpdateAvatar update the avatar of user.
func (UserModel) WithPermissions ¶ added in v1.2.12
WithPermissions query the permission info of the user.