repo.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. package repo
  2. import (
  3. "3dshow/db"
  4. "3dshow/log"
  5. "context"
  6. "fmt"
  7. "go.mongodb.org/mongo-driver/bson"
  8. "go.mongodb.org/mongo-driver/bson/primitive"
  9. "go.mongodb.org/mongo-driver/mongo"
  10. "go.mongodb.org/mongo-driver/mongo/options"
  11. )
  12. type RepoSession struct {
  13. Ctx context.Context
  14. Client *db.MongoDB
  15. }
  16. const (
  17. CollectionSupply = "supply"
  18. CollectionCollect = "collect"
  19. CollectionProduct = "product"
  20. CollectionAddress = "address"
  21. CollectionOrder = "order"
  22. )
  23. type Map map[string]interface{}
  24. type PageResult struct {
  25. List []map[string]interface{} `json:"list"`
  26. Total int64 `json:"total"`
  27. Page int64 `json:"page"`
  28. Size int64 `json:"size"`
  29. }
  30. type PageSearchOptions struct {
  31. Db string
  32. CollectName string
  33. Page int64
  34. Size int64
  35. Query map[string]interface{}
  36. Project []string
  37. Sort interface{}
  38. }
  39. type DocSearchOptions struct {
  40. Db string
  41. CollectName string
  42. Query Map
  43. Project []string
  44. Sort bson.M
  45. }
  46. func NewDocSearchOptions(filter Map, project []string) *DocSearchOptions {
  47. return &DocSearchOptions{
  48. Query: filter,
  49. Project: project,
  50. }
  51. }
  52. func RepoAddDoc(ctx *RepoSession, collectName string, doc interface{}) (string, error) {
  53. users := ctx.Client.GetCollection(collectName)
  54. result, err := users.InsertOne(ctx.Ctx, doc)
  55. if err != nil {
  56. return "", err
  57. }
  58. return result.InsertedID.(primitive.ObjectID).Hex(), nil
  59. }
  60. func RepoDbAddDoc(ctx *RepoSession, dbName string, collectName string, doc interface{}) (string, error) {
  61. users := ctx.Client.GetDbCollection(dbName, collectName)
  62. result, err := users.InsertOne(ctx.Ctx, doc)
  63. if err != nil {
  64. return "", err
  65. }
  66. return result.InsertedID.(primitive.ObjectID).Hex(), nil
  67. }
  68. func RepoDeleteDoc(ctx *RepoSession, collectName string, id string) (interface{}, error) {
  69. uid, _ := primitive.ObjectIDFromHex(id)
  70. colls := ctx.Client.GetCollection(collectName)
  71. return colls.DeleteOne(ctx.Ctx, &bson.M{"_id": uid})
  72. }
  73. func RepoDeleteDbDoc(ctx *RepoSession, dbName string, collectName string, id string) (interface{}, error) {
  74. uid, _ := primitive.ObjectIDFromHex(id)
  75. colls := ctx.Client.GetDbCollection(dbName, collectName)
  76. return colls.DeleteOne(ctx.Ctx, &bson.M{"_id": uid})
  77. }
  78. func RepoDeleteDocs(ctx *RepoSession, collectName string, query interface{}) (interface{}, error) {
  79. colls := ctx.Client.GetCollection(collectName)
  80. return colls.DeleteMany(ctx.Ctx, query)
  81. }
  82. func RepoUpdateSetDoc(ctx *RepoSession, collectName string, idstr string, model interface{}) (*mongo.UpdateResult, error) {
  83. colls := ctx.Client.GetCollection(collectName)
  84. update := bson.M{"$set": model}
  85. uid, _ := primitive.ObjectIDFromHex(idstr)
  86. return colls.UpdateByID(ctx.Ctx, uid, update)
  87. }
  88. func RepoUpdateSeDbDoc(ctx *RepoSession, db string, collectName string, idstr string, model interface{}) (*mongo.UpdateResult, error) {
  89. colls := ctx.Client.GetDbCollection(db, collectName)
  90. update := bson.M{"$set": model}
  91. uid, _ := primitive.ObjectIDFromHex(idstr)
  92. return colls.UpdateByID(ctx.Ctx, uid, update)
  93. }
  94. func RepoUpdateSetDocProps(ctx *RepoSession, collectName string, idstr string, update interface{}) (*mongo.UpdateResult, error) {
  95. colls := ctx.Client.GetCollection(collectName)
  96. // update := bson.M{"$set": model}
  97. uid, _ := primitive.ObjectIDFromHex(idstr)
  98. return colls.UpdateByID(ctx.Ctx, uid, update)
  99. }
  100. func RepoUpdateSetDbDocProps(ctx *RepoSession, db string, collectName string, idstr string, update interface{}) (*mongo.UpdateResult, error) {
  101. colls := ctx.Client.GetDbCollection(db, collectName)
  102. // update := bson.M{"$set": model}
  103. uid, _ := primitive.ObjectIDFromHex(idstr)
  104. return colls.UpdateByID(ctx.Ctx, uid, update)
  105. }
  106. func RepoSeachDoc(ctx *RepoSession, param *DocSearchOptions, v interface{}) (bool, error) {
  107. colls := ctx.Client.GetDbCollection(param.Db, param.CollectName)
  108. opt := &options.FindOneOptions{}
  109. if len(param.Project) > 0 {
  110. prj := bson.M{}
  111. for _, v := range param.Project {
  112. prj[v] = 1
  113. }
  114. opt.SetProjection(prj)
  115. }
  116. filter := bson.M{}
  117. if len(param.Query) > 0 {
  118. for k, v := range param.Query {
  119. if k == "_id" {
  120. if uid, ok := v.(string); ok {
  121. docId, _ := primitive.ObjectIDFromHex(uid)
  122. filter["_id"] = docId
  123. continue
  124. }
  125. }
  126. filter[k] = v
  127. }
  128. }
  129. err := colls.FindOne(ctx.Ctx, filter, opt).Decode(v)
  130. if err == mongo.ErrNoDocuments {
  131. return false, nil
  132. }
  133. if err != nil {
  134. return false, err
  135. }
  136. return true, nil
  137. }
  138. func RepoSeachDocMap(ctx *RepoSession, param *DocSearchOptions) (bool, map[string]interface{}) {
  139. ret := map[string]interface{}{}
  140. ok := true
  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. ok = true
  164. err := colls.FindOne(ctx.Ctx, filter, opt).Decode(ret)
  165. if err == mongo.ErrNoDocuments {
  166. ok = false
  167. }
  168. if err != nil {
  169. ok = false
  170. }
  171. return ok, ret
  172. }
  173. // PageSearch 单表分页查询
  174. func RepoPageSearch(ctx *RepoSession, para *PageSearchOptions) (out *PageResult, err error) {
  175. var colls *mongo.Collection
  176. if len(para.Db) > 0 {
  177. colls = ctx.Client.GetDbCollection(para.Db, para.CollectName)
  178. } else {
  179. colls = ctx.Client.GetCollection(para.CollectName)
  180. }
  181. findoptions := &options.FindOptions{}
  182. if para.Size > 0 {
  183. findoptions.SetLimit(para.Size)
  184. findoptions.SetSkip(para.Size * (para.Page - 1))
  185. }
  186. if para.Sort != nil {
  187. findoptions.SetSort(para.Sort)
  188. }
  189. if len(para.Project) > 0 {
  190. prj := bson.M{}
  191. for _, v := range para.Project {
  192. prj[v] = 1
  193. }
  194. findoptions.SetProjection(prj)
  195. }
  196. filter := bson.M{}
  197. if len(para.Query) > 0 {
  198. for k, v := range para.Query {
  199. if value, ok := v.(string); ok {
  200. if len(value) > 0 {
  201. filter[k] = v
  202. continue
  203. }
  204. } else if v != nil {
  205. filter[k] = v
  206. }
  207. }
  208. }
  209. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  210. out = &PageResult{
  211. List: []map[string]interface{}{},
  212. Total: 0,
  213. Page: para.Page,
  214. Size: para.Size,
  215. }
  216. if err != nil {
  217. return out, err
  218. }
  219. defer cur.Close(ctx.Ctx)
  220. err = cur.All(ctx.Ctx, &out.List)
  221. out.Total, _ = colls.CountDocuments(ctx.Ctx, filter)
  222. return
  223. }
  224. func RepoDbCountDoc(ctx *RepoSession, db string, collectionName string, Query Map) (int64, error) {
  225. colls := ctx.Client.GetDbCollection(db, collectionName)
  226. filter := bson.M{}
  227. if len(Query) > 0 {
  228. for k, v := range Query {
  229. if value, ok := v.(string); ok {
  230. if len(value) > 0 {
  231. filter[k] = v
  232. continue
  233. }
  234. } else {
  235. filter[k] = v
  236. }
  237. }
  238. }
  239. return colls.CountDocuments(ctx.Ctx, filter)
  240. }
  241. func RepoCountDoc(ctx *RepoSession, collectionName string, Query Map) (int64, error) {
  242. colls := ctx.Client.GetCollection(collectionName)
  243. filter := bson.M{}
  244. if len(Query) > 0 {
  245. for k, v := range Query {
  246. if value, ok := v.(string); ok {
  247. if len(value) > 0 {
  248. filter[k] = v
  249. continue
  250. }
  251. } else {
  252. filter[k] = v
  253. }
  254. }
  255. }
  256. return colls.CountDocuments(ctx.Ctx, filter)
  257. }
  258. // PageSearch 单表分页查询
  259. func RepoDocsSearch(ctx *RepoSession, para *PageSearchOptions, out interface{}) (err error) {
  260. colls := ctx.Client.GetCollection(para.CollectName)
  261. if len(para.Db) > 0 {
  262. colls = ctx.Client.GetDbCollection(para.Db, para.CollectName)
  263. }
  264. findoptions := &options.FindOptions{}
  265. if para.Size > 0 {
  266. findoptions.SetLimit(para.Size)
  267. findoptions.SetSkip(para.Size * (para.Page - 1))
  268. }
  269. if para.Sort != nil {
  270. findoptions.SetSort(para.Sort)
  271. }
  272. if len(para.Project) > 0 {
  273. prj := bson.M{}
  274. for _, v := range para.Project {
  275. prj[v] = 1
  276. }
  277. findoptions.SetProjection(prj)
  278. }
  279. filter := bson.M{}
  280. if len(para.Query) > 0 {
  281. for k, v := range para.Query {
  282. if value, ok := v.(string); ok {
  283. if len(value) > 0 {
  284. filter[k] = v
  285. continue
  286. }
  287. } else {
  288. filter[k] = v
  289. }
  290. }
  291. }
  292. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  293. if err != nil {
  294. return err
  295. }
  296. defer cur.Close(ctx.Ctx)
  297. err = cur.All(ctx.Ctx, out)
  298. return
  299. }
  300. func RepoDocArrayAppend(ctx *RepoSession, collectName string, idstr string, fieldpath string, arrayItem interface{}) (*mongo.UpdateResult, error) {
  301. colls := ctx.Client.GetCollection(collectName)
  302. arrayOp := bson.M{}
  303. arrayOp[fieldpath] = arrayItem
  304. update := bson.M{"$push": arrayOp}
  305. uid, _ := primitive.ObjectIDFromHex(idstr)
  306. return colls.UpdateByID(ctx.Ctx, uid, update)
  307. }
  308. // { _id: 4, "grades.grade": 85 },
  309. // { $set: { "grades.$.std" : 6 } }
  310. type ArrayOneUpdateOption struct {
  311. Query Map
  312. Set Map
  313. CollectName string
  314. Id string
  315. }
  316. // if len(scene.Stickers) > 0 {
  317. // optSet["scenes.$.stickers"] = scene.Stickers
  318. // }
  319. // option := &repo.ArrayOneUpdateOption{
  320. // CollectName: repo.CollectionDesigns,
  321. // Id: id,
  322. // Query: repo.Map{"scenes.id": scene.Id},
  323. // Set: optSet,
  324. // }
  325. func RepoDocArrayOneUpdate(ctx *RepoSession, options *ArrayOneUpdateOption) (*mongo.UpdateResult, error) {
  326. colls := ctx.Client.GetCollection(options.CollectName)
  327. docId, _ := primitive.ObjectIDFromHex(options.Id)
  328. query := bson.M{"_id": docId}
  329. if len(options.Query) > 0 {
  330. for k, v := range options.Query {
  331. query[k] = v
  332. }
  333. }
  334. setOp := bson.M{}
  335. for k, v := range options.Set {
  336. setOp[k] = v
  337. }
  338. update := bson.M{"$set": setOp}
  339. return colls.UpdateOne(ctx.Ctx, query, update)
  340. }
  341. type ArrayOneRemoveOption struct {
  342. ArrayQuery Map
  343. CollectName string
  344. Id string
  345. }
  346. // { $pull: { "items" : { id: 23 } } }
  347. func RepoDocArrayOneRemove(ctx *RepoSession, options *ArrayOneRemoveOption) (*mongo.UpdateResult, error) {
  348. colls := ctx.Client.GetCollection(options.CollectName)
  349. docId, _ := primitive.ObjectIDFromHex(options.Id)
  350. query := bson.M{"_id": docId}
  351. arrayQuery := bson.M{}
  352. if len(options.ArrayQuery) > 0 {
  353. for k, v := range options.ArrayQuery {
  354. arrayQuery[k] = v
  355. }
  356. }
  357. update := bson.M{"$pull": arrayQuery}
  358. return colls.UpdateOne(ctx.Ctx, query, update)
  359. }
  360. type ArrayOneSearchOption struct {
  361. ArrayQuery Map
  362. CollectName string
  363. Id string
  364. Field string
  365. }
  366. func RepoDocArraySearch(ctx *RepoSession, options *ArrayOneSearchOption, entity interface{}) error {
  367. colls := ctx.Client.GetCollection(options.CollectName)
  368. docId, _ := primitive.ObjectIDFromHex(options.Id)
  369. match := []bson.E{}
  370. match = append(match, bson.E{"_id", docId})
  371. matchStage := bson.D{
  372. {"$match", match},
  373. }
  374. unwindStage := bson.D{
  375. {"$unwind", fmt.Sprintf("%s%s", "$", options.Field)},
  376. }
  377. pipe := mongo.Pipeline{matchStage, unwindStage}
  378. if len(options.ArrayQuery) > 0 {
  379. match2 := []bson.E{}
  380. for k, v := range options.ArrayQuery {
  381. match2 = append(match2, bson.E{k, v})
  382. }
  383. match2Stage := bson.D{
  384. {"$match", match2},
  385. }
  386. pipe = append(pipe, match2Stage)
  387. }
  388. curr, err := colls.Aggregate(ctx.Ctx, pipe)
  389. if err != nil {
  390. return err
  391. }
  392. defer curr.Close(ctx.Ctx)
  393. if curr.Next(ctx.Ctx) {
  394. err = curr.Decode(entity)
  395. if err != nil {
  396. return err
  397. }
  398. return nil
  399. }
  400. return nil
  401. }
  402. type DocsSearchOptions struct {
  403. CollectName string
  404. Query map[string]interface{}
  405. Project []string
  406. Sort interface{} //bson.D{ bson.E{"update_time", -1}, bson.E{"goods_id", -1},}
  407. }
  408. func RepoSeachDocsMap(ctx *RepoSession, param *DocsSearchOptions) (ok bool, list []map[string]interface{}) {
  409. colls := ctx.Client.GetCollection(param.CollectName)
  410. findoptions := &options.FindOptions{}
  411. if len(param.Project) > 0 {
  412. prj := bson.M{}
  413. for _, v := range param.Project {
  414. prj[v] = 1
  415. }
  416. findoptions.SetProjection(prj)
  417. }
  418. if param.Sort != nil {
  419. findoptions.SetSort(param.Sort)
  420. }
  421. filter := bson.M{}
  422. if len(param.Query) > 0 {
  423. for k, v := range param.Query {
  424. if value, ok := v.(string); ok {
  425. if len(value) > 0 {
  426. filter[k] = v
  427. continue
  428. }
  429. } else {
  430. filter[k] = v
  431. }
  432. }
  433. }
  434. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  435. if err != nil {
  436. ok = false
  437. return
  438. }
  439. defer cur.Close(ctx.Ctx)
  440. listRes := []map[string]interface{}{}
  441. err = cur.All(ctx.Ctx, &listRes)
  442. if err != nil {
  443. log.Error(err)
  444. ok = false
  445. return
  446. }
  447. list = listRes
  448. ok = true
  449. return
  450. }
  451. type DbDocsSearchOptions struct {
  452. Db string
  453. CollectName string
  454. Query map[string]interface{}
  455. Project []string
  456. Sort interface{} //bson.D{ bson.E{"update_time", -1}, bson.E{"goods_id", -1},}
  457. }
  458. func DbRepoSeachDocsMap(ctx *RepoSession, param *DbDocsSearchOptions) (ok bool, list []map[string]interface{}) {
  459. colls := ctx.Client.GetDbCollection(param.Db, param.CollectName)
  460. findoptions := &options.FindOptions{}
  461. if len(param.Project) > 0 {
  462. prj := bson.M{}
  463. for _, v := range param.Project {
  464. prj[v] = 1
  465. }
  466. findoptions.SetProjection(prj)
  467. }
  468. if param.Sort != nil {
  469. findoptions.SetSort(param.Sort)
  470. }
  471. filter := bson.M{}
  472. if len(param.Query) > 0 {
  473. for k, v := range param.Query {
  474. if value, ok := v.(string); ok {
  475. if len(value) > 0 {
  476. filter[k] = v
  477. continue
  478. }
  479. } else {
  480. filter[k] = v
  481. }
  482. }
  483. }
  484. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  485. if err != nil {
  486. ok = false
  487. return
  488. }
  489. defer cur.Close(ctx.Ctx)
  490. listRes := []map[string]interface{}{}
  491. err = cur.All(ctx.Ctx, &listRes)
  492. if err != nil {
  493. log.Error(err)
  494. ok = false
  495. return
  496. }
  497. list = listRes
  498. ok = true
  499. return
  500. }