mongo.go 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501
  1. package api
  2. import (
  3. "bytes"
  4. "context"
  5. "encoding/base64"
  6. "fmt" // "html/template"
  7. "reflect"
  8. "regexp"
  9. "strconv"
  10. "strings"
  11. "text/template"
  12. "time"
  13. "git.eugeniocarvalho.dev/eugeniucarvalho/apicodegen/api/errs"
  14. iriscontext "github.com/kataras/iris/v12/context"
  15. "go.mongodb.org/mongo-driver/bson"
  16. "go.mongodb.org/mongo-driver/bson/primitive"
  17. "go.mongodb.org/mongo-driver/mongo"
  18. "go.mongodb.org/mongo-driver/mongo/options"
  19. "go.mongodb.org/mongo-driver/mongo/readconcern"
  20. "go.mongodb.org/mongo-driver/mongo/readpref"
  21. "go.mongodb.org/mongo-driver/mongo/writeconcern"
  22. )
  23. const (
  24. DefaultAddrConnect = "mongodb://localhost:27017"
  25. InsertOne = iota + 1
  26. InsertMany
  27. Patch
  28. )
  29. var (
  30. QueriesMap = map[string]*template.Template{}
  31. EMPTYQUERY_REGEX = regexp.MustCompile(`{\s*}`)
  32. )
  33. func GetSessionContext(ctx iriscontext.Context) mongo.SessionContext {
  34. context := ctx.Values().Get("$SessionContext")
  35. if context != nil {
  36. return context.(mongo.SessionContext)
  37. }
  38. return nil
  39. }
  40. func init() {
  41. errs.RegisterMapErrorFunction("MONGO_ERROS", func(source error) (err *errs.Error) {
  42. message := source.Error()
  43. switch {
  44. case strings.Contains(message, "E11000"):
  45. err = errs.AlreadyExists().Details(&errs.Detail{
  46. Message: "DUPLICATED_ITEM",
  47. })
  48. case strings.Contains(message, "cannot decode"):
  49. err = errs.DataCaps().Details(&errs.Detail{
  50. Message: message,
  51. })
  52. case strings.Contains(message, "no documents in result"):
  53. errs.NotFound().Details(&errs.Detail{
  54. Message: "NOT_FOUND",
  55. })
  56. }
  57. return
  58. })
  59. }
  60. type Mongo struct {
  61. // Sessions map[string]*mgo.Session
  62. // Session *mgo.Session
  63. // Uri string
  64. // Configs
  65. //DefaultDB string
  66. // User string `json:"user"`
  67. // Password string `json:"password"`
  68. // DataBase string `json:"database"`
  69. // Addrs string `json:"addrs"`
  70. subject *BehaviorSubjectStruct
  71. client *mongo.Client
  72. Credential *options.Credential
  73. Config string `json:"config"`
  74. Clients map[string]*mongo.Client
  75. }
  76. type execfn func(context.Context, *mongo.Collection)
  77. type EntityInterface interface {
  78. Patch() *bson.A
  79. }
  80. // Modelo de comunicação entre o controle da API e a camada de persistencia.
  81. type Filter struct {
  82. Id primitive.ObjectID
  83. UserId primitive.ObjectID
  84. // NextPageToken primitive.ObjectID
  85. // PageToken PageToken
  86. Fields *bson.M
  87. Query *bson.M
  88. Patchs *bson.A
  89. Sort *bson.M
  90. // Sort []string
  91. Collection string
  92. QueryType string
  93. DB string
  94. Format string
  95. Insertion int
  96. CheckQuery bool
  97. IgnoreNoEntityFound bool
  98. MaxResults int
  99. Entity interface{}
  100. Entities interface{}
  101. SessionContext mongo.SessionContext
  102. // Aggregate interface{}
  103. Pipeline primitive.A
  104. Options interface{}
  105. }
  106. func (f *Filter) Aggregate(ctx context.Context, collection *mongo.Collection, opts *options.AggregateOptions) (cursor *mongo.Cursor, err *errs.Error) {
  107. var errl error
  108. if opts == nil {
  109. opts = options.Aggregate().SetBatchSize(int32(f.MaxResults))
  110. }
  111. // cmd := command.Aggregate{
  112. // NS: ns,
  113. // Pipeline: pipeline,
  114. // ReadPref: rp,
  115. // }
  116. if cursor, errl = collection.Aggregate(ctx, f.Pipeline, opts); errl != nil {
  117. err = errs.FromError(errl)
  118. }
  119. return
  120. }
  121. func (t *Filter) Check() (err *errs.Error) {
  122. if t.CheckQuery {
  123. if t.Query == nil {
  124. if !t.Id.IsZero() {
  125. t.Query = &bson.M{"_id": t.Id}
  126. } else {
  127. err = errs.InvalidArgument().Details(&errs.Detail{
  128. LocationType: "query",
  129. Location: "q",
  130. Message: "emptyValue",
  131. })
  132. return
  133. }
  134. }
  135. }
  136. if t.Query == nil {
  137. t.Query = &bson.M{}
  138. }
  139. return
  140. }
  141. func (t *Mongo) Ready() *BehaviorSubjectStruct {
  142. if t.subject == nil {
  143. t.subject = BehaviorSubject()
  144. }
  145. return t.subject
  146. }
  147. func (t *Mongo) Init() (err error) {
  148. fmt.Printf("Connection string '%s'", t.Config)
  149. clientOpts := options.Client().ApplyURI(t.Config)
  150. if t.Credential != nil {
  151. clientOpts.SetAuth(*t.Credential)
  152. }
  153. // if t.client, err = mongo.NewClient(setOptions); err != nil {
  154. if t.client, err = mongo.Connect(context.TODO(), clientOpts); err != nil {
  155. return
  156. }
  157. ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second)
  158. defer cancel()
  159. if err = t.client.Connect(ctx); err != nil {
  160. return
  161. }
  162. t.Ready().Next(true)
  163. return nil
  164. }
  165. func (t *Mongo) CommitTransaction(opts *options.SessionOptions) {
  166. }
  167. func (t *Mongo) StartTransaction(
  168. sessionOptions *options.SessionOptions,
  169. transactionOptions *options.TransactionOptions,
  170. ) (
  171. sessionContext mongo.SessionContext,
  172. err *errs.Error,
  173. ) {
  174. var (
  175. session mongo.Session
  176. localError error
  177. )
  178. defer func() {
  179. if localError != nil {
  180. err = errs.Internal().Details(&errs.Detail{
  181. Message: localError.Error(),
  182. })
  183. }
  184. }()
  185. if session, localError = t.client.StartSession(sessionOptions); localError == nil {
  186. ctx, _ := context.WithTimeout(context.Background(), 60*time.Second)
  187. mongo.WithSession(ctx, session, func(sctx mongo.SessionContext) error {
  188. if localError = session.StartTransaction(transactionOptions); localError == nil {
  189. sessionContext = sctx
  190. }
  191. return nil
  192. })
  193. }
  194. return
  195. }
  196. func (t *Mongo) Dispatch(f *Filter) {
  197. }
  198. func (t *Mongo) InsertOne(f *Filter) (res *mongo.InsertOneResult, err *errs.Error) {
  199. f.Insertion = InsertOne
  200. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  201. var lerr error
  202. if res, lerr = collection.InsertOne(ctx, f.Entity); lerr != nil {
  203. err = errs.FromError(lerr)
  204. }
  205. }, func(e *errs.Error) { err = e })
  206. return
  207. }
  208. func (t *Mongo) InsertMany(f *Filter) (res *mongo.InsertManyResult, err *errs.Error) {
  209. f.Insertion = InsertMany
  210. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  211. var (
  212. lerr error
  213. entities []interface{}
  214. value = reflect.ValueOf(f.Entities)
  215. )
  216. for index := 0; index < value.Len(); index++ {
  217. entities = append(entities, value.Index(index).Interface())
  218. }
  219. if res, lerr = collection.InsertMany(ctx, entities); lerr != nil {
  220. err = errs.FromError(lerr)
  221. }
  222. }, func(e *errs.Error) { err = e })
  223. return
  224. }
  225. //Remove os elementos da colecao, selecionados pela query
  226. func (t *Mongo) RemoveOne(f *Filter) (res *mongo.DeleteResult, err *errs.Error) {
  227. f.CheckQuery = true
  228. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  229. var lerr error
  230. if res, lerr = collection.DeleteOne(ctx, f.Query); lerr != nil {
  231. err = errs.FromError(lerr)
  232. } else if res.DeletedCount == 0 {
  233. err = errs.NotFound().Details(&errs.Detail{
  234. Message: "No entity has been deleted",
  235. })
  236. }
  237. }, func(e *errs.Error) { err = e })
  238. return
  239. }
  240. //Remove os elementos da colecao, selecionados pela query
  241. func (t *Mongo) RemoveMany(f *Filter) (res *mongo.DeleteResult, err *errs.Error) {
  242. var lerr error
  243. f.CheckQuery = true
  244. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  245. if res, lerr = collection.DeleteMany(ctx, f.Entities); lerr != nil {
  246. err = errs.FromError(lerr)
  247. } else if res.DeletedCount == 0 {
  248. err = errs.NotFound().Details(&errs.Detail{
  249. Message: "No entity has been deleted",
  250. })
  251. }
  252. }, func(e *errs.Error) { err = e })
  253. return
  254. }
  255. func (t *Mongo) UpdateOne(f *Filter) (res *mongo.UpdateResult, err *errs.Error) {
  256. var lerr error
  257. f.Insertion = InsertOne
  258. f.CheckQuery = true
  259. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  260. if res, lerr = collection.ReplaceOne(ctx, f.Query, f.Entity); lerr != nil {
  261. err = errs.FromError(lerr)
  262. } else if !f.IgnoreNoEntityFound && (res.ModifiedCount+res.UpsertedCount) == 0 {
  263. err = errs.NotFound().Details(&errs.Detail{
  264. Message: "No entity has been updated",
  265. })
  266. }
  267. }, func(e *errs.Error) { err = e })
  268. return
  269. }
  270. func (t *Mongo) UpdateMany(f *Filter) (res *mongo.UpdateResult, err *errs.Error) {
  271. var (
  272. lerr error
  273. entity interface{}
  274. entities []interface{}
  275. value = reflect.ValueOf(f.Entities)
  276. )
  277. f.Insertion = InsertMany
  278. f.CheckQuery = true
  279. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  280. for index := 0; index < value.Len(); index++ {
  281. entity = value.Index(index).Interface()
  282. entities = append(entities, entity)
  283. }
  284. if res, lerr = collection.UpdateMany(ctx, f.Query, entities); lerr != nil {
  285. err = errs.FromError(lerr)
  286. } else if !f.IgnoreNoEntityFound && (res.ModifiedCount+res.UpsertedCount) == 0 {
  287. err = errs.NotFound().Details(&errs.Detail{
  288. Message: "No entity has been updated ",
  289. })
  290. }
  291. }, func(e *errs.Error) { err = e })
  292. return
  293. }
  294. func RegisterQuery(id, query string) {
  295. QueriesMap[id] = template.Must(template.New(id).Parse(query))
  296. }
  297. func ParseQuery(ctx iriscontext.Context, filter *Filter, basequery string, data map[string]interface{}) (err *errs.Error) {
  298. var (
  299. found bool
  300. templateErr error
  301. buf bytes.Buffer
  302. baseQueryTemplate *template.Template
  303. // baseQeuryDocument *bson.M
  304. // errbq *errs.Error
  305. queryDecodedString []byte
  306. userQueryString = Q(ctx, "q", "e30=") // default base64 encoded from "{}"
  307. includeInTrash, _ = strconv.ParseBool(Q(ctx, "includeInTrash", "false")) // default base64 encoded from "{}"
  308. )
  309. // defer func() {
  310. // spew.Dump(filter.Query)
  311. // }()
  312. // Faz o parse da userQueryString enviada pelo usuario que deve ser um base64
  313. if queryDecodedString, templateErr = base64.StdEncoding.DecodeString(userQueryString); templateErr != nil {
  314. err = errs.InvalidArgument().Details(&errs.Detail{
  315. Message: "Query param isn't a base64 json",
  316. })
  317. return
  318. }
  319. if baseQueryTemplate, found = QueriesMap[basequery]; !found {
  320. err = errs.Internal().Details(&errs.Detail{
  321. Message: "Invalid query input",
  322. })
  323. return
  324. }
  325. // transclude the query to base query
  326. data["_transclude_"] = string(queryDecodedString)
  327. data["_deleted_"] = includeInTrash
  328. fmt.Println(
  329. basequery,
  330. string(queryDecodedString),
  331. data,
  332. )
  333. if templateErr = baseQueryTemplate.Execute(&buf, data); templateErr != nil {
  334. err = errs.InvalidArgument().Details(&errs.Detail{
  335. Message: "Failed on interpolate data with template query",
  336. })
  337. return
  338. }
  339. x := buf.Bytes()
  340. fmt.Println("buf.Bytes()", string(x))
  341. if templateErr = bson.UnmarshalExtJSON(x, false, &filter.Query); templateErr != nil {
  342. err = errs.InvalidArgument().Details(&errs.Detail{
  343. Message: "Failed on interpolate data with template query",
  344. })
  345. return
  346. }
  347. return
  348. }
  349. func (t *Mongo) PatchOne(f *Filter) (res *mongo.UpdateResult, err *errs.Error) {
  350. f.Insertion = Patch
  351. f.CheckQuery = true
  352. // out, _ := json.Marshal()
  353. // fmt.Println(string(out))
  354. // spew.Dump(f.Patchs)
  355. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  356. var (
  357. lerr error
  358. // client *mongo.Client
  359. )
  360. // if client, err = t.GetClient(f.DB); err != nil {
  361. // return
  362. // }
  363. // spew.Dump(f.Query)
  364. // spew.Dump(f.Patchs)
  365. // id := primitive.NewObjectID()
  366. t.client.UseSessionWithOptions(
  367. ctx,
  368. options.Session().SetDefaultReadPreference(readpref.Primary()),
  369. func(sctx mongo.SessionContext) error {
  370. defer func() {
  371. if err != nil {
  372. // fmt.Println("abort patch ", id.Hex())
  373. sctx.AbortTransaction(sctx)
  374. } else {
  375. // fmt.Println("commit patch ", id.Hex())
  376. sctx.CommitTransaction(sctx)
  377. }
  378. sctx.EndSession(sctx)
  379. }()
  380. sctx.StartTransaction(options.Transaction().
  381. SetReadConcern(readconcern.Snapshot()).
  382. SetWriteConcern(writeconcern.New(writeconcern.WMajority())))
  383. for _, p := range *f.Patchs {
  384. if f.Options == nil {
  385. f.Options = options.Update()
  386. }
  387. if res, lerr = collection.UpdateOne(ctx, f.Query, p, f.Options.(*options.UpdateOptions)); lerr != nil {
  388. err = errs.FromError(lerr)
  389. return lerr
  390. }
  391. if !f.IgnoreNoEntityFound && (res.ModifiedCount+res.UpsertedCount) == 0 {
  392. err = errs.NotFound().Details(&errs.Detail{
  393. Message: "No entity has been updated",
  394. })
  395. return fmt.Errorf("No entity has been updated")
  396. }
  397. }
  398. return nil
  399. },
  400. )
  401. }, func(e *errs.Error) { err = e })
  402. return
  403. }
  404. func (t *Mongo) PatchMany(f *Filter) (res *mongo.UpdateResult, err *errs.Error) {
  405. f.Insertion = Patch
  406. f.CheckQuery = true
  407. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  408. var (
  409. lerr error
  410. // client *mongo.Client
  411. )
  412. // if client, err = t.GetClient(f.DB); err != nil {
  413. // return
  414. // }
  415. // o, _ := json.MarshalIndent(f.Query, "", " ")
  416. // fmt.Println("query", o)
  417. // o, _ = json.MarshalIndent(f.Patchs, "", " ")
  418. // fmt.Println("patch", o)
  419. t.client.UseSessionWithOptions(
  420. ctx,
  421. options.Session().SetDefaultReadPreference(readpref.Primary()),
  422. func(sctx mongo.SessionContext) error {
  423. defer func() {
  424. if err != nil {
  425. sctx.AbortTransaction(sctx)
  426. } else {
  427. sctx.CommitTransaction(sctx)
  428. }
  429. sctx.EndSession(sctx)
  430. }()
  431. sctx.StartTransaction(
  432. options.Transaction().
  433. SetReadConcern(readconcern.Snapshot()).
  434. SetWriteConcern(writeconcern.New(writeconcern.WMajority())),
  435. )
  436. for _, p := range *f.Patchs {
  437. if res, lerr = collection.UpdateMany(ctx, f.Query, p); lerr != nil {
  438. err = errs.FromError(lerr)
  439. return lerr
  440. }
  441. if !f.IgnoreNoEntityFound && (res.ModifiedCount+res.UpsertedCount) == 0 {
  442. err = errs.NotFound().Details(&errs.Detail{
  443. Message: "No entity has been updated",
  444. })
  445. err.CodeText = "noEntityUpdated"
  446. return fmt.Errorf("No entity has been updated")
  447. }
  448. }
  449. return nil
  450. },
  451. )
  452. }, func(e *errs.Error) { err = e })
  453. return
  454. }
  455. func (mongo *Mongo) CreateIndex(database, collectionString string, index mongo.IndexModel) *errs.Error {
  456. collection := mongo.client.Database(database).Collection(collectionString)
  457. opts := options.CreateIndexes().SetMaxTime(10 * time.Second)
  458. if _, err := collection.Indexes().CreateOne(context.Background(), index, opts); err != nil {
  459. return errs.FromError(err)
  460. }
  461. return nil
  462. }
  463. func (mongo *Mongo) FindOneRx(options *Filter) *ObservableStruct {
  464. return Observable(func(observer *Subscriber) {
  465. if res, err := mongo.FindOne(options); err != nil {
  466. observer.Err(err)
  467. } else {
  468. observer.Next(res)
  469. }
  470. })
  471. }
  472. func (t *Mongo) FindOne(f *Filter) (res *mongo.SingleResult, err *errs.Error) {
  473. f.CheckQuery = (f.QueryType != "aggregate")
  474. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  475. var (
  476. lerr error
  477. cursor *mongo.Cursor
  478. )
  479. if f.QueryType == "aggregate" {
  480. if cursor, err = f.Aggregate(ctx, collection, nil); err != nil {
  481. return
  482. }
  483. if cursor.Next(ctx) {
  484. if lerr = cursor.Decode(f.Entity); lerr == nil {
  485. return
  486. }
  487. } else {
  488. lerr = fmt.Errorf("No document found")
  489. }
  490. } else {
  491. res = collection.FindOne(ctx, f.Query)
  492. if lerr = res.Err(); lerr == nil {
  493. if lerr = res.Decode(f.Entity); lerr == nil {
  494. return
  495. }
  496. }
  497. }
  498. err = errs.FromError(lerr)
  499. }, func(e *errs.Error) {
  500. err = e
  501. })
  502. return
  503. }
  504. func findIds(filter *Filter) (ids []primitive.ObjectID) {
  505. ids = []primitive.ObjectID{}
  506. // findIdsFilter = &Filter{}
  507. // cursor, err := executeFind(findIdsFilter)
  508. return
  509. }
  510. func (t *Mongo) FindMany(f *Filter) (cursor *mongo.Cursor, err *errs.Error) {
  511. // f.CheckQuery = true
  512. t.exec(f, func(ctx context.Context, collection *mongo.Collection) {
  513. var (
  514. lerr error
  515. elemp reflect.Value
  516. // ids = []primitive.ObjectID{}
  517. // limit = int64(f.MaxResults)
  518. // fields = f.Fields
  519. )
  520. // defer func() {
  521. // if errd := recover(); errd != nil {
  522. // // fmt.Println(errd)
  523. // // spew.Dump(Trace())
  524. // // fmt.Println(errors.WithStack(errd.(error)) )
  525. // LogError(0, fmt.Sprintf("FindMany - %v", errd))
  526. // }
  527. // }()
  528. // Carrega os ids e verifica o intervalo de paginacao da consulta.
  529. // f.Fields = &bson.M{"_id": 1}
  530. // ids = findIds(f)
  531. // Atualiza a consulta para o conjunto de ids da paginacao
  532. // f.Fields = fields
  533. // f.Query = &bson.M{"_id": bson.M{"$in": ids}}
  534. // fmt.Println("Query Type ", f.QueryType)
  535. if f.QueryType == "aggregate" {
  536. cursor, lerr = f.Aggregate(ctx, collection, nil)
  537. } else {
  538. findOptions := options.Find()
  539. findOptions.SetLimit(int64(f.MaxResults))
  540. // fmt.Printf("sort of query '%s'\n", f.Format)
  541. // spew.Dump(f.Sort)
  542. // spew.Dump(f.Fields)
  543. // spew.Dump(f.Query)
  544. if f.Sort != nil {
  545. findOptions.SetSort(f.Sort)
  546. }
  547. if f.Fields != nil {
  548. findOptions.SetProjection(f.Fields)
  549. }
  550. cursor, lerr = collection.Find(ctx, f.Query, findOptions)
  551. }
  552. if lerr == nil {
  553. defer cursor.Close(ctx)
  554. // spew.Dump(cursor)
  555. if f.Entities == nil {
  556. lerr = fmt.Errorf("Entities can't be nil")
  557. goto FindManyError
  558. }
  559. entitiesValue := reflect.ValueOf(f.Entities)
  560. if entitiesValue.Kind() != reflect.Ptr || entitiesValue.Elem().Kind() != reflect.Slice {
  561. lerr = fmt.Errorf("Entities argument must be a slice address")
  562. goto FindManyError
  563. }
  564. slicev := entitiesValue.Elem()
  565. slicev = slicev.Slice(0, slicev.Cap())
  566. typ := slicev.Type().Elem()
  567. for cursor.Next(ctx) {
  568. elemp = reflect.New(typ)
  569. // fmt.Println("aqui")
  570. if lerr = cursor.Decode(elemp.Interface()); lerr != nil {
  571. // spew.Dump(elemp)
  572. goto FindManyError
  573. }
  574. slicev = reflect.Append(slicev, elemp.Elem())
  575. }
  576. // spew.Dump(slicev)
  577. entitiesValue.Elem().Set(slicev)
  578. return
  579. }
  580. FindManyError:
  581. err = errs.FromError(lerr)
  582. }, func(e *errs.Error) { err = e })
  583. return
  584. }
  585. func (models *Mongo) Exists(options *Filter) (exists bool, err *errs.Error) {
  586. options.Fields = &bson.M{"_id": 1}
  587. if _, err = models.FindOne(options); err != nil {
  588. return
  589. }
  590. exists = true
  591. return
  592. }
  593. func (driver *Mongo) GetContext(options *Filter) (context.Context, *mongo.Collection) {
  594. var ctx context.Context
  595. if options.SessionContext != nil {
  596. ctx = options.SessionContext
  597. } else {
  598. ctx, _ = context.WithTimeout(context.Background(), 40*time.Second)
  599. }
  600. collection := driver.client.Database(options.DB).Collection(options.Collection)
  601. return ctx, collection
  602. }
  603. func (t *Mongo) exec(f *Filter, execAction execfn, errorAction func(*errs.Error)) {
  604. var (
  605. err *errs.Error
  606. errl error
  607. ctx context.Context
  608. // client *mongo.Client
  609. )
  610. defer func() {
  611. if err == nil {
  612. if errl == nil {
  613. return
  614. }
  615. err = errs.FromError(errl)
  616. }
  617. // spew.Dump(err)
  618. errorAction(err)
  619. }()
  620. if err = f.Check(); err != nil {
  621. return
  622. }
  623. switch f.Insertion {
  624. case InsertOne:
  625. if f.Entity == nil {
  626. errl = fmt.Errorf("Entity can't be nil")
  627. return
  628. }
  629. case InsertMany:
  630. if f.Entities == nil {
  631. errl = fmt.Errorf("Entities can't be nil")
  632. return
  633. }
  634. case Patch:
  635. if f.Patchs == nil {
  636. errl = fmt.Errorf("Patchs can't be nil")
  637. return
  638. }
  639. }
  640. // fmt.Println("passei do exec")
  641. if f.SessionContext != nil {
  642. ctx = f.SessionContext
  643. } else {
  644. ctx, _ = context.WithTimeout(context.Background(), time.Minute)
  645. }
  646. collection := t.client.Database(f.DB).Collection(f.Collection)
  647. execAction(ctx, collection)
  648. return
  649. }
  650. func DeletedPatch() *bson.A {
  651. return &bson.A{
  652. bson.M{
  653. "$set": bson.M{
  654. "deleted": true,
  655. "deletedIn": time.Now().Unix(),
  656. },
  657. },
  658. }
  659. }
  660. // func mergeQueries(filter *Filter) *bson.M {
  661. // if baseQeuryDocument != nil {
  662. // if filter.Query == nil {
  663. // filter.Query = baseQeuryDocument
  664. // } else {
  665. // filter.Query = &bson.M{
  666. // "$and": bson.A{baseQeuryDocument, filter.Query},
  667. // }
  668. // }
  669. // } else if filter.Query == nil {
  670. // filter.Query = &bson.M{}
  671. // }
  672. // }
  673. // func yieldIndexModel() mongo.IndexModel {
  674. // keys := bsonx.Doc{{Key: *key, Value: bsonx.Int32(int32(*value))}}
  675. // index := mongo.IndexModel{}
  676. // index.Keys = keys
  677. // if *unique {
  678. // index.Options = bsonx.Doc{{Key: "unique", Value: bsonx.Boolean(true)}}
  679. // }
  680. // return index
  681. // }
  682. // func (t *Mongo) GetClient() (*mgo.Session, *errs.Error) {
  683. // func (t *Mongo) GetClient(id string) (*mongo.Client, *errs.Error) {
  684. // var (
  685. // client *mongo.Client
  686. // found bool
  687. // )
  688. // if id == "" {
  689. // panic("Client id not defined!")
  690. // }
  691. // if client, found = t.Clients[id]; !found {
  692. // return nil, FullError(ERR_SERVICE_UNAVAILABLE, &errs.Detail{
  693. // Message: fmt.Sprintf("Client %s not exists!", id),
  694. // })
  695. // }
  696. // return client, nil
  697. // }
  698. // func errorcheck(err error) *errs.Error {
  699. // if err != nil {
  700. // return FullError(ERR_GENERAL, &errs.Detail{
  701. // Message: err.Error(),
  702. // })
  703. // }
  704. // return nil
  705. // }
  706. // func Paginate(collection *mongo.Collection, startValue primitive.ObjectID, nPerPage int64) ([]bson.D, *bson.Value, error) {
  707. // // Query range filter using the default indexed _id field.
  708. // filter := bson.VC.DocumentFromElements(
  709. // bson.EC.SubDocumentFromElements(
  710. // "_id",
  711. // bson.EC.ObjectID("$gt", startValue),
  712. // ),
  713. // )
  714. // var opts []findopt.Find
  715. // opts = append(opts, findopt.Sort(bson.NewDocument(bson.EC.Int32("_id", -1))))
  716. // opts = append(opts, findopt.Limit(nPerPage))
  717. // cursor, _ := collection.Find(context.Background(), filter, opts...)
  718. // var lastValue *bson.Value
  719. // var results []bson.Document
  720. // for cursor.Next(context.Background()) {
  721. // elem := bson.NewDocument()
  722. // err := cursor.Decode(elem)
  723. // if err != nil {
  724. // return results, lastValue, err
  725. // }
  726. // results = append(results, *elem)
  727. // lastValue = elem.Lookup("_id")
  728. // }
  729. // return results, lastValue, nil
  730. // }
  731. // func (t *Mongo) Patch(f *Filter) *errs.Error {
  732. // var (
  733. // entityinterface EntityInterface
  734. // col *mongo.Collection
  735. // entity interface{}
  736. // ok bool
  737. // session *mgo.Session
  738. // err error
  739. // x *bson.M
  740. // )
  741. // if session, err = t.GetClient(f.DB); err == nil {
  742. // if !f.Id.IsZero() {
  743. // f.Query = &bson.M{"_id": f.Id}
  744. // } else if f.Query == nil {
  745. // err = fmt.Errorf("Query not defined!")
  746. // goto ErrorPatch
  747. // }
  748. // defer session.Close()
  749. // if entityinterface, ok = f.Entity.(EntityInterface); ok {
  750. // entity = entityinterface.Update()
  751. // x = entity.(*bson.M)
  752. // // delete(*x, "$set")
  753. // } else {
  754. // entity = bson.M{"$set": f.Entity}
  755. // }
  756. // col = session.DB(f.DB).C(f.Collection)
  757. // // entity["$set"]
  758. // spew.Dump(entity)
  759. // _, err = col.Upsert(f.Query, entity)
  760. // }
  761. // ErrorPatch:
  762. // if err != nil {
  763. // return Error(ERR_PERSIST, err.Error())
  764. // }
  765. // return nil
  766. // }
  767. // func (t *Mongo) Upsert(f *Filter) *errs.Error {
  768. // var (
  769. // entityinterface EntityInterface
  770. // col *mongo.Collection
  771. // entity interface{}
  772. // ok bool
  773. // )
  774. // session, err := t.GetClient(f.DB)
  775. // if err == nil {
  776. // if !f.Id.IsZero() {
  777. // f.Query = &bson.M{"_id": f.Id}
  778. // } else if f.Query == nil {
  779. // err = fmt.Errorf("Query not defined!")
  780. // goto ErrorUp
  781. // }
  782. // defer session.Close()
  783. // col = session.DB(f.DB).C(f.Collection)
  784. // // update = bson.M{"$set": f.Entity}
  785. // // if data, ok = f.Entity.Push(); ok {
  786. // // update["$push"] = data
  787. // // }
  788. // // if data, ok = f.Entity.Pull(); ok {
  789. // // update["$pull"] = data
  790. // // }
  791. // // spew.Dump(f.Entity)
  792. // if entityinterface, ok = f.Entity.(EntityInterface); ok {
  793. // // fmt.Println("Implement interface")
  794. // entity = entityinterface.Update()
  795. // } else {
  796. // entity = f.Entity
  797. // }
  798. // // spew.Dump(entity)
  799. // // _, err = col.Upsert(f.Query, entity)
  800. // err = col.Update(f.Query, entity)
  801. // }
  802. // ErrorUp:
  803. // if err != nil {
  804. // return Error(ERR_PERSIST, err.Error())
  805. // }
  806. // return nil
  807. // }
  808. //-----------------------------------------------------------------------
  809. // func (t *Mongo) Find(f *Filter, one bool) (*errs.Error, int) {
  810. // var cursor string
  811. // pageToken := &f.PageToken
  812. // session, err := t.GetClient(f.DB)
  813. // if err == nil {
  814. // defer session.Close()
  815. // if f.Query == nil {
  816. // if one {
  817. // if !f.Id.IsZero() {
  818. // f.Query = &bson.M{"_id": f.Id}
  819. // } else {
  820. // return Error(ERR_INVALID_PARAM_VALUE, "Param id not valid."), 0
  821. // }
  822. // } else if f.Query == nil {
  823. // f.Query = &bson.M{}
  824. // }
  825. // }
  826. // query := minquery.New(session.DB(f.DB), f.Collection, f.Query)
  827. // // Se tem um token de paginacao
  828. // hasToken := pageToken.HasToken()
  829. // if hasToken {
  830. // fmt.Println("consultando com token", pageToken.Cursor)
  831. // query = query.Cursor(pageToken.Cursor)
  832. // }
  833. // // cursorFields := []string{"_id"}
  834. // cursorFields := []string{}
  835. // if len(f.Sort) > 0 {
  836. // query.Sort(f.Sort...)
  837. // for _, key := range f.Sort {
  838. // if !strings.Contains(key, ".") {
  839. // cursorFields = append(cursorFields, key)
  840. // }
  841. // }
  842. // } else {
  843. // cursorFields = append(cursorFields, "_id")
  844. // }
  845. // // Seleciona os campos se forem especificados
  846. // if f.Fields != nil {
  847. // query.Select(f.Fields)
  848. // }
  849. // // Determina o numero de itens a ser retornado
  850. // if f.MaxResults > 0 {
  851. // query.Limit(f.MaxResults)
  852. // }
  853. // if one {
  854. // err = query.One(f.Entity)
  855. // pageToken.Count = 1 // Filter one
  856. // } else {
  857. // // spew.Dump(f.Entity, cursorFields)
  858. // if cursor, err = query.All(f.Entity, cursorFields...); err != nil {
  859. // goto ErroFind
  860. // }
  861. // // Numero total de documentos
  862. // // Se tem um token de paginacao o valor total esta no token
  863. // // Caso contrario consulta no banco
  864. // if !hasToken {
  865. // c := session.DB(f.DB).C(f.Collection)
  866. // if pageToken.Count, err = c.Find(f.Query).Select(&bson.M{"_id": 1}).Count(); err != nil {
  867. // goto ErroFind
  868. // }
  869. // }
  870. // // if ()
  871. // fmt.Println("Cursor return", cursor, "-")
  872. // pageToken.NewCursor = cursor
  873. // }
  874. // }
  875. // ErroFind:
  876. // if err != nil {
  877. // return Error(ERR_PERSIST, err.Error()), 0
  878. // }
  879. // return nil, pageToken.Count
  880. // }
  881. // func (t *Mongo) FindOne(f *Filter) (*errs.Error, int) {
  882. // return t.Find(f, true)
  883. // }
  884. // func (t *Mongo) FindAll(f *Filter) (*errs.Error, int) {
  885. // return t.Find(f, false)
  886. // }
  887. // func (t *Mongo) Count(f *Filter) (*errs.Error, int) {
  888. // session, err := t.GetClient(f.DB)
  889. // if err == nil {
  890. // defer session.Close()
  891. // if f.Query == nil {
  892. // f.Query = &bson.M{}
  893. // }
  894. // query := session.DB(f.DB).C(f.Collection).Find(f.Query)
  895. // // Seleciona os campos se forem especificados
  896. // f.PageToken.Count, err = query.Select(&bson.M{"_id": 1}).Count()
  897. // }
  898. // if err != nil {
  899. // return Error(ERR_PERSIST, err.Error()), 0
  900. // }
  901. // return nil, f.PageToken.Count
  902. // }
  903. // func (t *Mongo) Update(f *Filter) *errs.Error {
  904. // var (
  905. // entityinterface EntityInterface
  906. // entity interface{}
  907. // )
  908. // one := false
  909. // ok := false
  910. // session, err := t.GetClient(f.DB)
  911. // if err == nil {
  912. // defer session.Close()
  913. // if !f.Id.IsZero() {
  914. // one = true
  915. // f.Query = &bson.M{"_id": f.Id}
  916. // } else if f.Query == nil {
  917. // err = fmt.Errorf("Query not defined!")
  918. // }
  919. // if entityinterface, ok = f.Entity.(EntityInterface); ok {
  920. // entity = entityinterface.Update()
  921. // } else {
  922. // entity = f.Entity
  923. // }
  924. // col := session.DB(f.DB).C(f.Collection)
  925. // if one {
  926. // err = col.Update(f.Query, entity)
  927. // } else {
  928. // _, err = col.UpdateAll(f.Query, entity)
  929. // }
  930. // }
  931. // if err != nil {
  932. // return Error(ERR_PERSIST, err.Error())
  933. // }
  934. // return nil
  935. // }
  936. //-----------------------------------------------------------------------
  937. // func (t *Mongo) Aggregation(f *Filter, q []bson.M, one bool) *errs.Error {
  938. // session, err := t.GetClient(f.DB)
  939. // if err == nil {
  940. // defer session.Close()
  941. // pipe := session.DB(f.DB).C(f.Collection).Pipe(q)
  942. // if one {
  943. // err = pipe.One(&f.Entity)
  944. // } else {
  945. // err = pipe.All(&f.Entity)
  946. // }
  947. // }
  948. // if err != nil {
  949. // return Error(ERR_PERSIST, err.Error())
  950. // }
  951. // return nil
  952. // }
  953. // all := true
  954. // session, err := t.GetClient(f.DB)
  955. // if err == nil {
  956. // defer session.Close()
  957. // if !f.Id.IsZero() {
  958. // all = false
  959. // f.Query = &bson.M{"_id": f.Id}
  960. // } else if f.Query == nil {
  961. // err = fmt.Errorf("Query not defined!")
  962. // }
  963. // C := session.DB(f.DB).C(f.Collection)
  964. // if all {
  965. // _, err = C.RemoveAll(f.Query)
  966. // } else {
  967. // err = C.Remove(f.Query)
  968. // }
  969. // }
  970. // if err != nil {
  971. // return Error(ERR_PERSIST, err.Error())
  972. // }
  973. // return nil
  974. // VERIFICAR A NECESSIDADE E CORRIGIR O ERRO
  975. // func (t *Mongo) GetArrayById(f *Filter, ids []primitive.ObjectID) error {
  976. // session, err := t.GetClient(f.DB)
  977. // if err != nil {
  978. // return err
  979. // }
  980. // defer session.Close()
  981. // q := bson.M{"_id": bson.M{"$in": ids}}
  982. // err = session.DB(f.DB).C(f.Collection).Find(q).One(f.Entity)
  983. // return err
  984. // }
  985. // func (t *Mongo) GetEmbedFromArray(f *Filter, embed string, id primitive.ObjectID, sid primitive.ObjectID) (errs error) {
  986. // session, err := t.GetClient(f.DB)
  987. // if err != nil {
  988. // return err
  989. // }
  990. // defer session.Close()
  991. // field := "$" + embed
  992. // match := bson.M{"_id": id}
  993. // match[embed] = bson.M{"$exists": true}
  994. // aggregations := []bson.M{
  995. // bson.M{"$unwind": field},
  996. // bson.M{"$match": match},
  997. // bson.M{"$replaceRoot": bson.M{"newRoot": field}},
  998. // bson.M{"$match": bson.M{"_id": sid}},
  999. // }
  1000. // C := session.DB(f.DB).C(f.Collection)
  1001. // return C.Pipe(aggregations).One(&f.Entity)
  1002. // }
  1003. // func (t *Mongo) UpdateEmbedFromArray(f *Filter, embed string, id primitive.ObjectID, sid primitive.ObjectID) error {
  1004. // session, err := t.GetClient(f.DB)
  1005. // if err != nil {
  1006. // return err
  1007. // }
  1008. // defer session.Close()
  1009. // col := session.DB(f.DB).C(f.Collection)
  1010. // //Define o elemento que sera atualizado
  1011. // element := bson.M{}
  1012. // element[embed+".$"] = &f.Entity
  1013. // //Define o seletor do elemento que sera atualizado
  1014. // selector := bson.M{"_id": id}
  1015. // selector[embed+"._id"] = sid
  1016. // return col.Update(selector, bson.M{"$set": element})
  1017. // }
  1018. // func (t *Mongo) AddEmbedFromArray(f *Filter, embed string, id primitive.ObjectID) error {
  1019. // session, errs := t.GetClient(f.DB)
  1020. // if errs != nil {
  1021. // return errs
  1022. // }
  1023. // defer session.Close()
  1024. // col := session.DB(f.DB).C(f.Collection)
  1025. // //Define o elemento que sera atualizado
  1026. // element := bson.M{}
  1027. // element[embed] = &f.Entity
  1028. // //Define o seletor do elemento que sera atualizado
  1029. // selector := bson.M{"_id": id}
  1030. // return col.Update(selector, bson.M{"$push": element})
  1031. // }
  1032. // 0000000000000000000000000000000000000000000000000000000000000000
  1033. // func (t *Mongo) NewTransaction(dbname string) (*Transaction, error) {
  1034. // session, e := t.GetClient(dbname)
  1035. // if e != nil {
  1036. // return nil, e
  1037. // }
  1038. // collection := session.DB(dbname).C("txns")
  1039. // return &Transaction{R: txn.NewRunner(collection)}, nil
  1040. // }
  1041. // Transactions
  1042. // type Transaction struct {
  1043. // R *txn.Runner
  1044. // Ops []txn.Op
  1045. // }
  1046. // func (t *Transaction) Insert(collection string, id primitive.ObjectID, entity interface{}) *Transaction {
  1047. // t.Ops = append(t.Ops, txn.Op{
  1048. // C: collection,
  1049. // Id: id,
  1050. // Insert: entity,
  1051. // })
  1052. // return t
  1053. // }
  1054. // func (t *Transaction) Update(collection string, id primitive.ObjectID, assert *bson.M, entity interface{}) *Transaction {
  1055. // op := txn.Op{
  1056. // C: collection,
  1057. // Id: id,
  1058. // Update: entity,
  1059. // }
  1060. // if assert != nil {
  1061. // op.Assert = assert
  1062. // }
  1063. // t.Ops = append(t.Ops, op)
  1064. // return t
  1065. // }
  1066. // func (t *Transaction) Remove(collection string, id primitive.ObjectID) *Transaction {
  1067. // t.Ops = append(t.Ops, txn.Op{
  1068. // C: collection,
  1069. // Id: id,
  1070. // Remove: true,
  1071. // })
  1072. // return t
  1073. // }
  1074. // func (t *Transaction) Run() error {
  1075. // return t.R.Run(t.Ops, primitive.NewObjectID(), nil)
  1076. // }
  1077. // func (t *Mongo) Find(f *Filter, one bool) (*errs.Error, int) {
  1078. // session, err := t.GetClient()
  1079. // if err == nil {
  1080. // defer session.Close()
  1081. // if !f.Id.IsZero() {
  1082. // f.Query = &bson.M{"_id": f.Id}
  1083. // } else if f.Query == nil {
  1084. // f.Query = &bson.M{}
  1085. // }
  1086. // pageToken := &f.PageToken
  1087. // aggregations := []*bson.M{}
  1088. // // Se tem um token de paginacao
  1089. // hasToken := pageToken.HasToken()
  1090. // if hasToken {
  1091. // fmt.Println("consultando com token", pageToken.CurrentID)
  1092. // // {$or:
  1093. // // [
  1094. // // {$and :
  1095. // // [
  1096. // // {<sort key>:{$gte: <last sort key value of previous page>}},
  1097. // // {"_id" : {$gt : <last result id of previous page>}}
  1098. // // ]
  1099. // // },
  1100. // // ou
  1101. // // {<sort key> :{$gt: <last sort key value>}}
  1102. // // ]
  1103. // // }.
  1104. // // f.Query = &bson.M{"$and": []bson.M{
  1105. // // *f.Query,
  1106. // // bson.M{"_id": bson.M{"$gt": f.NextPageToken}},
  1107. // // }}
  1108. // f.Query = &bson.M{"_id": bson.M{
  1109. // // "$gt": primitive.ObjectIDHex(pageToken.CurrentID),
  1110. // "$gt": pageToken.CurrentID,
  1111. // }}
  1112. // } else {
  1113. // }
  1114. // // Adiciona o primeiro estagio da agregacao
  1115. // aggregations = append(aggregations, &bson.M{"$match": f.Query})
  1116. // if len(f.Sort) > 0 {
  1117. // f.Sort = append(f.Sort, "_id")
  1118. // aggregations = append(aggregations, MgoSortBson(f.Sort))
  1119. // // query.Sort(f.Sort...)
  1120. // }
  1121. // // aggregations = append(aggregations, &bson.M{
  1122. // // "$addFields": bson.M{"position":},
  1123. // // })
  1124. // // Seleciona os campos se forem especificados
  1125. // if f.Fields != nil {
  1126. // // aggregations = append(aggregations, bson.M{"$limit": f.MaxResults})
  1127. // }
  1128. // // countQuery := session.DB(f.DB).C(f.Collection).Pipe(aggregations)
  1129. // // Determina o numero de itens a ser retornado
  1130. // if f.MaxResults > 0 {
  1131. // aggregations = append(aggregations, &bson.M{"$limit": f.MaxResults})
  1132. // }
  1133. // spew.Dump(aggregations)
  1134. // // query := session.DB(f.DB).C(f.Collection).Find(f.Query)
  1135. // collection := session.DB(f.DB).C(f.Collection)
  1136. // query := collection.Pipe(aggregations)
  1137. // if one {
  1138. // err = query.One(f.Entity)
  1139. // f.Count = 1 // Filter one
  1140. // } else {
  1141. // err = query.All(f.Entity)
  1142. // // Numero total de documentos
  1143. // // Se tem um token de paginacao o valor total esta no token
  1144. // // Caso contrario consulta no banco
  1145. // if hasToken {
  1146. // f.Count = pageToken.Count
  1147. // } else {
  1148. // f.Count, _ = collection.Find(f.Query).Select(&bson.M{"_id": 1}).Count()
  1149. // }
  1150. // }
  1151. // }
  1152. // if err != nil {
  1153. // return Error(ERR_PERSIST, err.Error()), 0
  1154. // }
  1155. // return nil, f.Count
  1156. // }
  1157. // v := reflect.ValueOf(f.Entity)
  1158. // fmt.Println("UpdateCursorResponse")
  1159. // // spew.Dump(f.PageToken)
  1160. // // fmt.Println(v.Kind())
  1161. // if v.Kind() == reflect.Ptr {
  1162. // // Atualiza v para o elemento apontado
  1163. // v = v.Elem()
  1164. // if v.Kind() == reflect.Slice || v.Kind() == reflect.Array {
  1165. // // Acessa o atributo ID da ultima entidade do array
  1166. // field := v.Index(v.Len() - 1).Elem().FieldByName("ID")
  1167. // // Converte o atributo ID para objectId
  1168. // last := field.Interface().(primitive.ObjectID)
  1169. // // Cria a consulta que verifica se existe outros registros alem do ultimo
  1170. // filter := &Filter{
  1171. // Collection: f.Collection,
  1172. // Query: &bson.M{"_id": bson.M{
  1173. // "$lt": last,
  1174. // }},
  1175. // }
  1176. // // Se existirem elementos adiciona o nextTOKEN
  1177. // if _, count := models.Count(filter); count > 0 {
  1178. // // atualiza os valores do token
  1179. // f.PageToken.StartID = last.Hex()
  1180. // f.PageToken.Count = f.Count
  1181. // resp.NextPageToken = f.PageToken.Encode()
  1182. // }
  1183. // }
  1184. // }
  1185. // func NewMongo() (*Mongo, error) {
  1186. // // session, err := mgo.Dial(addrs)
  1187. // // session, err := mgo.Dial("mongodb://localhost:27017")
  1188. // session, err := mgo.Dial("mongodb://localhost:27017")
  1189. // if err != nil {
  1190. // return nil, err
  1191. // }
  1192. // session.SetMode(mgo.Monotonic, true)
  1193. // // "addrs": "mongodb://localhost:27017",
  1194. // // "user": "guest",
  1195. // // "password": "welcome",
  1196. // // "database": "financeiro"
  1197. // m := &Mongo{
  1198. // Session: session,
  1199. // DataBase: "accounts",
  1200. // Addrs: ,
  1201. // // Config: cfg,
  1202. // }
  1203. // return m, err
  1204. // }