2021-11-10 09:06:33 +00:00
|
|
|
package permission
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2023-04-05 10:54:05 +00:00
|
|
|
"log"
|
2021-11-10 09:06:33 +00:00
|
|
|
|
|
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
2023-04-05 10:54:05 +00:00
|
|
|
|
|
|
|
"git.selly.red/Selly-Modules/usermngmt/database"
|
|
|
|
"git.selly.red/Selly-Modules/usermngmt/model"
|
2021-11-10 09:06:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func findByID(ctx context.Context, id primitive.ObjectID) (model.DBPermission, error) {
|
|
|
|
var (
|
|
|
|
doc model.DBPermission
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
err := col.FindOne(ctx, bson.M{"_id": id}).Decode(&doc)
|
|
|
|
return doc, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func create(ctx context.Context, doc model.DBPermission) error {
|
|
|
|
var (
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
_, err := col.InsertOne(ctx, doc)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error when create permission: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateOneByCondition(ctx context.Context, cond interface{}, payload interface{}) error {
|
|
|
|
var (
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
_, err := col.UpdateOne(ctx, cond, payload)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error when update permission: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-16 08:34:56 +00:00
|
|
|
func deleteOneByCondition(ctx context.Context, cond interface{}) error {
|
|
|
|
var (
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
_, err := col.DeleteOne(ctx, cond)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error when delete permission: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-04-05 10:54:05 +00:00
|
|
|
func findOneAndDelete(ctx context.Context, cond interface{}) (doc model.DBPermission, err error) {
|
|
|
|
var (
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
err = col.FindOneAndDelete(ctx, cond).Decode(&doc)
|
|
|
|
if err != nil {
|
|
|
|
return doc, fmt.Errorf("error when findOneAndDelete permission: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return doc, nil
|
|
|
|
}
|
|
|
|
|
2021-11-10 09:06:33 +00:00
|
|
|
func findByCondition(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
|
|
|
|
}
|
|
|
|
|
|
|
|
// countByCondition ...
|
|
|
|
func countByCondition(ctx context.Context, cond interface{}) int64 {
|
|
|
|
var (
|
|
|
|
col = database.GetPermissionCol()
|
|
|
|
)
|
|
|
|
total, err := col.CountDocuments(ctx, cond)
|
|
|
|
if err != nil {
|
2023-04-05 10:54:05 +00:00
|
|
|
log.Println("permission - countByCondition", err)
|
2021-11-10 09:06:33 +00:00
|
|
|
}
|
|
|
|
return total
|
|
|
|
}
|
2021-11-16 04:11:04 +00:00
|
|
|
|
|
|
|
func isPermissionIDExisted(ctx context.Context, permissionID primitive.ObjectID) bool {
|
|
|
|
var (
|
2021-11-16 09:05:37 +00:00
|
|
|
col = database.GetPermissionCol()
|
2021-11-16 04:11:04 +00:00
|
|
|
)
|
|
|
|
// Find
|
|
|
|
cond := bson.M{
|
|
|
|
"_id": permissionID,
|
|
|
|
}
|
|
|
|
total, err := col.CountDocuments(ctx, cond)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return total != 0
|
|
|
|
}
|