Go-Back-Skeleton/api/app/api.go
2021-09-08 23:45:06 +02:00

55 lines
1 KiB
Go

// Package app ties together application resources and handlers.
package app
import (
"net/http"
"github.com/go-chi/chi/v5"
"github.com/go-pg/pg"
"github.com/sirupsen/logrus"
"github.com/dhax/go-base/database"
"github.com/dhax/go-base/logging"
)
type ctxKey int
const (
ctxAccount ctxKey = iota
ctxProfile
)
// API provides application resources and handlers.
type API struct {
Account *AccountResource
Profile *ProfileResource
}
// NewAPI configures and returns application API.
func NewAPI(db *pg.DB) (*API, error) {
accountStore := database.NewAccountStore(db)
account := NewAccountResource(accountStore)
profileStore := database.NewProfileStore(db)
profile := NewProfileResource(profileStore)
api := &API{
Account: account,
Profile: profile,
}
return api, nil
}
// Router provides application routes.
func (a *API) Router() *chi.Mux {
r := chi.NewRouter()
r.Mount("/account", a.Account.router())
r.Mount("/profile", a.Profile.router())
return r
}
func log(r *http.Request) logrus.FieldLogger {
return logging.GetLogEntry(r)
}