middleware_post.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. package got
  2. import (
  3. "strings"
  4. "text/template"
  5. . "git.eugeniocarvalho.dev/eugeniucarvalho/apicodegen/common"
  6. G "github.com/dave/jennifer/jen"
  7. )
  8. var (
  9. createStmtsTmpl *template.Template
  10. createStmtsErr error
  11. )
  12. func init() {
  13. createStmtsTmpl, createStmtsErr = ParseTemplate(`
  14. var (
  15. entity = models.New{{.entity}}()
  16. )
  17. if err = api.ReadJson(ctx, entity); err != nil {
  18. return
  19. }
  20. values := ctx.Values()
  21. user := values.Get("$user.ref").(*models.UserReference)
  22. entity.CreatedBy = user
  23. entity.UpdatedBy = user
  24. entity.SetMode("create")
  25. values.Set("entity", entity)
  26. if err = api.Validate(entity); err != nil {
  27. return
  28. }
  29. {{if .preconditions}}
  30. if _, err = executeAction(
  31. ctx,
  32. {{.preconditions}},
  33. ); err != nil {
  34. return
  35. }
  36. {{end}}
  37. filter := values.Get("$filter").(*api.Filter)
  38. filter.DB = "{{.dbName}}"
  39. filter.Collection = "{{.collectionName}}"
  40. filter.Entity = entity
  41. if _, err = models.Api.InsertOne(filter); err != nil {
  42. return
  43. }
  44. {{if .beforeResponse}}
  45. if resp, err = executeAction(
  46. ctx,
  47. {{.beforeResponse}},
  48. ); err != nil || resp != nil {
  49. return
  50. }
  51. {{end}}
  52. resp = entity
  53. return`)
  54. if createStmtsErr != nil {
  55. panic(createStmtsErr)
  56. }
  57. }
  58. var (
  59. GenCreateStmts = &Middleware{
  60. Id: "post",
  61. Type: "method",
  62. Fn: func(ctx *MiddlewareContext) error {
  63. var (
  64. project = ctx.Project
  65. method = ctx.Method
  66. dbName = project.GetEntityDB(method.Entity)
  67. collectionName = project.GetCollection(method.Entity)
  68. dependenceMethod = BASE_HAS_DEPENDE + method.Entity
  69. beforeSend = method.Hook("beforeSend")
  70. beforePersist = method.Hook("beforePersist")
  71. context = map[string]interface{}{
  72. "dbName": dbName,
  73. "collectionName": collectionName,
  74. "entity": method.Entity,
  75. "dependenceMethod": dependenceMethod,
  76. "beforePersist": beforePersist,
  77. "beforeSend": beforeSend,
  78. "methodName": strings.Title(method.ID),
  79. "preconditions": parseMethodActions(method.Preconditions),
  80. "beforeResponse": parseMethodActions(method.BeforeResponse),
  81. }
  82. )
  83. // Nome do metodo que verifica se a entidade tem dependencias
  84. out, _ := TemplateToString(createStmtsTmpl, context)
  85. ctx.Statement.Block(G.Id(out)).Line()
  86. return nil
  87. },
  88. }
  89. )
  90. // var (
  91. // project = ctx.Project
  92. // method = ctx.Method
  93. // responseEntity = GenericPart.ReplaceAllString(method.Response, "")
  94. // )
  95. // if responseEntity == "" {
  96. // panic("Modelo de resposta não definido")
  97. // }
  98. // ctx.Statement.Block(
  99. // // Declaracao das variaveis
  100. // G.Var().Defs(
  101. // // G.Id("err").Op("*").Qual(API_ERROR, "Error"),
  102. // G.Id("entity").Op("=").Id("New"+method.Entity).Call(),
  103. // ).Line(),
  104. // // Fazendo o parse do body
  105. // G.If(
  106. // G.Id("err").Op("=").Qual(API_URL, "ReadJson").Call(G.Id("ctx"), G.Id("entity")),
  107. // G.Id("err").Op("!=").Id("nil"),
  108. // ).Block(
  109. // // G.Id("api").Dot("Falha").Call(
  110. // // G.Id("ctx"),
  111. // // G.Id("api").Dot("ErrGeneral"),
  112. // // G.Id("err").Dot("Error").Call(),
  113. // // G.Nil(),
  114. // // ),
  115. // // G.Return(G.Id("err")),
  116. // G.Return(),
  117. // ).Line(),
  118. // G.Id("values").Op(":=").Id("ctx").Dot("Values()").Line(),
  119. // G.Do(func(part *G.Statement) {
  120. // entity := ctx.Project.GetSchema(method.Entity)
  121. // user := false
  122. // for _, prop := range entity.Properties {
  123. // if def, ok := prop.Autogenerate["create_action"]; ok {
  124. // switch def.Type {
  125. // case "user":
  126. // if !user {
  127. // part.Add(G.Id(`user := values.Get("$user.ref").(*UserReference)`).Line())
  128. // user = true
  129. // }
  130. // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Id("user").Line())
  131. // case "now":
  132. // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Qual("time", "Now").Call().Id(".Unix()").Line())
  133. // case "fn":
  134. // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Id(def.Args[0]).Call().Line())
  135. // default:
  136. // // fmt.Println("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@")
  137. // // spew.Dump(def)
  138. // // parts := strings.Split(def, "#")
  139. // // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Qual("time", "Now").Call().Id(".Unix()").Line())
  140. // }
  141. // }
  142. // }
  143. // }).Line(),
  144. // G.Do(func(s *G.Statement) {
  145. // entity := ctx.Project.EntityDesc(method.Entity)
  146. // if entity != nil && entity.HasMode {
  147. // s.Add(G.Id(`entity.SetMode("create")`))
  148. // }
  149. // }),
  150. // G.If(
  151. // G.Id("err").Op("=").Qual(API_URL, "Validate").Call(G.Id("entity")),
  152. // G.Id("err").Op("!=").Id("nil"),
  153. // ).Block(
  154. // // G.Return(G.Id("err")),
  155. // G.Return(),
  156. // ).Line(),
  157. // // Carrega o filtro do contexto para adicionar a entidade
  158. // G.Id("filter").Op(":=").Id("values").Dot("Get").Call(
  159. // G.Lit("$filter"),
  160. // ).Assert(G.Op("*").Qual(API_URL, "Filter")).Line(),
  161. // // Adiciona a entidade
  162. // G.Id("filter").Dot("DB").Op("=").Lit(ctx.Project.GetEntityDB(method.Entity)),
  163. // G.Id("filter").Dot("Collection").Op("=").Lit(ctx.Project.GetCollection(method.Entity)),
  164. // G.Id("filter").Dot("Entity").Op("=").Id("entity"),
  165. // generateHookCall(project, method, "beforePersist"),
  166. // // Inseri a entidade na coleção e verifica se a operação ocorreu com exito
  167. // G.If(
  168. // G.List(G.Id("_"), G.Id("err")).Op("=").Id("Models").Dot("InsertOne").Call(
  169. // G.Id("filter"),
  170. // ),
  171. // G.Id("err").Op("!=").Id("nil"),
  172. // ).Block(
  173. // // G.Id("api").Dot("Falha").Call(
  174. // // G.Id("ctx"),
  175. // // G.Id("api").Dot("ErrGeneral"),
  176. // // G.Id("err").Dot("Error").Call(),
  177. // // G.Nil(),
  178. // // ),
  179. // // bson.IsObjectIdHex(m.Id.Hex())
  180. // // G.Return(G.Id("err")),
  181. // G.Return(),
  182. // ),
  183. // // Envia a resposta pro usuario em caso de sucesso
  184. // // G.Line().Id("ctx").Dot("JSON").Call(G.Qual(APIC, "Map").Values(G.Dict{
  185. // // G.Lit("entity"): G.Id("entity"),
  186. // // })),
  187. // // G.Line().Id("resp").Dot("Entity").Op("=").Id("entity"),
  188. // // G.Line().Id("resp").Op("=").Id(responseEntity).Values(G.Dict{
  189. // // G.Id("Entity"): G.Id("entity"),
  190. // // }),
  191. // G.Line().Id("resp").Op("=").Id("entity"),
  192. // generateHookCall(project, method, "beforeSend"),
  193. // // G.Return(G.Nil()),
  194. // G.Return(),
  195. // )