middleware_post.go 6.2 KB

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