repo.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. package repo
  2. import (
  3. "context"
  4. "fmt"
  5. "sku3dweb/db"
  6. "sku3dweb/log"
  7. "github.com/go-redis/redis/v8"
  8. "go.mongodb.org/mongo-driver/bson"
  9. "go.mongodb.org/mongo-driver/bson/primitive"
  10. "go.mongodb.org/mongo-driver/mongo"
  11. "go.mongodb.org/mongo-driver/mongo/options"
  12. )
  13. type RepoSession struct {
  14. Ctx context.Context
  15. Client *db.MongoDB
  16. Redis *redis.Client
  17. }
  18. const (
  19. CollectionMatImages = "mat-images"
  20. CollectionUser = "users"
  21. CollectionUserSetting = "usersetting"
  22. CollectionProject = "projects"
  23. CollectionAdmin = "admins"
  24. CollectionTexture = "textures"
  25. CollectionCategory = "category"
  26. CollectionLibCategory = "libCategory"
  27. CollectionLib2Category = "lib2Category"
  28. CollectionTeam = "team"
  29. CollectionStickers = "sticker"
  30. CollectionMesh = "meshes"
  31. CollectionEvn3d = "Env3ds"
  32. CollectionTask = "tasks"
  33. CollectionProductTpls = "productTpls"
  34. CollectionMaterials = "materials"
  35. CollectionBaseMats = "basemats"
  36. CollectionDecorates = "decorate-mesh"
  37. CollectionInfoDesigns = "infoDesigns"
  38. CollectionInfoTrends = "infoTrends"
  39. CollectionShoes = "shoes"
  40. CollectionImageMat = "imgmats"
  41. CollectionFabric = "fabrics"
  42. CollectionDesigns = "designs"
  43. CollectionBackground = "backgrounds"
  44. CollectionLasts = "last-mesh"
  45. CollectionHeels = "heel-mesh"
  46. CollectionSoles = "sole-mesh"
  47. CollectionPerms = "perms"
  48. CollectionRoles = "roles"
  49. CollectionContentInfo = "applyusers"
  50. CollectionSettings = "settings"
  51. CollectionCollocates = "collocates"
  52. CollectionSpecialMaterials = "specialmats"
  53. CollectionMember = "members"
  54. CollectionMemberUser = "member-users"
  55. CollectionMemberHistory = "member-history"
  56. CollectionOrder = "orders"
  57. CollectionImCategory = "im-categories"
  58. CollectionImageMaterial = "im-materials"
  59. )
  60. type Map map[string]interface{}
  61. type PageResult struct {
  62. List []map[string]interface{} `json:"list"`
  63. Total int64 `json:"total"`
  64. Page int64 `json:"page"`
  65. Size int64 `json:"size"`
  66. }
  67. type PageSearchOptions struct {
  68. CollectName string
  69. Page int64
  70. Size int64
  71. Query map[string]interface{}
  72. Project []string
  73. Sort interface{}
  74. }
  75. type DocSearchOptions struct {
  76. Db string
  77. CollectName string
  78. Query Map
  79. Project []string
  80. }
  81. type DocSearchAggreOptions struct {
  82. CollectName string
  83. Query []bson.M
  84. Project []string
  85. }
  86. func NewDocSearchOptions(filter Map, project []string) *DocSearchOptions {
  87. return &DocSearchOptions{
  88. Query: filter,
  89. Project: project,
  90. }
  91. }
  92. func RepoAddDoc(ctx *RepoSession, collectName string, doc interface{}) (string, error) {
  93. users := ctx.Client.GetCollection(collectName)
  94. result, err := users.InsertOne(ctx.Ctx, doc)
  95. if err != nil {
  96. return "", err
  97. }
  98. return result.InsertedID.(primitive.ObjectID).Hex(), nil
  99. }
  100. func RepoDeleteDoc(ctx *RepoSession, collectName string, id string) (*mongo.DeleteResult, error) {
  101. uid, _ := primitive.ObjectIDFromHex(id)
  102. colls := ctx.Client.GetCollection(collectName)
  103. return colls.DeleteOne(ctx.Ctx, &bson.M{"_id": uid})
  104. }
  105. func RepoDeleteDocProps(ctx *RepoSession, collectName string, filter map[string]interface{}) (*mongo.DeleteResult, error) {
  106. colls := ctx.Client.GetCollection(collectName)
  107. return colls.DeleteOne(ctx.Ctx, filter)
  108. }
  109. func RepoDeleteDocs(ctx *RepoSession, collectName string, query interface{}) (interface{}, error) {
  110. colls := ctx.Client.GetCollection(collectName)
  111. return colls.DeleteMany(ctx.Ctx, query)
  112. }
  113. func RepoUpdateSetDoc(ctx *RepoSession, collectName string, idstr string, model interface{}) (*mongo.UpdateResult, error) {
  114. colls := ctx.Client.GetCollection(collectName)
  115. update := bson.M{"$set": model}
  116. uid, _ := primitive.ObjectIDFromHex(idstr)
  117. return colls.UpdateByID(ctx.Ctx, uid, update)
  118. }
  119. func RepoUpdateOneDoc(ctx *RepoSession, collectName string, filter interface{}, data interface{}) (*mongo.UpdateResult, error) {
  120. coll := ctx.Client.GetCollection(collectName)
  121. update := bson.M{
  122. "$set": data,
  123. }
  124. return coll.UpdateOne(ctx.Ctx, filter, update)
  125. }
  126. func RepoUpsertSetDoc(ctx *RepoSession, collectName string, filter interface{}, model interface{}) (*mongo.UpdateResult, error) {
  127. coll := ctx.Client.GetCollection(collectName)
  128. update := bson.M{"$set": model}
  129. // filter := bson.D{{"type", "Oolong"}}
  130. // update := bson.D{{"$set", bson.D{}}}
  131. opts := options.Update().SetUpsert(true)
  132. return coll.UpdateOne(ctx.Ctx, filter, update, opts)
  133. }
  134. func RepoUpdateSetDocProps(ctx *RepoSession, collectName string, idstr string, update interface{}) (*mongo.UpdateResult, error) {
  135. colls := ctx.Client.GetCollection(collectName)
  136. // update := bson.M{"$set": model}
  137. uid, _ := primitive.ObjectIDFromHex(idstr)
  138. return colls.UpdateByID(ctx.Ctx, uid, update)
  139. }
  140. func RepoSeachDoc(ctx *RepoSession, param *DocSearchOptions, v interface{}) (bool, error) {
  141. colls := ctx.Client.GetDbCollection(param.Db, param.CollectName)
  142. opt := &options.FindOneOptions{}
  143. if len(param.Project) > 0 {
  144. prj := bson.M{}
  145. for _, v := range param.Project {
  146. prj[v] = 1
  147. }
  148. opt.SetProjection(prj)
  149. }
  150. filter := bson.M{}
  151. if len(param.Query) > 0 {
  152. for k, v := range param.Query {
  153. if k == "_id" {
  154. if uid, ok := v.(string); ok {
  155. docId, _ := primitive.ObjectIDFromHex(uid)
  156. filter["_id"] = docId
  157. continue
  158. }
  159. }
  160. filter[k] = v
  161. }
  162. }
  163. err := colls.FindOne(ctx.Ctx, filter, opt).Decode(v)
  164. if err == mongo.ErrNoDocuments {
  165. return false, nil
  166. }
  167. if err != nil {
  168. return false, err
  169. }
  170. return true, nil
  171. }
  172. func RepoSeachDocs(ctx *RepoSession, param *DocSearchOptions, out interface{}) error {
  173. colls := ctx.Client.GetCollection(param.CollectName)
  174. opt := &options.FindOptions{}
  175. if len(param.Project) > 0 {
  176. prj := bson.M{}
  177. for _, v := range param.Project {
  178. prj[v] = 1
  179. }
  180. opt.SetProjection(prj)
  181. }
  182. filter := bson.M{}
  183. if len(param.Query) > 0 {
  184. for k, v := range param.Query {
  185. if k == "_id" {
  186. if uid, ok := v.(string); ok {
  187. docId, _ := primitive.ObjectIDFromHex(uid)
  188. filter["_id"] = docId
  189. continue
  190. }
  191. }
  192. filter[k] = v
  193. }
  194. }
  195. cur, err := colls.Find(ctx.Ctx, filter, opt)
  196. if err != nil {
  197. return err
  198. }
  199. defer cur.Close(ctx.Ctx)
  200. err = cur.All(ctx.Ctx, out)
  201. return err
  202. }
  203. func RepoSeachDocMap(ctx *RepoSession, param *DocSearchOptions) (bool, map[string]interface{}) {
  204. ret := map[string]interface{}{}
  205. ok := true
  206. colls := ctx.Client.GetCollection(param.CollectName)
  207. opt := &options.FindOneOptions{}
  208. if len(param.Project) > 0 {
  209. prj := bson.M{}
  210. for _, v := range param.Project {
  211. prj[v] = 1
  212. }
  213. opt.SetProjection(prj)
  214. }
  215. filter := bson.M{}
  216. if len(param.Query) > 0 {
  217. for k, v := range param.Query {
  218. if k == "_id" {
  219. if uid, ok := v.(string); ok {
  220. docId, _ := primitive.ObjectIDFromHex(uid)
  221. filter["_id"] = docId
  222. continue
  223. }
  224. }
  225. filter[k] = v
  226. }
  227. }
  228. ok = true
  229. err := colls.FindOne(ctx.Ctx, filter, opt).Decode(ret)
  230. if err == mongo.ErrNoDocuments {
  231. ok = false
  232. }
  233. if err != nil {
  234. fmt.Println(err)
  235. ok = false
  236. }
  237. return ok, ret
  238. }
  239. func RepoSeachDocAggre(ctx *RepoSession, param *DocSearchAggreOptions, v interface{}) (bool, error) {
  240. // 2.存在返回,不存在插入免费映射表
  241. cur, err := ctx.Client.GetCollection(param.CollectName).Aggregate(ctx.Ctx, param.Query)
  242. if err != nil {
  243. return false, err
  244. }
  245. err = cur.All(ctx.Ctx, v)
  246. if err != nil {
  247. return false, err
  248. }
  249. return true, err
  250. }
  251. // PageSearch 单表分页查询
  252. func RepoPageSearch(ctx *RepoSession, para *PageSearchOptions) (out *PageResult, err error) {
  253. colls := ctx.Client.GetCollection(para.CollectName)
  254. findoptions := &options.FindOptions{}
  255. if para.Size > 0 {
  256. findoptions.SetLimit(para.Size)
  257. findoptions.SetSkip(para.Size * (para.Page - 1))
  258. }
  259. if para.Sort != nil {
  260. findoptions.SetSort(para.Sort)
  261. }
  262. if len(para.Project) > 0 {
  263. prj := bson.M{}
  264. for _, v := range para.Project {
  265. prj[v] = 1
  266. }
  267. findoptions.SetProjection(prj)
  268. }
  269. filter := bson.M{}
  270. if len(para.Query) > 0 {
  271. for k, v := range para.Query {
  272. if value, ok := v.(string); ok {
  273. if len(value) > 0 {
  274. filter[k] = v
  275. continue
  276. }
  277. } else if v != nil {
  278. filter[k] = v
  279. }
  280. }
  281. }
  282. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  283. out = &PageResult{
  284. List: []map[string]interface{}{},
  285. Total: 0,
  286. Page: para.Page,
  287. Size: para.Size,
  288. }
  289. if err != nil {
  290. return out, err
  291. }
  292. defer cur.Close(ctx.Ctx)
  293. err = cur.All(ctx.Ctx, &out.List)
  294. out.Total, _ = colls.CountDocuments(ctx.Ctx, filter)
  295. return
  296. }
  297. // PageSearch 单表分页查询
  298. func RepoCountDoc(ctx *RepoSession, collectionName string, Query Map) (int64, error) {
  299. colls := ctx.Client.GetCollection(collectionName)
  300. filter := bson.M{}
  301. if len(Query) > 0 {
  302. for k, v := range Query {
  303. if value, ok := v.(string); ok {
  304. if len(value) > 0 {
  305. filter[k] = v
  306. continue
  307. }
  308. } else {
  309. filter[k] = v
  310. }
  311. }
  312. }
  313. return colls.CountDocuments(ctx.Ctx, filter)
  314. }
  315. // PageSearch 单表分页查询
  316. func RepoDocsSearch(ctx *RepoSession, para *PageSearchOptions, out interface{}) (err error) {
  317. colls := ctx.Client.GetCollection(para.CollectName)
  318. findoptions := &options.FindOptions{}
  319. if para.Size > 0 {
  320. findoptions.SetLimit(para.Size)
  321. findoptions.SetSkip(para.Size * (para.Page - 1))
  322. }
  323. if para.Sort != nil {
  324. findoptions.SetSort(para.Sort)
  325. }
  326. if len(para.Project) > 0 {
  327. prj := bson.M{}
  328. for _, v := range para.Project {
  329. prj[v] = 1
  330. }
  331. findoptions.SetProjection(prj)
  332. }
  333. filter := bson.M{}
  334. if len(para.Query) > 0 {
  335. for k, v := range para.Query {
  336. if value, ok := v.(string); ok {
  337. if len(value) > 0 {
  338. filter[k] = v
  339. continue
  340. }
  341. } else {
  342. filter[k] = v
  343. }
  344. }
  345. }
  346. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  347. if err != nil {
  348. return err
  349. }
  350. defer cur.Close(ctx.Ctx)
  351. err = cur.All(ctx.Ctx, out)
  352. return
  353. }
  354. func RepoDocArrayAppend(ctx *RepoSession, collectName string, idstr string, fieldpath string, arrayItem interface{}) (*mongo.UpdateResult, error) {
  355. colls := ctx.Client.GetCollection(collectName)
  356. arrayOp := bson.M{}
  357. arrayOp[fieldpath] = arrayItem
  358. update := bson.M{"$push": arrayOp}
  359. uid, _ := primitive.ObjectIDFromHex(idstr)
  360. return colls.UpdateByID(ctx.Ctx, uid, update)
  361. }
  362. // { _id: 4, "grades.grade": 85 },
  363. // { $set: { "grades.$.std" : 6 } }
  364. type ArrayOneUpdateOption struct {
  365. Query Map
  366. Set Map
  367. CollectName string
  368. Id string
  369. }
  370. func RepoDocArrayOneUpdate(ctx *RepoSession, options *ArrayOneUpdateOption) (*mongo.UpdateResult, error) {
  371. colls := ctx.Client.GetCollection(options.CollectName)
  372. docId, _ := primitive.ObjectIDFromHex(options.Id)
  373. query := bson.M{"_id": docId}
  374. if len(options.Query) > 0 {
  375. for k, v := range options.Query {
  376. query[k] = v
  377. }
  378. }
  379. setOp := bson.M{}
  380. for k, v := range options.Set {
  381. setOp[k] = v
  382. }
  383. update := bson.M{"$set": setOp}
  384. return colls.UpdateOne(ctx.Ctx, query, update)
  385. }
  386. type ArrayOneRemoveOption struct {
  387. ArrayQuery Map
  388. CollectName string
  389. Id string
  390. }
  391. // { $pull: { "items" : { id: 23 } } }
  392. func RepoDocArrayOneRemove(ctx *RepoSession, options *ArrayOneRemoveOption) (*mongo.UpdateResult, error) {
  393. colls := ctx.Client.GetCollection(options.CollectName)
  394. docId, _ := primitive.ObjectIDFromHex(options.Id)
  395. query := bson.M{"_id": docId}
  396. arrayQuery := bson.M{}
  397. if len(options.ArrayQuery) > 0 {
  398. for k, v := range options.ArrayQuery {
  399. arrayQuery[k] = v
  400. }
  401. }
  402. update := bson.M{"$pull": arrayQuery}
  403. return colls.UpdateOne(ctx.Ctx, query, update)
  404. }
  405. type ArrayOneSearchOption struct {
  406. ArrayQuery Map
  407. CollectName string
  408. Id string
  409. Field string
  410. }
  411. func RepoDocArraySearch(ctx *RepoSession, options *ArrayOneSearchOption) (ok bool, ret map[string]interface{}) {
  412. colls := ctx.Client.GetCollection(options.CollectName)
  413. docId, _ := primitive.ObjectIDFromHex(options.Id)
  414. match := []bson.E{}
  415. match = append(match, bson.E{"_id", docId})
  416. if len(options.ArrayQuery) > 0 {
  417. for k, v := range options.ArrayQuery {
  418. match = append(match, bson.E{k, v})
  419. }
  420. }
  421. matchStage := bson.D{
  422. {"$match", match},
  423. }
  424. unwindStage := bson.D{
  425. {"$unwind", fmt.Sprintf("%s%s", "$", options.Field)},
  426. }
  427. curr, err := colls.Aggregate(ctx.Ctx, mongo.Pipeline{matchStage, unwindStage})
  428. if err != nil {
  429. ok = false
  430. return
  431. }
  432. defer curr.Close(ctx.Ctx)
  433. var list []map[string]interface{}
  434. err = curr.All(ctx.Ctx, list)
  435. if err != nil {
  436. ok = false
  437. return
  438. }
  439. ok = true
  440. ret = list[0]
  441. return
  442. }
  443. type DocsSearchOptions struct {
  444. CollectName string
  445. Query map[string]interface{}
  446. Project []string
  447. Sort interface{} //bson.D{ bson.E{"update_time", -1}, bson.E{"goods_id", -1},}
  448. }
  449. func RepoSeachDocsMap(ctx *RepoSession, param *DocsSearchOptions) (ok bool, list []map[string]interface{}) {
  450. colls := ctx.Client.GetCollection(param.CollectName)
  451. findoptions := &options.FindOptions{}
  452. if len(param.Project) > 0 {
  453. prj := bson.M{}
  454. for _, v := range param.Project {
  455. prj[v] = 1
  456. }
  457. findoptions.SetProjection(prj)
  458. }
  459. if param.Sort != nil {
  460. findoptions.SetSort(param.Sort)
  461. }
  462. filter := bson.M{}
  463. if len(param.Query) > 0 {
  464. for k, v := range param.Query {
  465. if value, ok := v.(string); ok {
  466. if len(value) > 0 {
  467. filter[k] = v
  468. continue
  469. }
  470. } else {
  471. filter[k] = v
  472. }
  473. }
  474. }
  475. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  476. if err != nil {
  477. ok = false
  478. return
  479. }
  480. defer cur.Close(ctx.Ctx)
  481. listRes := []map[string]interface{}{}
  482. err = cur.All(ctx.Ctx, &listRes)
  483. if err != nil {
  484. log.Error(err)
  485. ok = false
  486. return
  487. }
  488. list = listRes
  489. ok = true
  490. return
  491. }