165 lines
3.9 KiB
Go
165 lines
3.9 KiB
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/go-ozzo/ozzo-validation"
|
|
|
|
"github.com/dhax/go-base/auth"
|
|
"github.com/go-chi/chi"
|
|
"github.com/go-chi/render"
|
|
)
|
|
|
|
// The list of error types returned from account resource.
|
|
var (
|
|
ErrAccountValidation = errors.New("account validation error")
|
|
)
|
|
|
|
// AccountStore defines database operations for account management.
|
|
type AccountStore interface {
|
|
List(f auth.AccountFilter) (*[]auth.Account, int, error)
|
|
Create(*auth.Account) error
|
|
Get(id int) (*auth.Account, error)
|
|
Update(*auth.Account) error
|
|
Delete(*auth.Account) error
|
|
}
|
|
|
|
// AccountResource implements account managment handler.
|
|
type AccountResource struct {
|
|
Store AccountStore
|
|
}
|
|
|
|
// NewAccountResource creates and returns an account resource.
|
|
func NewAccountResource(store AccountStore) *AccountResource {
|
|
return &AccountResource{
|
|
Store: store,
|
|
}
|
|
}
|
|
|
|
func (rs *AccountResource) router() *chi.Mux {
|
|
r := chi.NewRouter()
|
|
r.Get("/", rs.list)
|
|
r.Post("/", rs.create)
|
|
r.Route("/{accountID}", func(r chi.Router) {
|
|
r.Use(rs.accountCtx)
|
|
r.Get("/", rs.get)
|
|
r.Put("/", rs.update)
|
|
r.Delete("/", rs.delete)
|
|
})
|
|
return r
|
|
}
|
|
|
|
func (rs *AccountResource) accountCtx(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
id, err := strconv.Atoi(chi.URLParam(r, "accountID"))
|
|
if err != nil {
|
|
render.Render(w, r, ErrBadRequest)
|
|
return
|
|
}
|
|
account, err := rs.Store.Get(id)
|
|
if err != nil {
|
|
render.Render(w, r, ErrNotFound)
|
|
return
|
|
}
|
|
ctx := context.WithValue(r.Context(), ctxAccount, account)
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
})
|
|
}
|
|
|
|
type accountRequest struct {
|
|
*auth.Account
|
|
}
|
|
|
|
func (d *accountRequest) Bind(r *http.Request) error {
|
|
return nil
|
|
}
|
|
|
|
type accountResponse struct {
|
|
*auth.Account
|
|
}
|
|
|
|
func newAccountResponse(a *auth.Account) *accountResponse {
|
|
resp := &accountResponse{Account: a}
|
|
return resp
|
|
}
|
|
|
|
type accountListResponse struct {
|
|
Accounts *[]auth.Account `json:"accounts"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
func newAccountListResponse(a *[]auth.Account, count int) *accountListResponse {
|
|
resp := &accountListResponse{
|
|
Accounts: a,
|
|
Count: count,
|
|
}
|
|
return resp
|
|
}
|
|
|
|
func (rs *AccountResource) list(w http.ResponseWriter, r *http.Request) {
|
|
f := auth.NewAccountFilter(r.URL.Query())
|
|
al, count, err := rs.Store.List(f)
|
|
if err != nil {
|
|
render.Render(w, r, ErrRender(err))
|
|
return
|
|
}
|
|
render.Respond(w, r, newAccountListResponse(al, count))
|
|
}
|
|
|
|
func (rs *AccountResource) create(w http.ResponseWriter, r *http.Request) {
|
|
data := &accountRequest{}
|
|
if err := render.Bind(r, data); err != nil {
|
|
render.Render(w, r, ErrInvalidRequest(err))
|
|
return
|
|
}
|
|
|
|
acc := data.Account
|
|
if err := rs.Store.Create(acc); err != nil {
|
|
switch err.(type) {
|
|
case validation.Errors:
|
|
render.Render(w, r, ErrValidation(ErrAccountValidation, err))
|
|
return
|
|
}
|
|
render.Render(w, r, ErrInvalidRequest(err))
|
|
return
|
|
}
|
|
render.Respond(w, r, newAccountResponse(acc))
|
|
}
|
|
|
|
func (rs *AccountResource) get(w http.ResponseWriter, r *http.Request) {
|
|
acc := r.Context().Value(ctxAccount).(*auth.Account)
|
|
render.Respond(w, r, newAccountResponse(acc))
|
|
}
|
|
|
|
func (rs *AccountResource) update(w http.ResponseWriter, r *http.Request) {
|
|
acc := r.Context().Value(ctxAccount).(*auth.Account)
|
|
data := &accountRequest{Account: acc}
|
|
if err := render.Bind(r, data); err != nil {
|
|
render.Render(w, r, ErrInvalidRequest(err))
|
|
return
|
|
}
|
|
|
|
if err := rs.Store.Update(data.Account); err != nil {
|
|
switch err.(type) {
|
|
case validation.Errors:
|
|
render.Render(w, r, ErrValidation(ErrAccountValidation, err))
|
|
return
|
|
}
|
|
render.Render(w, r, ErrInvalidRequest(err))
|
|
return
|
|
}
|
|
|
|
render.Respond(w, r, newAccountResponse(acc))
|
|
}
|
|
|
|
func (rs *AccountResource) delete(w http.ResponseWriter, r *http.Request) {
|
|
acc := r.Context().Value(ctxAccount).(*auth.Account)
|
|
if err := rs.Store.Delete(acc); err != nil {
|
|
render.Render(w, r, ErrInvalidRequest(err))
|
|
return
|
|
}
|
|
render.Respond(w, r, http.NoBody)
|
|
}
|