2022-05-17 20:23:08 +08:00
|
|
|
|
package api
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"context"
|
2023-12-05 23:03:51 +08:00
|
|
|
|
"mayfly-go/internal/common/consts"
|
2022-09-09 18:26:08 +08:00
|
|
|
|
"mayfly-go/internal/mongo/api/form"
|
|
|
|
|
|
"mayfly-go/internal/mongo/application"
|
|
|
|
|
|
"mayfly-go/internal/mongo/domain/entity"
|
2022-10-26 20:49:29 +08:00
|
|
|
|
tagapp "mayfly-go/internal/tag/application"
|
2022-06-02 17:41:11 +08:00
|
|
|
|
"mayfly-go/pkg/biz"
|
|
|
|
|
|
"mayfly-go/pkg/ginx"
|
2022-10-26 20:49:29 +08:00
|
|
|
|
"mayfly-go/pkg/model"
|
2023-01-14 16:29:52 +08:00
|
|
|
|
"mayfly-go/pkg/req"
|
2023-10-12 12:14:56 +08:00
|
|
|
|
"mayfly-go/pkg/utils/collx"
|
2022-08-26 09:58:01 +08:00
|
|
|
|
"regexp"
|
2022-05-17 20:23:08 +08:00
|
|
|
|
"strconv"
|
2023-07-01 14:34:42 +08:00
|
|
|
|
"strings"
|
2022-05-17 20:23:08 +08:00
|
|
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type Mongo struct {
|
|
|
|
|
|
MongoApp application.Mongo
|
2022-10-26 20:49:29 +08:00
|
|
|
|
TagApp tagapp.TagTree
|
2022-05-17 20:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) Mongos(rc *req.Ctx) {
|
2023-07-08 20:05:55 +08:00
|
|
|
|
queryCond, page := ginx.BindQueryAndPage[*entity.MongoQuery](rc.GinCtx, new(entity.MongoQuery))
|
2022-10-26 20:49:29 +08:00
|
|
|
|
|
|
|
|
|
|
// 不存在可访问标签id,即没有可操作数据
|
2023-12-05 23:03:51 +08:00
|
|
|
|
codes := m.TagApp.GetAccountResourceCodes(rc.GetLoginAccount().Id, consts.TagResourceTypeMongo, queryCond.TagPath)
|
|
|
|
|
|
if len(codes) == 0 {
|
2023-07-01 14:34:42 +08:00
|
|
|
|
rc.ResData = model.EmptyPageResult[any]()
|
2022-10-26 20:49:29 +08:00
|
|
|
|
return
|
2022-05-17 20:23:08 +08:00
|
|
|
|
}
|
2023-12-05 23:03:51 +08:00
|
|
|
|
queryCond.Codes = codes
|
2023-07-08 20:05:55 +08:00
|
|
|
|
|
2023-10-26 17:15:49 +08:00
|
|
|
|
res, err := m.MongoApp.GetPageList(queryCond, page, new([]entity.Mongo))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
rc.ResData = res
|
2022-05-17 20:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-12 20:14:44 +08:00
|
|
|
|
func (m *Mongo) TestConn(rc *req.Ctx) {
|
|
|
|
|
|
form := &form.Mongo{}
|
|
|
|
|
|
mongo := ginx.BindJsonAndCopyTo[*entity.Mongo](rc.GinCtx, form, new(entity.Mongo))
|
|
|
|
|
|
biz.ErrIsNilAppendErr(m.MongoApp.TestConn(mongo), "连接失败: %s")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) Save(rc *req.Ctx) {
|
2022-05-17 20:23:08 +08:00
|
|
|
|
form := &form.Mongo{}
|
2023-07-08 20:05:55 +08:00
|
|
|
|
mongo := ginx.BindJsonAndCopyTo[*entity.Mongo](rc.GinCtx, form, new(entity.Mongo))
|
2022-08-26 09:58:01 +08:00
|
|
|
|
|
2022-08-25 17:58:07 +08:00
|
|
|
|
// 密码脱敏记录日志
|
|
|
|
|
|
form.Uri = func(str string) string {
|
|
|
|
|
|
reg := regexp.MustCompile(`(^mongodb://.+?:)(.+)(@.+$)`)
|
|
|
|
|
|
return reg.ReplaceAllString(str, `${1}****${3}`)
|
|
|
|
|
|
}(form.Uri)
|
2022-05-17 20:23:08 +08:00
|
|
|
|
rc.ReqParam = form
|
|
|
|
|
|
|
2023-12-05 23:03:51 +08:00
|
|
|
|
biz.ErrIsNil(m.MongoApp.Save(rc.MetaCtx, mongo, form.TagId...))
|
2022-05-17 20:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) DeleteMongo(rc *req.Ctx) {
|
2023-07-01 14:34:42 +08:00
|
|
|
|
idsStr := ginx.PathParam(rc.GinCtx, "id")
|
|
|
|
|
|
rc.ReqParam = idsStr
|
|
|
|
|
|
ids := strings.Split(idsStr, ",")
|
|
|
|
|
|
|
|
|
|
|
|
for _, v := range ids {
|
|
|
|
|
|
value, err := strconv.Atoi(v)
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "string类型转换为int异常: %s")
|
2023-11-07 21:05:21 +08:00
|
|
|
|
m.MongoApp.Delete(rc.MetaCtx, uint64(value))
|
2023-07-01 14:34:42 +08:00
|
|
|
|
}
|
2022-05-17 20:23:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) Databases(rc *req.Ctx) {
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(rc.GinCtx))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
res, err := conn.Cli.ListDatabases(context.TODO(), bson.D{})
|
2022-05-17 20:23:08 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(err, "获取mongo所有库信息失败: %s")
|
|
|
|
|
|
rc.ResData = res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) Collections(rc *req.Ctx) {
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(rc.GinCtx))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
2022-05-17 20:23:08 +08:00
|
|
|
|
db := rc.GinCtx.Query("database")
|
|
|
|
|
|
biz.NotEmpty(db, "database不能为空")
|
|
|
|
|
|
ctx := context.TODO()
|
2023-10-27 17:41:45 +08:00
|
|
|
|
res, err := conn.Cli.Database(db).ListCollectionNames(ctx, bson.D{})
|
2022-05-17 20:23:08 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(err, "获取库集合信息失败: %s")
|
|
|
|
|
|
rc.ResData = res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) RunCommand(rc *req.Ctx) {
|
2022-05-17 20:23:08 +08:00
|
|
|
|
commandForm := new(form.MongoRunCommand)
|
|
|
|
|
|
ginx.BindJsonAndValid(rc.GinCtx, commandForm)
|
2023-08-25 19:41:52 +08:00
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(rc.GinCtx))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
rc.ReqParam = collx.Kvs("mongo", conn.Info, "cmd", commandForm)
|
2023-08-25 10:20:32 +08:00
|
|
|
|
|
|
|
|
|
|
// 顺序执行
|
|
|
|
|
|
commands := bson.D{}
|
|
|
|
|
|
for _, cmd := range commandForm.Command {
|
|
|
|
|
|
e := bson.E{}
|
|
|
|
|
|
for k, v := range cmd {
|
|
|
|
|
|
e.Key = k
|
|
|
|
|
|
e.Value = v
|
|
|
|
|
|
}
|
|
|
|
|
|
commands = append(commands, e)
|
|
|
|
|
|
}
|
2022-05-17 20:23:08 +08:00
|
|
|
|
|
|
|
|
|
|
ctx := context.TODO()
|
|
|
|
|
|
var bm bson.M
|
2023-10-27 17:41:45 +08:00
|
|
|
|
err = conn.Cli.Database(commandForm.Database).RunCommand(
|
2022-05-17 20:23:08 +08:00
|
|
|
|
ctx,
|
2023-08-25 10:20:32 +08:00
|
|
|
|
commands,
|
2022-05-17 20:23:08 +08:00
|
|
|
|
).Decode(&bm)
|
|
|
|
|
|
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "执行命令失败: %s")
|
|
|
|
|
|
rc.ResData = bm
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) FindCommand(rc *req.Ctx) {
|
2022-05-17 20:23:08 +08:00
|
|
|
|
g := rc.GinCtx
|
|
|
|
|
|
commandForm := new(form.MongoFindCommand)
|
|
|
|
|
|
ginx.BindJsonAndValid(g, commandForm)
|
|
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(g))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
cli := conn.Cli
|
|
|
|
|
|
|
2022-05-17 20:23:08 +08:00
|
|
|
|
limit := commandForm.Limit
|
|
|
|
|
|
if limit != 0 {
|
|
|
|
|
|
biz.IsTrue(limit <= 100, "limit不能超过100")
|
|
|
|
|
|
}
|
|
|
|
|
|
opts := options.Find().SetSort(commandForm.Sort).
|
|
|
|
|
|
SetSkip(commandForm.Skip).
|
|
|
|
|
|
SetLimit(limit)
|
|
|
|
|
|
ctx := context.TODO()
|
2022-06-08 10:21:02 +08:00
|
|
|
|
|
|
|
|
|
|
filter := commandForm.Filter
|
|
|
|
|
|
// 处理_id查询字段,使用ObjectId函数包装
|
|
|
|
|
|
id, ok := filter["_id"].(string)
|
|
|
|
|
|
if ok && id != "" {
|
|
|
|
|
|
objId, err := primitive.ObjectIDFromHex(id)
|
|
|
|
|
|
if err == nil {
|
|
|
|
|
|
filter["_id"] = objId
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-05-17 20:23:08 +08:00
|
|
|
|
cur, err := cli.Database(commandForm.Database).Collection(commandForm.Collection).Find(ctx, commandForm.Filter, opts)
|
|
|
|
|
|
biz.ErrIsNilAppendErr(err, "命令执行失败: %s")
|
|
|
|
|
|
|
|
|
|
|
|
var res []bson.M
|
|
|
|
|
|
cur.All(ctx, &res)
|
|
|
|
|
|
rc.ResData = res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) UpdateByIdCommand(rc *req.Ctx) {
|
2022-05-17 20:23:08 +08:00
|
|
|
|
g := rc.GinCtx
|
|
|
|
|
|
commandForm := new(form.MongoUpdateByIdCommand)
|
|
|
|
|
|
ginx.BindJsonAndValid(g, commandForm)
|
|
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(g))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
rc.ReqParam = collx.Kvs("mongo", conn.Info, "cmd", commandForm)
|
2023-08-25 19:41:52 +08:00
|
|
|
|
|
2022-05-17 20:23:08 +08:00
|
|
|
|
// 解析docId文档id,如果为string类型则使用ObjectId解析,解析失败则为普通字符串
|
|
|
|
|
|
docId := commandForm.DocId
|
|
|
|
|
|
docIdVal, ok := docId.(string)
|
|
|
|
|
|
if ok {
|
|
|
|
|
|
objId, err := primitive.ObjectIDFromHex(docIdVal)
|
|
|
|
|
|
if err == nil {
|
|
|
|
|
|
docId = objId
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
res, err := conn.Cli.Database(commandForm.Database).Collection(commandForm.Collection).UpdateByID(context.TODO(), docId, commandForm.Update)
|
2022-05-17 20:23:08 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(err, "命令执行失败: %s")
|
|
|
|
|
|
|
|
|
|
|
|
rc.ResData = res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) DeleteByIdCommand(rc *req.Ctx) {
|
2022-05-17 20:23:08 +08:00
|
|
|
|
g := rc.GinCtx
|
|
|
|
|
|
commandForm := new(form.MongoUpdateByIdCommand)
|
|
|
|
|
|
ginx.BindJsonAndValid(g, commandForm)
|
|
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(g))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
rc.ReqParam = collx.Kvs("mongo", conn.Info, "cmd", commandForm)
|
2023-08-25 19:41:52 +08:00
|
|
|
|
|
2022-05-17 20:23:08 +08:00
|
|
|
|
// 解析docId文档id,如果为string类型则使用ObjectId解析,解析失败则为普通字符串
|
|
|
|
|
|
docId := commandForm.DocId
|
|
|
|
|
|
docIdVal, ok := docId.(string)
|
|
|
|
|
|
if ok {
|
|
|
|
|
|
objId, err := primitive.ObjectIDFromHex(docIdVal)
|
|
|
|
|
|
if err == nil {
|
|
|
|
|
|
docId = objId
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
res, err := conn.Cli.Database(commandForm.Database).Collection(commandForm.Collection).DeleteOne(context.TODO(), bson.D{{Key: "_id", Value: docId}})
|
2022-05-17 20:23:08 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(err, "命令执行失败: %s")
|
|
|
|
|
|
rc.ResData = res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-14 16:29:52 +08:00
|
|
|
|
func (m *Mongo) InsertOneCommand(rc *req.Ctx) {
|
2022-05-17 20:23:08 +08:00
|
|
|
|
g := rc.GinCtx
|
|
|
|
|
|
commandForm := new(form.MongoInsertCommand)
|
|
|
|
|
|
ginx.BindJsonAndValid(g, commandForm)
|
|
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
conn, err := m.MongoApp.GetMongoConn(m.GetMongoId(g))
|
|
|
|
|
|
biz.ErrIsNil(err)
|
|
|
|
|
|
rc.ReqParam = collx.Kvs("mongo", conn.Info, "cmd", commandForm)
|
2022-05-17 20:23:08 +08:00
|
|
|
|
|
2023-10-27 17:41:45 +08:00
|
|
|
|
res, err := conn.Cli.Database(commandForm.Database).Collection(commandForm.Collection).InsertOne(context.TODO(), commandForm.Doc)
|
2023-08-25 19:41:52 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(err, "命令执行失败: %s")
|
2022-05-17 20:23:08 +08:00
|
|
|
|
rc.ResData = res
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取请求路径上的mongo id
|
|
|
|
|
|
func (m *Mongo) GetMongoId(g *gin.Context) uint64 {
|
|
|
|
|
|
dbId, _ := strconv.Atoi(g.Param("id"))
|
|
|
|
|
|
biz.IsTrue(dbId > 0, "mongoId错误")
|
|
|
|
|
|
return uint64(dbId)
|
|
|
|
|
|
}
|