package dal import ( "context" "gitlab.guxuan.icu/jinshan_community/internal/mods/rbac/schema" "gitlab.guxuan.icu/jinshan_community/pkg/errors" "gitlab.guxuan.icu/jinshan_community/pkg/util" "gorm.io/gorm" ) // Get menu storage instance func GetMenuDB(ctx context.Context, defDB *gorm.DB) *gorm.DB { return util.GetDB(ctx, defDB).Model(new(schema.Menu)) } // Menu management for RBAC type Menu struct { DB *gorm.DB } // Query menus from the database based on the provided parameters and options. func (a *Menu) Query(ctx context.Context, params schema.MenuQueryParam, opts ...schema.MenuQueryOptions) (*schema.MenuQueryResult, error) { var opt schema.MenuQueryOptions if len(opts) > 0 { opt = opts[0] } db := GetMenuDB(ctx, a.DB) if v := params.InIDs; len(v) > 0 { db = db.Where("id IN ?", v) } if v := params.LikeName; len(v) > 0 { db = db.Where("name LIKE ?", "%"+v+"%") } if v := params.Status; len(v) > 0 { db = db.Where("status = ?", v) } if v := params.ParentID; len(v) > 0 { db = db.Where("parent_id = ?", v) } if v := params.ParentPathPrefix; len(v) > 0 { db = db.Where("parent_path LIKE ?", v+"%") } if v := params.UserID; len(v) > 0 { userRoleQuery := GetUserRoleDB(ctx, a.DB).Where("user_id = ?", v).Select("role_id") roleMenuQuery := GetRoleMenuDB(ctx, a.DB).Where("role_id IN (?)", userRoleQuery).Select("menu_id") db = db.Where("id IN (?)", roleMenuQuery) } if v := params.RoleID; len(v) > 0 { roleMenuQuery := GetRoleMenuDB(ctx, a.DB).Where("role_id = ?", v).Select("menu_id") db = db.Where("id IN (?)", roleMenuQuery) } var list schema.Menus pageResult, err := util.WrapPageQuery(ctx, db, params.PaginationParam, opt.QueryOptions, &list) if err != nil { return nil, errors.WithStack(err) } queryResult := &schema.MenuQueryResult{ PageResult: pageResult, Data: list, } return queryResult, nil } // Get the specified menu from the database. func (a *Menu) Get(ctx context.Context, id string, opts ...schema.MenuQueryOptions) (*schema.Menu, error) { var opt schema.MenuQueryOptions if len(opts) > 0 { opt = opts[0] } item := new(schema.Menu) ok, err := util.FindOne(ctx, GetMenuDB(ctx, a.DB).Where("id=?", id), opt.QueryOptions, item) if err != nil { return nil, errors.WithStack(err) } else if !ok { return nil, nil } return item, nil } func (a *Menu) GetByCodeAndParentID(ctx context.Context, code, parentID string, opts ...schema.MenuQueryOptions) (*schema.Menu, error) { var opt schema.MenuQueryOptions if len(opts) > 0 { opt = opts[0] } item := new(schema.Menu) ok, err := util.FindOne(ctx, GetMenuDB(ctx, a.DB).Where("code=? AND parent_id=?", code, parentID), opt.QueryOptions, item) if err != nil { return nil, errors.WithStack(err) } else if !ok { return nil, nil } return item, nil } // GetByNameAndParentID get the specified menu from the database. func (a *Menu) GetByNameAndParentID(ctx context.Context, name, parentID string, opts ...schema.MenuQueryOptions) (*schema.Menu, error) { var opt schema.MenuQueryOptions if len(opts) > 0 { opt = opts[0] } item := new(schema.Menu) ok, err := util.FindOne(ctx, GetMenuDB(ctx, a.DB).Where("name=? AND parent_id=?", name, parentID), opt.QueryOptions, item) if err != nil { return nil, errors.WithStack(err) } else if !ok { return nil, nil } return item, nil } // Checks if the specified menu exists in the database. func (a *Menu) Exists(ctx context.Context, id string) (bool, error) { ok, err := util.Exists(ctx, GetMenuDB(ctx, a.DB).Where("id=?", id)) return ok, errors.WithStack(err) } // Checks if a menu with the specified `code` exists under the specified `parentID` in the database. func (a *Menu) ExistsCodeByParentID(ctx context.Context, code, parentID string) (bool, error) { ok, err := util.Exists(ctx, GetMenuDB(ctx, a.DB).Where("code=? AND parent_id=?", code, parentID)) return ok, errors.WithStack(err) } // Checks if a menu with the specified `name` exists under the specified `parentID` in the database. func (a *Menu) ExistsNameByParentID(ctx context.Context, name, parentID string) (bool, error) { ok, err := util.Exists(ctx, GetMenuDB(ctx, a.DB).Where("name=? AND parent_id=?", name, parentID)) return ok, errors.WithStack(err) } // Create a new menu. func (a *Menu) Create(ctx context.Context, item *schema.Menu) error { result := GetMenuDB(ctx, a.DB).Create(item) return errors.WithStack(result.Error) } // Update the specified menu in the database. func (a *Menu) Update(ctx context.Context, item *schema.Menu) error { result := GetMenuDB(ctx, a.DB).Where("id=?", item.ID).Select("*").Omit("created_at").Updates(item) return errors.WithStack(result.Error) } // Delete the specified menu from the database. func (a *Menu) Delete(ctx context.Context, id string) error { result := GetMenuDB(ctx, a.DB).Where("id=?", id).Delete(new(schema.Menu)) return errors.WithStack(result.Error) } // Updates the parent path of the specified menu. func (a *Menu) UpdateParentPath(ctx context.Context, id, parentPath string) error { result := GetMenuDB(ctx, a.DB).Where("id=?", id).Update("parent_path", parentPath) return errors.WithStack(result.Error) } // Updates the status of all menus whose parent path starts with the provided parent path. func (a *Menu) UpdateStatusByParentPath(ctx context.Context, parentPath, status string) error { result := GetMenuDB(ctx, a.DB).Where("parent_path like ?", parentPath+"%").Update("status", status) return errors.WithStack(result.Error) }