middleware_put.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. package got
  2. import (
  3. "text/template"
  4. . "git.eugeniocarvalho.dev/eugeniucarvalho/apicodegen/common"
  5. G "github.com/dave/jennifer/jen"
  6. )
  7. var (
  8. updateStmtsTmpl *template.Template
  9. updateStmtsErr error
  10. )
  11. func init() {
  12. updateStmtsTmpl, updateStmtsErr = ParseTemplate(`
  13. var (
  14. entity = &models.{{.entity}}Input{}
  15. )
  16. if err = api.ReadJson(ctx, entity); err != nil {
  17. return
  18. }
  19. entity.SetMode("update")
  20. if err = api.Validate(entity); err != nil {
  21. return
  22. }
  23. values := ctx.Values()
  24. entity.LastUpdate = api.NowUnix()
  25. user := values.Get("$user.ref").(*models.UserReference)
  26. entity.UpdatedBy = user
  27. values.Set("entity", entity)
  28. {{if .preconditions}}
  29. if _, err = executeAction(
  30. ctx,
  31. {{.preconditions}},
  32. ); err != nil {
  33. return
  34. }
  35. {{end}}
  36. filter := values.Get("$filter").(*api.Filter)
  37. filter.DB = "{{.dbName}}"
  38. filter.Collection = "{{.collectionName}}"
  39. filter.Entity = entity
  40. {{if .beforePersist}} if err = BeforePersist{{.entity}}Update(ctx, resp); err != nil {
  41. return
  42. }{{end}}
  43. if _, err = models.Api.UpdateOne(filter); err != nil {
  44. return
  45. }
  46. {{if .hasUpdateRelation}} // Cria uma thread que executa a atualizaca das referências.
  47. go func() {
  48. UpdateRelation{{.entity}}(filter)
  49. }() {{end}}
  50. {{if .beforeResponse}}
  51. if resp, err = executeAction(
  52. ctx,
  53. {{.beforeResponse}},
  54. ); err != nil || resp != nil {
  55. return
  56. }
  57. {{end}}
  58. resp = entity
  59. return`)
  60. if updateStmtsErr != nil {
  61. panic(updateStmtsErr)
  62. }
  63. }
  64. var (
  65. GenUpdateStmts = &Middleware{
  66. Id: "implement",
  67. Type: "method",
  68. Fn: func(ctx *MiddlewareContext) error {
  69. var (
  70. project = ctx.Project
  71. method = ctx.Method
  72. dbName = project.GetEntityDB(method.Entity)
  73. collectionName = project.GetCollection(method.Entity)
  74. dependenceMethod = BASE_HAS_DEPENDE + method.Entity
  75. beforeSend = method.Hook("beforeSend")
  76. beforePersist = method.Hook("beforePersist")
  77. relations = []map[string]interface{}{}
  78. context = map[string]interface{}{
  79. "dbName": dbName,
  80. "collectionName": collectionName,
  81. "entity": method.Entity,
  82. "dependenceMethod": dependenceMethod,
  83. "beforeSend": beforeSend,
  84. "beforePersist": beforePersist,
  85. "relations": &relations,
  86. "hasUpdateRelation": SR.Has(method.Entity),
  87. "preconditions": parseMethodActions(method.Preconditions),
  88. "beforeResponse": parseMethodActions(method.BeforeResponse),
  89. }
  90. )
  91. generateHookCall(project, method, "beforePersist")
  92. generateHookCall(project, method, "beforeSend")
  93. // Nome do metodo que verifica se a entidade tem dependencias
  94. out, _ := TemplateToString(updateStmtsTmpl, context)
  95. afterMethod := ctx.Statement.Block(G.Id(out)).Line()
  96. if body, err := createUpdateRelationMethod(method, context); err == nil {
  97. afterMethod.Id(body)
  98. }
  99. return nil
  100. },
  101. }
  102. )
  103. // updateRelationStmtsTmpl, updateStmtsErr = ParseTemplate(`
  104. // func UpdateRelation{{.entity}}(options *api.Filter) {
  105. // var (
  106. // filter *api.Filter
  107. // err *errs.Error
  108. // entity = &{{.entity}}Reference{}
  109. // wg = sync.WaitGroup{}
  110. // )
  111. // options.Entity = entity
  112. // if _, err = models.Api.FindOne(options); err != nil {
  113. // return
  114. // }
  115. // entity.Id = entity.Id.(primitive.ObjectID).Hex()
  116. // {{range .relations}}
  117. // wg.Add(1)
  118. // go func(){
  119. // defer wg.Done()
  120. // filter = &api.Filter{
  121. // Collection: "{{.Collection}}",
  122. // DB: "{{.DB}}",
  123. // Patchs: &bson.A{bson.M{"$set": bson.M{"{{.path}}": entity}}},
  124. // Query: &bson.M{"{{.attr}}._id": entity.Id},
  125. // }
  126. // if _, err = models.Api.PatchMany(filter); err != nil {
  127. // fmt.Println(err.Error())
  128. // }
  129. // }()
  130. // {{end}}
  131. // wg.Wait()
  132. // }`)
  133. // if updateStmtsErr != nil {
  134. // panic(updateStmtsErr)
  135. // }
  136. // if hasUpdateRelation && !updateRelationMethodDefined {
  137. // relationFunctionDefined[updRelation] = true
  138. // for _, relation := range SR.Get(method.Entity) {
  139. // if relation.DB == "" || relation.Collection == "" {
  140. // api.LogWarning(0, fmt.Sprintf("Relation DB or Collection can't be empty! %s -> %s", relation.Target, relation.Source))
  141. // continue
  142. // }
  143. // relations = append(relations, map[string]interface{}{
  144. // "DB": relation.DB,
  145. // "Collection": relation.Collection,
  146. // "attr": relation.Attr,
  147. // "path": fmt.Sprintf("%s%s", relation.Attr, indexMap[relation.IsArray]),
  148. // })
  149. // }
  150. // out, _ = TemplateToString(updateRelationStmtsTmpl, context)
  151. // afterMethod.Id(out)
  152. // }
  153. // j = G.Id("filter").Op("=").Op("&").Qual(API_URL, "Filter").Values(G.Dict{
  154. // // Especifica a collection
  155. // G.Id("DB"): G.Lit(relation.DB),
  156. // G.Id("Collection"): G.Lit(relation.Collection),
  157. // // Especifica a query
  158. // G.Id("Query"): G.Op("&").Qual(BSON, "M").Values(G.Dict{
  159. // G.Lit(attrId + "._id"): G.Id("f").Dot("Id").Dot("Hex").Call(),
  160. // }),
  161. // // G.Id("Entity"): G.Qual(BSON, "M").Values(G.Dict{
  162. // // G.Lit("$set"): G.Qual(BSON, "M").Values(G.Dict{
  163. // // G.Lit(attrId + index): G.Id("f").Dot("Entity"),
  164. // // }),
  165. // // }),
  166. // G.Id("Patchs"): G.Op("&").Qual(BSON, "A").Values(
  167. // G.Qual(BSON, "M").Values(G.Dict{
  168. // G.Lit("$set"): G.Qual(BSON, "M").Values(G.Dict{
  169. // G.Lit(attrId + index): G.Id("f").Dot("Entity"),
  170. // }),
  171. // }),
  172. // ),
  173. // }).Line().If(
  174. // G.List(G.Id("_"), G.Id("err")).Op("=").Id("Models").Dot("PatchMany").Call(
  175. // G.Id("filter"),
  176. // ),
  177. // G.Id("err").Op("!=").Id("nil"),
  178. // ).Block(
  179. // G.Qual("fmt", "Println").Call(G.Id("err").Dot("Error").Call()),
  180. // ).Line().Line()
  181. // k.Add(j)
  182. // .Do(func(s *G.Statement) {
  183. // _, found := relationFunctionDefined[updRelation]
  184. // if !createUpdateRelation || found {
  185. // return
  186. // }
  187. // s.Comment(updRelation + " atualiza as referências da entidade " + method.Entity).Line()
  188. // s.Func().Id(updRelation).Params(
  189. // G.Id("f").Op("*").Qual(API_URL, "Filter"),
  190. // ).Block(
  191. // G.Var().Defs(
  192. // G.Id("filter").Op("*").Qual(API_URL, "Filter"),
  193. // G.Id("err").Op("*").Qual(API_ERROR, "Error"),
  194. // ),
  195. // // atualiza o filtro para a entidade de referencia
  196. // G.Id("f").Dot("Entity").Op("=").Op("&").Id(method.Entity+"Reference").Values(),
  197. // // Carrega os dados do banco para atualizar nas entidades relacionadas
  198. // G.If(
  199. // G.List(G.Id("_"), G.Id("err")).Op("=").Id("Models").Dot("FindOne").Call(
  200. // G.Id("f"),
  201. // ),
  202. // G.Id("err").Op("!=").Id("nil"),
  203. // ).Block(
  204. // G.Return(),
  205. // ),
  206. // G.Do(func(k *G.Statement) { // Adiciona as regras de atualizacao
  207. // var (
  208. // j *G.Statement
  209. // index string
  210. // )
  211. // for _, relation := range SR.Get(method.Entity) {
  212. // if relation.DB == "" || relation.Collection == "" {
  213. // api.LogWarning(0, fmt.Sprintf("Relation DB or Collection can't be empty! %s -> %s", relation.Target, relation.Source))
  214. // continue
  215. // }
  216. // // spew.Dump(relation)
  217. // // panic("sss")
  218. // // e := project.GetSchema(relation)
  219. // attrId := relation.Attr
  220. // if relation.IsArray {
  221. // index = ".$"
  222. // } else {
  223. // index = ""
  224. // }
  225. // j = G.Id("filter").Op("=").Op("&").Qual(API_URL, "Filter").Values(G.Dict{
  226. // // Especifica a collection
  227. // G.Id("DB"): G.Lit(relation.DB),
  228. // G.Id("Collection"): G.Lit(relation.Collection),
  229. // // Especifica a query
  230. // G.Id("Query"): G.Op("&").Qual(BSON, "M").Values(G.Dict{
  231. // G.Lit(attrId + "._id"): G.Id("f").Dot("Id").Dot("Hex").Call(),
  232. // }),
  233. // // G.Id("Entity"): G.Qual(BSON, "M").Values(G.Dict{
  234. // // G.Lit("$set"): G.Qual(BSON, "M").Values(G.Dict{
  235. // // G.Lit(attrId + index): G.Id("f").Dot("Entity"),
  236. // // }),
  237. // // }),
  238. // G.Id("Patchs"): G.Op("&").Qual(BSON, "A").Values(
  239. // G.Qual(BSON, "M").Values(G.Dict{
  240. // G.Lit("$set"): G.Qual(BSON, "M").Values(G.Dict{
  241. // G.Lit(attrId + index): G.Id("f").Dot("Entity"),
  242. // }),
  243. // }),
  244. // ),
  245. // }).Line().If(
  246. // G.List(G.Id("_"), G.Id("err")).Op("=").Id("Models").Dot("PatchMany").Call(
  247. // G.Id("filter"),
  248. // ),
  249. // G.Id("err").Op("!=").Id("nil"),
  250. // ).Block(
  251. // G.Qual("fmt", "Println").Call(G.Id("err").Dot("Error").Call()),
  252. // ).Line().Line()
  253. // k.Add(j)
  254. // }
  255. // }),
  256. // )
  257. // })
  258. // var (
  259. // // UpdateRelationRotine *G.Statement
  260. // method = ctx.Method
  261. // project = ctx.Project
  262. // updRelation = UPDATE_RELATION + method.Entity
  263. // createUpdateRelation = false
  264. // entity = method.Request
  265. // responseEntity = GenericPart.ReplaceAllString(method.Response, "")
  266. // )
  267. // if entity == "" {
  268. // panic("Modelo de request não definido em UpdateStmt!")
  269. // }
  270. // if responseEntity == "" {
  271. // panic("Modelo de response não definido!")
  272. // }
  273. // ctx.Statement.Block(
  274. // // Declaracao das variaveis
  275. // G.Var().Defs(
  276. // // G.Id("err").Op("*").Qual(API_ERROR, "Error"),
  277. // G.Id("entity").Op("=").Op("&").Id(entity).Values(),
  278. // ).Line(),
  279. // // Fazendo o parse do body
  280. // G.If(
  281. // G.Id("err").Op("=").Qual(API_URL, "ReadJson").Call(G.Id("ctx"), G.Id("entity")),
  282. // G.Id("err").Op("!=").Id("nil"),
  283. // ).Block(
  284. // // G.Id("api").Dot("Falha").Call(
  285. // // G.Id("ctx"),
  286. // // G.Id("api").Dot("ErrGeneral"),
  287. // // G.Id("err").Dot("Error").Call(),
  288. // // G.Nil(),
  289. // // ),
  290. // // G.Return(G.Id("err")),
  291. // G.Return(),
  292. // ),
  293. // G.Do(func(s *G.Statement) {
  294. // entity := ctx.Project.EntityDesc(method.Entity)
  295. // if entity != nil && entity.HasMode {
  296. // s.Add(G.Id(`entity.SetMode("create")`))
  297. // }
  298. // }),
  299. // G.If(
  300. // G.Id("err").Op("=").Qual(API_URL, "Validate").Call(G.Id("entity")),
  301. // G.Id("err").Op("!=").Id("nil"),
  302. // ).Block(
  303. // // G.Return(G.Id("err")),
  304. // G.Return(),
  305. // ).Line(),
  306. // // Captura a base de values
  307. // G.Id("values").Op(":=").Id("ctx").Dot("Values").Call(),
  308. // // Gera as atribuicoes de variaveis que seram atualizadas (usuario e ultimo update quando existir)
  309. // G.Do(func(part *G.Statement) {
  310. // entity := ctx.Project.GetSchema(method.Entity)
  311. // user := false
  312. // for _, prop := range entity.Properties {
  313. // if def, ok := prop.Autogenerate["update"]; ok {
  314. // switch def.Type {
  315. // case "user":
  316. // if !user {
  317. // part.Add(G.Id(`user := values.Get("$user.ref").(*UserReference)`).Line())
  318. // user = true
  319. // }
  320. // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Id("user").Line())
  321. // case "now":
  322. // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Qual("time", "Now").Call().Id(".Unix()").Line())
  323. // }
  324. // }
  325. // }
  326. // }).Line(),
  327. // // Carrega o filtro do contexto para adicionar a entidade
  328. // G.Id("filter").Op(":=").Id("values").Dot("Get").Call(
  329. // G.Lit("$filter"),
  330. // ).Assert(G.Op("*").Qual(API_URL, "Filter")).Line(),
  331. // // Adiciona a entidade
  332. // G.Id("filter").Dot("DB").Op("=").Lit(ctx.Project.GetEntityDB(method.Entity)),
  333. // G.Id("filter").Dot("Collection").Op("=").Lit(ctx.Project.GetCollection(method.Entity)),
  334. // G.Id("filter").Dot("Entity").Op("=").Id("entity").Line(),
  335. // generateHookCall(project, method, "beforePersist"),
  336. // // Inseri a entidade na coleção e verifica se a operação ocorreu com exito
  337. // G.If(
  338. // G.List(G.Id("_"), G.Id("err")).Op("=").Id("Models").Dot("UpdateOne").Call(
  339. // // G.Lit(ctx.Project.GetCollection(method.Entity)),
  340. // G.Id("filter"),
  341. // ),
  342. // G.Id("err").Op("!=").Id("nil"),
  343. // ).Block(
  344. // // G.Id("api").Dot("Falha").Call(
  345. // // G.Id("ctx"),
  346. // // G.Id("api").Dot("ErrGeneral"),
  347. // // G.Id("err").Dot("Error").Call(),
  348. // // G.Nil(),
  349. // // ),
  350. // // bson.IsObjectIdHex(m.Id.Hex())
  351. // // G.Return(G.Id("err")),
  352. // G.Return(),
  353. // ),
  354. // // Cria a rotina de atualização de relacionamentos
  355. // G.Do(func(s *G.Statement) {
  356. // if SR.Has(method.Entity) {
  357. // createUpdateRelation = true
  358. // relationFunctionDefined[updRelation] = true
  359. // s.Comment("Cria uma thread que executa a atualizaca das referências.").Line().Go().Func().Params().Block(
  360. // G.Id(updRelation).Call(G.Id("filter")),
  361. // ).Call()
  362. // }
  363. // }),
  364. // // Envia a resposta pro usuario em caso de sucesso
  365. // // G.Line().Id("resp").Op("=").Id(responseEntity).Values(G.Dict{
  366. // // G.Id("Entity"): G.Id("entity"),
  367. // // }),
  368. // G.Line().Id("resp").Op("=").Id("entity"),
  369. // generateHookCall(project, method, "beforeSend"),
  370. // // G.Return(G.Nil()),
  371. // G.Return(),
  372. // ).Line()