2021-11-11 08:16:17 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-04-05 10:54:05 +00:00
|
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
|
|
|
2022-10-10 03:46:33 +00:00
|
|
|
"git.selly.red/Selly-Modules/usermngmt/database"
|
|
|
|
"git.selly.red/Selly-Modules/usermngmt/model"
|
2021-11-11 08:16:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func roleFindByCondition(ctx context.Context, cond interface{}, opts ...*options.FindOptions) (docs []model.DBRole) {
|
|
|
|
var (
|
|
|
|
col = database.GetRoleCol()
|
|
|
|
)
|
|
|
|
docs = make([]model.DBRole, 0)
|
|
|
|
|
|
|
|
cursor, err := col.Find(ctx, cond, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer cursor.Close(ctx)
|
|
|
|
if err = cursor.All(ctx, &docs); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func permissionFindByCondition(ctx context.Context, cond interface{}, opts ...*options.FindOptions) (docs []model.DBPermission) {
|
|
|
|
var (
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
docs = make([]model.DBPermission, 0)
|
|
|
|
|
|
|
|
cursor, err := col.Find(ctx, cond, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer cursor.Close(ctx)
|
|
|
|
if err = cursor.All(ctx, &docs); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|