usermngmt/user/db.go

260 lines
5.7 KiB
Go
Raw Normal View History

2021-11-10 01:44:22 +00:00
package user
import (
"context"
"fmt"
2022-10-10 08:55:47 +00:00
"git.selly.red/Selly-Modules/logger"
"git.selly.red/Selly-Modules/usermngmt/database"
"git.selly.red/Selly-Modules/usermngmt/model"
2021-11-10 01:44:22 +00:00
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo/options"
)
2021-11-16 04:11:04 +00:00
func isPhoneNumberExisted(ctx context.Context, phone string) bool {
var (
col = database.GetUserCol()
)
// Find
cond := bson.M{
2021-11-24 06:15:40 +00:00
"phone": phone,
"deleted": false,
2021-11-16 04:11:04 +00:00
}
total, err := col.CountDocuments(ctx, cond)
if err != nil {
logger.Error("usermngmt - User - CountDocuments", logger.LogData{
"condition": cond,
"err": err.Error(),
})
return true
}
return total != 0
}
func isEmailExisted(ctx context.Context, email string) bool {
var (
col = database.GetUserCol()
)
// Find
cond := bson.M{
2021-11-24 06:15:40 +00:00
"email": email,
"deleted": false,
2021-11-16 04:11:04 +00:00
}
total, err := col.CountDocuments(ctx, cond)
if err != nil {
logger.Error("usermngmt - User - CountDocuments", logger.LogData{
"condition": cond,
"err": err.Error(),
})
return true
}
return total != 0
}
2021-11-24 06:15:40 +00:00
func isRoleExisted(ctx context.Context, roleID primitive.ObjectID) bool {
2021-11-10 04:01:39 +00:00
var (
col = database.GetRoleCol()
)
2021-11-10 01:44:22 +00:00
// Find
cond := bson.M{
"_id": roleID,
}
2021-11-10 04:01:39 +00:00
total, err := col.CountDocuments(ctx, cond)
2021-11-10 01:44:22 +00:00
if err != nil {
2021-11-10 07:50:43 +00:00
logger.Error("usermngmt - Role - CountDocuments", logger.LogData{
2021-11-10 01:44:22 +00:00
"condition": cond,
"err": err.Error(),
})
}
return total != 0
}
2021-11-10 04:42:23 +00:00
func roleFindByID(ctx context.Context, id primitive.ObjectID) (model.DBRole, error) {
2021-11-10 01:44:22 +00:00
var (
2021-11-10 02:54:49 +00:00
doc model.DBRole
2021-11-10 04:01:39 +00:00
col = database.GetRoleCol()
2021-11-10 01:44:22 +00:00
)
2021-11-10 04:01:39 +00:00
err := col.FindOne(ctx, bson.M{"_id": id}).Decode(&doc)
2021-11-10 01:44:22 +00:00
return doc, err
}
2022-03-29 10:26:35 +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 {
logger.Error("usermngmt - Role - Find", logger.LogData{
"cond": cond,
"opts": opts,
"err": err.Error(),
})
return
}
defer cursor.Close(ctx)
if err = cursor.All(ctx, &docs); err != nil {
logger.Error("usermngmt - Role - Decode", logger.LogData{
"cond": cond,
"opts": opts,
"err": err.Error(),
})
return
}
return
}
2022-03-25 07:16:52 +00:00
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 {
logger.Error("usermngmt - Permission - Find", logger.LogData{
"cond": cond,
"opts": opts,
"err": err.Error(),
})
return
}
defer cursor.Close(ctx)
if err = cursor.All(ctx, &docs); err != nil {
logger.Error("usermngmt - Permission - Decode", logger.LogData{
"cond": cond,
"opts": opts,
"err": err.Error(),
})
return
}
return
}
2021-11-10 09:53:31 +00:00
// permissionCountByCondition ...
func permissionCountByCondition(ctx context.Context, cond interface{}) int64 {
var (
col = database.GetPermissionCol()
)
total, err := col.CountDocuments(ctx, cond)
if err != nil {
logger.Error("usermngmt - Permission - CountDocuments", logger.LogData{
"err": err.Error(),
"cond": cond,
})
}
return total
}
2021-11-10 04:42:23 +00:00
func create(ctx context.Context, doc model.DBUser) error {
2021-11-10 04:01:39 +00:00
var (
col = database.GetUserCol()
)
_, err := col.InsertOne(ctx, doc)
2021-11-10 01:44:22 +00:00
if err != nil {
2021-11-10 07:50:43 +00:00
logger.Error("usermngmt - User - InsertOne", logger.LogData{
2021-11-10 01:44:22 +00:00
"doc": doc,
"err": err.Error(),
})
return fmt.Errorf("error when create user: %s", err.Error())
}
return nil
}
2021-11-10 04:42:23 +00:00
func updateOneByCondition(ctx context.Context, cond interface{}, payload interface{}) error {
2021-11-10 04:01:39 +00:00
var (
col = database.GetUserCol()
)
_, err := col.UpdateOne(ctx, cond, payload)
2021-11-10 01:44:22 +00:00
if err != nil {
2021-11-10 07:50:43 +00:00
logger.Error("usermngmt - User - UpdateOne", logger.LogData{
"cond": cond,
"payload": payload,
"err": err.Error(),
})
return fmt.Errorf("error when update user: %s", err.Error())
}
return err
}
func updateManyByCondition(ctx context.Context, cond interface{}, payload interface{}) error {
var (
col = database.GetUserCol()
)
_, err := col.UpdateMany(ctx, cond, payload)
if err != nil {
logger.Error("usermngmt - User - UpdateMany", logger.LogData{
2021-11-10 01:44:22 +00:00
"cond": cond,
"payload": payload,
"err": err.Error(),
})
return fmt.Errorf("error when update user: %s", err.Error())
}
return err
}
2021-11-10 04:42:23 +00:00
func findByID(ctx context.Context, id primitive.ObjectID) (model.DBUser, error) {
2021-11-10 01:44:22 +00:00
var (
2021-11-10 02:54:49 +00:00
doc model.DBUser
2021-11-10 04:01:39 +00:00
col = database.GetUserCol()
2021-11-10 01:44:22 +00:00
)
2021-11-24 06:15:40 +00:00
err := col.FindOne(ctx, bson.M{"_id": id, "deleted": false}).Decode(&doc)
2021-11-10 01:44:22 +00:00
return doc, err
}
2021-11-10 04:42:23 +00:00
func findByCondition(ctx context.Context, cond interface{}, opts ...*options.FindOptions) (docs []model.DBUser) {
2021-11-10 04:01:39 +00:00
var (
col = database.GetUserCol()
)
2021-11-10 02:54:49 +00:00
docs = make([]model.DBUser, 0)
2021-11-10 01:44:22 +00:00
2021-11-10 04:01:39 +00:00
cursor, err := col.Find(ctx, cond, opts...)
2021-11-10 01:44:22 +00:00
if err != nil {
2021-11-10 07:50:43 +00:00
logger.Error("usermngmt - User - Find", logger.LogData{
2021-11-10 01:44:22 +00:00
"cond": cond,
"opts": opts,
"err": err.Error(),
})
return
}
defer cursor.Close(ctx)
if err = cursor.All(ctx, &docs); err != nil {
2021-11-10 07:50:43 +00:00
logger.Error("usermngmt - User - Decode", logger.LogData{
2021-11-10 01:44:22 +00:00
"cond": cond,
"opts": opts,
"err": err.Error(),
})
return
}
return
}
// countByCondition ...
2021-11-10 04:42:23 +00:00
func countByCondition(ctx context.Context, cond interface{}) int64 {
2021-11-10 04:01:39 +00:00
var (
col = database.GetUserCol()
)
total, err := col.CountDocuments(ctx, cond)
2021-11-10 01:44:22 +00:00
if err != nil {
logger.Error("usermngmt - Count", logger.LogData{
"err": err.Error(),
"cond": cond,
})
}
return total
}
2021-11-10 09:06:33 +00:00
func findOneByCondition(ctx context.Context, cond interface{}) (model.DBUser, error) {
var (
col = database.GetUserCol()
doc model.DBUser
)
err := col.FindOne(ctx, cond).Decode(&doc)
return doc, err
}