repo.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. package repo
  2. import (
  3. "baishuihu/db"
  4. "baishuihu/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. CollectionCategory = "category"
  18. CollectionArticle = "article"
  19. CollectionBanner = "banner"
  20. CollectionReport = "report"
  21. CollectionNav = "nav"
  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. CollectName string
  32. Page int64
  33. Size int64
  34. Query map[string]interface{}
  35. Project []string
  36. Sort interface{}
  37. }
  38. type DocSearchOptions struct {
  39. Db string
  40. CollectName string
  41. Query Map
  42. Project []string
  43. Sort bson.M
  44. }
  45. func NewDocSearchOptions(filter Map, project []string) *DocSearchOptions {
  46. return &DocSearchOptions{
  47. Query: filter,
  48. Project: project,
  49. }
  50. }
  51. func RepoAddDoc(ctx *RepoSession, collectName string, doc interface{}) (string, error) {
  52. users := ctx.Client.GetCollection(collectName)
  53. result, err := users.InsertOne(ctx.Ctx, doc)
  54. if err != nil {
  55. return "", err
  56. }
  57. return result.InsertedID.(primitive.ObjectID).Hex(), nil
  58. }
  59. func RepoDeleteDoc(ctx *RepoSession, collectName string, id string) (interface{}, error) {
  60. uid, _ := primitive.ObjectIDFromHex(id)
  61. colls := ctx.Client.GetCollection(collectName)
  62. return colls.DeleteOne(ctx.Ctx, &bson.M{"_id": uid})
  63. }
  64. func RepoDeleteDocs(ctx *RepoSession, collectName string, query interface{}) (interface{}, error) {
  65. colls := ctx.Client.GetCollection(collectName)
  66. return colls.DeleteMany(ctx.Ctx, query)
  67. }
  68. func RepoUpdateSetDocs(ctx *RepoSession, collectName string, filter interface{}, model interface{}) (*mongo.UpdateResult, error) {
  69. colls := ctx.Client.GetCollection(collectName)
  70. update := bson.M{"$set": model}
  71. return colls.UpdateOne(ctx.Ctx, filter, update)
  72. }
  73. func RepoUpdateSetDoc(ctx *RepoSession, collectName string, idstr string, model interface{}) (*mongo.UpdateResult, error) {
  74. colls := ctx.Client.GetCollection(collectName)
  75. update := bson.M{"$set": model}
  76. uid, _ := primitive.ObjectIDFromHex(idstr)
  77. return colls.UpdateByID(ctx.Ctx, uid, update)
  78. }
  79. func RepoUpsertSetDoc(ctx *RepoSession, collectName string, filter interface{}, model interface{}) (*mongo.UpdateResult, error) {
  80. coll := ctx.Client.GetCollection(collectName)
  81. update := bson.M{"$set": model}
  82. // filter := bson.D{{"type", "Oolong"}}
  83. // update := bson.D{{"$set", bson.D{}}}
  84. opts := options.Update().SetUpsert(true)
  85. return coll.UpdateOne(ctx.Ctx, filter, update, opts)
  86. }
  87. func RepoUpdateSetDocProps(ctx *RepoSession, collectName string, idstr string, update interface{}) (*mongo.UpdateResult, error) {
  88. colls := ctx.Client.GetCollection(collectName)
  89. // update := bson.M{"$set": model}
  90. uid, _ := primitive.ObjectIDFromHex(idstr)
  91. return colls.UpdateByID(ctx.Ctx, uid, update)
  92. }
  93. func RepoSeachDoc(ctx *RepoSession, param *DocSearchOptions, v interface{}) (bool, error) {
  94. colls := ctx.Client.GetDbCollection(param.Db, param.CollectName)
  95. opt := &options.FindOneOptions{}
  96. if param.Sort != nil {
  97. opt.SetSort(param.Sort)
  98. }
  99. if len(param.Project) > 0 {
  100. prj := bson.M{}
  101. for _, v := range param.Project {
  102. prj[v] = 1
  103. }
  104. opt.SetProjection(prj)
  105. }
  106. filter := bson.M{}
  107. if len(param.Query) > 0 {
  108. for k, v := range param.Query {
  109. if k == "_id" {
  110. if uid, ok := v.(string); ok {
  111. docId, _ := primitive.ObjectIDFromHex(uid)
  112. filter["_id"] = docId
  113. continue
  114. }
  115. }
  116. filter[k] = v
  117. }
  118. }
  119. err := colls.FindOne(ctx.Ctx, filter, opt).Decode(v)
  120. if err == mongo.ErrNoDocuments {
  121. return false, nil
  122. }
  123. if err != nil {
  124. return false, err
  125. }
  126. return true, nil
  127. }
  128. func RepoSeachDocs(ctx *RepoSession, param *DocSearchOptions, out interface{}) error {
  129. colls := ctx.Client.GetCollection(param.CollectName)
  130. opt := &options.FindOptions{}
  131. if len(param.Project) > 0 {
  132. prj := bson.M{}
  133. for _, v := range param.Project {
  134. prj[v] = 1
  135. }
  136. opt.SetProjection(prj)
  137. }
  138. filter := bson.M{}
  139. if len(param.Query) > 0 {
  140. for k, v := range param.Query {
  141. if k == "_id" {
  142. if uid, ok := v.(string); ok {
  143. docId, _ := primitive.ObjectIDFromHex(uid)
  144. filter["_id"] = docId
  145. continue
  146. }
  147. }
  148. filter[k] = v
  149. }
  150. }
  151. cur, err := colls.Find(ctx.Ctx, filter, opt)
  152. if err != nil {
  153. return err
  154. }
  155. defer cur.Close(ctx.Ctx)
  156. err = cur.All(ctx.Ctx, out)
  157. return err
  158. }
  159. func RepoSeachDocMap(ctx *RepoSession, param *DocSearchOptions) (bool, map[string]interface{}) {
  160. ret := map[string]interface{}{}
  161. ok := true
  162. colls := ctx.Client.GetCollection(param.CollectName)
  163. opt := &options.FindOneOptions{}
  164. if len(param.Project) > 0 {
  165. prj := bson.M{}
  166. for _, v := range param.Project {
  167. prj[v] = 1
  168. }
  169. opt.SetProjection(prj)
  170. }
  171. filter := bson.M{}
  172. if len(param.Query) > 0 {
  173. for k, v := range param.Query {
  174. if k == "_id" {
  175. if uid, ok := v.(string); ok {
  176. docId, _ := primitive.ObjectIDFromHex(uid)
  177. filter["_id"] = docId
  178. continue
  179. }
  180. }
  181. filter[k] = v
  182. }
  183. }
  184. ok = true
  185. err := colls.FindOne(ctx.Ctx, filter, opt).Decode(ret)
  186. if err == mongo.ErrNoDocuments {
  187. ok = false
  188. }
  189. if err != nil {
  190. ok = false
  191. }
  192. return ok, ret
  193. }
  194. // PageSearch 单表分页查询
  195. func RepoPageSearch(ctx *RepoSession, para *PageSearchOptions) (out *PageResult, err error) {
  196. colls := ctx.Client.GetCollection(para.CollectName)
  197. findoptions := &options.FindOptions{}
  198. if para.Size > 0 {
  199. findoptions.SetLimit(para.Size)
  200. findoptions.SetSkip(para.Size * (para.Page - 1))
  201. }
  202. if para.Sort != nil {
  203. findoptions.SetSort(para.Sort)
  204. }
  205. if len(para.Project) > 0 {
  206. prj := bson.M{}
  207. for _, v := range para.Project {
  208. prj[v] = 1
  209. }
  210. findoptions.SetProjection(prj)
  211. }
  212. filter := bson.M{}
  213. if len(para.Query) > 0 {
  214. for k, v := range para.Query {
  215. if value, ok := v.(string); ok {
  216. if len(value) > 0 {
  217. filter[k] = v
  218. continue
  219. }
  220. } else if v != nil {
  221. filter[k] = v
  222. }
  223. }
  224. }
  225. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  226. out = &PageResult{
  227. List: []map[string]interface{}{},
  228. Total: 0,
  229. Page: para.Page,
  230. Size: para.Size,
  231. }
  232. if err != nil {
  233. return out, err
  234. }
  235. defer cur.Close(ctx.Ctx)
  236. err = cur.All(ctx.Ctx, &out.List)
  237. out.Total, _ = colls.CountDocuments(ctx.Ctx, filter)
  238. return
  239. }
  240. // PageSearch 单表分页查询
  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. findoptions := &options.FindOptions{}
  262. if para.Size > 0 {
  263. findoptions.SetLimit(para.Size)
  264. findoptions.SetSkip(para.Size * (para.Page - 1))
  265. }
  266. if para.Sort != nil {
  267. findoptions.SetSort(para.Sort)
  268. }
  269. if len(para.Project) > 0 {
  270. prj := bson.M{}
  271. for _, v := range para.Project {
  272. prj[v] = 1
  273. }
  274. findoptions.SetProjection(prj)
  275. }
  276. filter := bson.M{}
  277. if len(para.Query) > 0 {
  278. for k, v := range para.Query {
  279. if value, ok := v.(string); ok {
  280. if len(value) > 0 {
  281. filter[k] = v
  282. continue
  283. }
  284. } else {
  285. filter[k] = v
  286. }
  287. }
  288. }
  289. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  290. if err != nil {
  291. return err
  292. }
  293. defer cur.Close(ctx.Ctx)
  294. err = cur.All(ctx.Ctx, out)
  295. return
  296. }
  297. func RepoDocArrayAppend(ctx *RepoSession, collectName string, idstr string, fieldpath string, arrayItem interface{}) (*mongo.UpdateResult, error) {
  298. colls := ctx.Client.GetCollection(collectName)
  299. arrayOp := bson.M{}
  300. arrayOp[fieldpath] = arrayItem
  301. update := bson.M{"$push": arrayOp}
  302. uid, _ := primitive.ObjectIDFromHex(idstr)
  303. return colls.UpdateByID(ctx.Ctx, uid, update)
  304. }
  305. // { _id: 4, "grades.grade": 85 },
  306. // { $set: { "grades.$.std" : 6 } }
  307. type ArrayOneUpdateOption struct {
  308. Query Map
  309. Set Map
  310. CollectName string
  311. Id string
  312. }
  313. func RepoDocArrayOneUpdate(ctx *RepoSession, options *ArrayOneUpdateOption) (*mongo.UpdateResult, error) {
  314. colls := ctx.Client.GetCollection(options.CollectName)
  315. docId, _ := primitive.ObjectIDFromHex(options.Id)
  316. query := bson.M{"_id": docId}
  317. if len(options.Query) > 0 {
  318. for k, v := range options.Query {
  319. query[k] = v
  320. }
  321. }
  322. setOp := bson.M{}
  323. for k, v := range options.Set {
  324. setOp[k] = v
  325. }
  326. update := bson.M{"$set": setOp}
  327. return colls.UpdateOne(ctx.Ctx, query, update)
  328. }
  329. type ArrayOneRemoveOption struct {
  330. ArrayQuery Map
  331. CollectName string
  332. Id string
  333. }
  334. // { $pull: { "items" : { id: 23 } } }
  335. func RepoDocArrayOneRemove(ctx *RepoSession, options *ArrayOneRemoveOption) (*mongo.UpdateResult, error) {
  336. colls := ctx.Client.GetCollection(options.CollectName)
  337. docId, _ := primitive.ObjectIDFromHex(options.Id)
  338. query := bson.M{"_id": docId}
  339. arrayQuery := bson.M{}
  340. if len(options.ArrayQuery) > 0 {
  341. for k, v := range options.ArrayQuery {
  342. arrayQuery[k] = v
  343. }
  344. }
  345. update := bson.M{"$pull": arrayQuery}
  346. return colls.UpdateOne(ctx.Ctx, query, update)
  347. }
  348. type ArrayOneSearchOption struct {
  349. ArrayQuery Map
  350. CollectName string
  351. Id string
  352. Field string
  353. }
  354. func RepoDocArraySearch(ctx *RepoSession, options *ArrayOneSearchOption) (ok bool, ret map[string]interface{}) {
  355. colls := ctx.Client.GetCollection(options.CollectName)
  356. docId, _ := primitive.ObjectIDFromHex(options.Id)
  357. match := []bson.E{}
  358. match = append(match, bson.E{Key: "_id", Value: docId})
  359. if len(options.ArrayQuery) > 0 {
  360. for k, v := range options.ArrayQuery {
  361. match = append(match, bson.E{Key: k, Value: v})
  362. }
  363. }
  364. matchStage := bson.D{
  365. {Key: "$match", Value: match},
  366. }
  367. unwindStage := bson.D{
  368. {Key: "$unwind", Value: fmt.Sprintf("%s%s", "$", options.Field)},
  369. }
  370. curr, err := colls.Aggregate(ctx.Ctx, mongo.Pipeline{matchStage, unwindStage})
  371. if err != nil {
  372. ok = false
  373. return
  374. }
  375. defer curr.Close(ctx.Ctx)
  376. var list []map[string]interface{}
  377. err = curr.All(ctx.Ctx, list)
  378. if err != nil {
  379. ok = false
  380. return
  381. }
  382. ok = true
  383. ret = list[0]
  384. return
  385. }
  386. type DocsSearchOptions struct {
  387. CollectName string
  388. Query map[string]interface{}
  389. Project []string
  390. Sort interface{} //bson.D{ bson.E{"update_time", -1}, bson.E{"goods_id", -1},}
  391. }
  392. func RepoSeachDocsMap(ctx *RepoSession, param *DocsSearchOptions) (ok bool, list []map[string]interface{}) {
  393. colls := ctx.Client.GetCollection(param.CollectName)
  394. findoptions := &options.FindOptions{}
  395. if len(param.Project) > 0 {
  396. prj := bson.M{}
  397. for _, v := range param.Project {
  398. prj[v] = 1
  399. }
  400. findoptions.SetProjection(prj)
  401. }
  402. if param.Sort != nil {
  403. findoptions.SetSort(param.Sort)
  404. }
  405. filter := bson.M{}
  406. if len(param.Query) > 0 {
  407. for k, v := range param.Query {
  408. if value, ok := v.(string); ok {
  409. if len(value) > 0 {
  410. filter[k] = v
  411. continue
  412. }
  413. } else {
  414. filter[k] = v
  415. }
  416. }
  417. }
  418. cur, err := colls.Find(ctx.Ctx, filter, findoptions)
  419. if err != nil {
  420. ok = false
  421. return
  422. }
  423. defer cur.Close(ctx.Ctx)
  424. listRes := []map[string]interface{}{}
  425. err = cur.All(ctx.Ctx, &listRes)
  426. if err != nil {
  427. log.Error(err)
  428. ok = false
  429. return
  430. }
  431. list = listRes
  432. ok = true
  433. return
  434. }