3
0
corteza/compose/rest/request/namespace.go
Denis Arh 5bfbab6a4e Implement namespace CRUD + various small fixes
Other fixes and improvements:
 - add parseISODateWithErr and parseISODatePtrWithErr handlers for incoming data
 - add service & repository errors
 - cleanup old (unbound) attachment controllers from router
 - fix system repository error prefix (auth => system)
2019-04-29 18:51:18 +02:00

312 lines
6.3 KiB
Go

package request
/*
Hello! This file is auto-generated from `docs/src/spec.json`.
For development:
In order to update the generated files, edit this file under the location,
add your struct fields, imports, API definitions and whatever you want, and:
1. run [spec](https://github.com/titpetric/spec) in the same folder,
2. run `./_gen.php` in this folder.
You may edit `namespace.go`, `namespace.util.go` or `namespace_test.go` to
implement your API calls, helper functions and tests. The file `namespace.go`
is only generated the first time, and will not be overwritten if it exists.
*/
import (
"io"
"strings"
"encoding/json"
"mime/multipart"
"net/http"
"github.com/go-chi/chi"
"github.com/pkg/errors"
sqlxTypes "github.com/jmoiron/sqlx/types"
"time"
)
var _ = chi.URLParam
var _ = multipart.FileHeader{}
// Namespace list request parameters
type NamespaceList struct {
Query string
Page uint
PerPage uint
}
func NewNamespaceList() *NamespaceList {
return &NamespaceList{}
}
func (nReq *NamespaceList) Fill(r *http.Request) (err error) {
if strings.ToLower(r.Header.Get("content-type")) == "application/json" {
err = json.NewDecoder(r.Body).Decode(nReq)
switch {
case err == io.EOF:
err = nil
case err != nil:
return errors.Wrap(err, "error parsing http request body")
}
}
if err = r.ParseForm(); err != nil {
return err
}
get := map[string]string{}
post := map[string]string{}
urlQuery := r.URL.Query()
for name, param := range urlQuery {
get[name] = string(param[0])
}
postVars := r.Form
for name, param := range postVars {
post[name] = string(param[0])
}
if val, ok := get["query"]; ok {
nReq.Query = val
}
if val, ok := get["page"]; ok {
nReq.Page = parseUint(val)
}
if val, ok := get["perPage"]; ok {
nReq.PerPage = parseUint(val)
}
return err
}
var _ RequestFiller = NewNamespaceList()
// Namespace create request parameters
type NamespaceCreate struct {
Name string
Slug string
Enabled bool
Meta sqlxTypes.JSONText
}
func NewNamespaceCreate() *NamespaceCreate {
return &NamespaceCreate{}
}
func (nReq *NamespaceCreate) Fill(r *http.Request) (err error) {
if strings.ToLower(r.Header.Get("content-type")) == "application/json" {
err = json.NewDecoder(r.Body).Decode(nReq)
switch {
case err == io.EOF:
err = nil
case err != nil:
return errors.Wrap(err, "error parsing http request body")
}
}
if err = r.ParseForm(); err != nil {
return err
}
get := map[string]string{}
post := map[string]string{}
urlQuery := r.URL.Query()
for name, param := range urlQuery {
get[name] = string(param[0])
}
postVars := r.Form
for name, param := range postVars {
post[name] = string(param[0])
}
if val, ok := post["name"]; ok {
nReq.Name = val
}
if val, ok := post["slug"]; ok {
nReq.Slug = val
}
if val, ok := post["enabled"]; ok {
nReq.Enabled = parseBool(val)
}
if val, ok := post["meta"]; ok {
if nReq.Meta, err = parseJSONTextWithErr(val); err != nil {
return err
}
}
return err
}
var _ RequestFiller = NewNamespaceCreate()
// Namespace read request parameters
type NamespaceRead struct {
NamespaceID uint64 `json:",string"`
}
func NewNamespaceRead() *NamespaceRead {
return &NamespaceRead{}
}
func (nReq *NamespaceRead) Fill(r *http.Request) (err error) {
if strings.ToLower(r.Header.Get("content-type")) == "application/json" {
err = json.NewDecoder(r.Body).Decode(nReq)
switch {
case err == io.EOF:
err = nil
case err != nil:
return errors.Wrap(err, "error parsing http request body")
}
}
if err = r.ParseForm(); err != nil {
return err
}
get := map[string]string{}
post := map[string]string{}
urlQuery := r.URL.Query()
for name, param := range urlQuery {
get[name] = string(param[0])
}
postVars := r.Form
for name, param := range postVars {
post[name] = string(param[0])
}
nReq.NamespaceID = parseUInt64(chi.URLParam(r, "namespaceID"))
return err
}
var _ RequestFiller = NewNamespaceRead()
// Namespace update request parameters
type NamespaceUpdate struct {
NamespaceID uint64 `json:",string"`
Name string
Slug string
Enabled bool
Meta sqlxTypes.JSONText
UpdatedAt *time.Time
}
func NewNamespaceUpdate() *NamespaceUpdate {
return &NamespaceUpdate{}
}
func (nReq *NamespaceUpdate) Fill(r *http.Request) (err error) {
if strings.ToLower(r.Header.Get("content-type")) == "application/json" {
err = json.NewDecoder(r.Body).Decode(nReq)
switch {
case err == io.EOF:
err = nil
case err != nil:
return errors.Wrap(err, "error parsing http request body")
}
}
if err = r.ParseForm(); err != nil {
return err
}
get := map[string]string{}
post := map[string]string{}
urlQuery := r.URL.Query()
for name, param := range urlQuery {
get[name] = string(param[0])
}
postVars := r.Form
for name, param := range postVars {
post[name] = string(param[0])
}
nReq.NamespaceID = parseUInt64(chi.URLParam(r, "namespaceID"))
if val, ok := post["name"]; ok {
nReq.Name = val
}
if val, ok := post["slug"]; ok {
nReq.Slug = val
}
if val, ok := post["enabled"]; ok {
nReq.Enabled = parseBool(val)
}
if val, ok := post["meta"]; ok {
if nReq.Meta, err = parseJSONTextWithErr(val); err != nil {
return err
}
}
if val, ok := post["updatedAt"]; ok {
if nReq.UpdatedAt, err = parseISODatePtrWithErr(val); err != nil {
return err
}
}
return err
}
var _ RequestFiller = NewNamespaceUpdate()
// Namespace delete request parameters
type NamespaceDelete struct {
NamespaceID uint64 `json:",string"`
}
func NewNamespaceDelete() *NamespaceDelete {
return &NamespaceDelete{}
}
func (nReq *NamespaceDelete) Fill(r *http.Request) (err error) {
if strings.ToLower(r.Header.Get("content-type")) == "application/json" {
err = json.NewDecoder(r.Body).Decode(nReq)
switch {
case err == io.EOF:
err = nil
case err != nil:
return errors.Wrap(err, "error parsing http request body")
}
}
if err = r.ParseForm(); err != nil {
return err
}
get := map[string]string{}
post := map[string]string{}
urlQuery := r.URL.Query()
for name, param := range urlQuery {
get[name] = string(param[0])
}
postVars := r.Form
for name, param := range postVars {
post[name] = string(param[0])
}
nReq.NamespaceID = parseUInt64(chi.URLParam(r, "namespaceID"))
return err
}
var _ RequestFiller = NewNamespaceDelete()