middleware_post.go 6.4 KB

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