123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- package got
- import (
- "strings"
- "text/template"
- . "git.eugeniocarvalho.dev/eugeniucarvalho/apicodegen/common"
- G "github.com/dave/jennifer/jen"
- )
- var (
- createStmtsTmpl *template.Template
- createStmtsErr error
- )
- func init() {
- createStmtsTmpl, createStmtsErr = ParseTemplate(`
- var (
- entity = models.New{{.entity}}()
- values = ctx.Values()
- )
- values.Set("entity", entity)
- {{if .entityAlias }} values.Set("{{.entityAlias}}", entity) {{end}}
- {{if .beforeRequestParse}}
- if _, err = executeAction(
- ctx,
- {{.beforeRequestParse}},
- ); err != nil {
- return
- }
- {{end}}
- if err = api.ReadJson(ctx, entity); err != nil {
- return
- }
- user := values.Get("$user.ref").(*models.UserReference)
- entity.CreatedBy = user
- entity.UpdatedBy = user
- entity.SetMode("create")
- if err = api.Validate(entity); err != nil {
- return
- }
- {{if .preconditions}}
- if _, err = executeAction(
- ctx,
- {{.preconditions}},
- ); err != nil {
- return
- }
- {{end}}
- filter := values.Get("$filter").(*api.Filter)
- filter.DB = "{{.dbName}}"
- filter.Collection = "{{.collectionName}}"
- filter.Entity = entity
-
- if _, err = models.Api.InsertOne(filter); err != nil {
- return
- }
-
- {{if .beforeResponse}}
- if resp, err = executeAction(
- ctx,
- {{.beforeResponse}},
- ); err != nil || resp != nil {
- return
- }
- {{end}}
-
- resp = entity
- return`)
- if createStmtsErr != nil {
- panic(createStmtsErr)
- }
- }
- var (
- GenCreateStmts = &Middleware{
- Id: "post",
- Type: "method",
- Fn: func(ctx *MiddlewareContext) error {
- var (
- project = ctx.Project
- method = ctx.Method
- dbName = project.GetEntityDB(method.Entity)
- collectionName = project.GetCollection(method.Entity)
- dependenceMethod = BASE_HAS_DEPENDE + method.Entity
- beforeSend = method.Hook("beforeSend")
- beforePersist = method.Hook("beforePersist")
- context = map[string]interface{}{
- "dbName": dbName,
- "collectionName": collectionName,
- "entity": method.Entity,
- "dependenceMethod": dependenceMethod,
- "beforePersist": beforePersist,
- "beforeSend": beforeSend,
- "methodName": strings.Title(method.ID),
- "preconditions": parseMethodActions(method.Preconditions),
- "beforeResponse": parseMethodActions(method.BeforeResponse),
- "beforeParseRequest": parseMethodActions(method.BeforeParseRequest),
- "entityAlias": getCustom(method.Custom, "go.entity.alias"),
- }
- )
- // Nome do metodo que verifica se a entidade tem dependencias
- out, _ := TemplateToString(createStmtsTmpl, context)
- ctx.Statement.Block(G.Id(out)).Line()
- return nil
- },
- }
- )
- // var (
- // project = ctx.Project
- // method = ctx.Method
- // responseEntity = GenericPart.ReplaceAllString(method.Response, "")
- // )
- // if responseEntity == "" {
- // panic("Modelo de resposta não definido")
- // }
- // ctx.Statement.Block(
- // // Declaracao das variaveis
- // G.Var().Defs(
- // // G.Id("err").Op("*").Qual(API_ERROR, "Error"),
- // G.Id("entity").Op("=").Id("New"+method.Entity).Call(),
- // ).Line(),
- // // Fazendo o parse do body
- // G.If(
- // G.Id("err").Op("=").Qual(API_URL, "ReadJson").Call(G.Id("ctx"), G.Id("entity")),
- // G.Id("err").Op("!=").Id("nil"),
- // ).Block(
- // // G.Id("api").Dot("Falha").Call(
- // // G.Id("ctx"),
- // // G.Id("api").Dot("ErrGeneral"),
- // // G.Id("err").Dot("Error").Call(),
- // // G.Nil(),
- // // ),
- // // G.Return(G.Id("err")),
- // G.Return(),
- // ).Line(),
- // G.Id("values").Op(":=").Id("ctx").Dot("Values()").Line(),
- // G.Do(func(part *G.Statement) {
- // entity := ctx.Project.GetSchema(method.Entity)
- // user := false
- // for _, prop := range entity.Properties {
- // if def, ok := prop.Autogenerate["create_action"]; ok {
- // switch def.Type {
- // case "user":
- // if !user {
- // part.Add(G.Id(`user := values.Get("$user.ref").(*UserReference)`).Line())
- // user = true
- // }
- // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Id("user").Line())
- // case "now":
- // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Qual("time", "Now").Call().Id(".Unix()").Line())
- // case "fn":
- // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Id(def.Args[0]).Call().Line())
- // default:
- // // fmt.Println("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@")
- // // spew.Dump(def)
- // // parts := strings.Split(def, "#")
- // // part.Add(G.Id("entity").Dot(strings.Title(prop.ID)).Op("=").Qual("time", "Now").Call().Id(".Unix()").Line())
- // }
- // }
- // }
- // }).Line(),
- // G.Do(func(s *G.Statement) {
- // entity := ctx.Project.EntityDesc(method.Entity)
- // if entity != nil && entity.HasMode {
- // s.Add(G.Id(`entity.SetMode("create")`))
- // }
- // }),
- // G.If(
- // G.Id("err").Op("=").Qual(API_URL, "Validate").Call(G.Id("entity")),
- // G.Id("err").Op("!=").Id("nil"),
- // ).Block(
- // // G.Return(G.Id("err")),
- // G.Return(),
- // ).Line(),
- // // Carrega o filtro do contexto para adicionar a entidade
- // G.Id("filter").Op(":=").Id("values").Dot("Get").Call(
- // G.Lit("$filter"),
- // ).Assert(G.Op("*").Qual(API_URL, "Filter")).Line(),
- // // Adiciona a entidade
- // G.Id("filter").Dot("DB").Op("=").Lit(ctx.Project.GetEntityDB(method.Entity)),
- // G.Id("filter").Dot("Collection").Op("=").Lit(ctx.Project.GetCollection(method.Entity)),
- // G.Id("filter").Dot("Entity").Op("=").Id("entity"),
- // generateHookCall(project, method, "beforePersist"),
- // // Inseri a entidade na coleção e verifica se a operação ocorreu com exito
- // G.If(
- // G.List(G.Id("_"), G.Id("err")).Op("=").Id("Models").Dot("InsertOne").Call(
- // G.Id("filter"),
- // ),
- // G.Id("err").Op("!=").Id("nil"),
- // ).Block(
- // // G.Id("api").Dot("Falha").Call(
- // // G.Id("ctx"),
- // // G.Id("api").Dot("ErrGeneral"),
- // // G.Id("err").Dot("Error").Call(),
- // // G.Nil(),
- // // ),
- // // bson.IsObjectIdHex(m.Id.Hex())
- // // G.Return(G.Id("err")),
- // G.Return(),
- // ),
- // // Envia a resposta pro usuario em caso de sucesso
- // // G.Line().Id("ctx").Dot("JSON").Call(G.Qual(APIC, "Map").Values(G.Dict{
- // // G.Lit("entity"): G.Id("entity"),
- // // })),
- // // G.Line().Id("resp").Dot("Entity").Op("=").Id("entity"),
- // // G.Line().Id("resp").Op("=").Id(responseEntity).Values(G.Dict{
- // // G.Id("Entity"): G.Id("entity"),
- // // }),
- // G.Line().Id("resp").Op("=").Id("entity"),
- // generateHookCall(project, method, "beforeSend"),
- // // G.Return(G.Nil()),
- // G.Return(),
- // )
|