Documentation ¶
Index ¶
- Constants
- Variables
- func ParseCookies(s string) []*http.Cookie
- type CertificateManager
- type Client
- type Context
- func (ctx *Context) ActiveTransaction() *dbx.Trx
- func (ctx *Context) AddAuthCookie(user *models.User) (string, error)
- func (ctx *Context) AddCookie(name, value string, expires time.Time)
- func (ctx *Context) AddParam(name, value string)
- func (ctx *Context) Attachment(fileName, contentType string, file []byte) error
- func (ctx *Context) AuthEndpoint() string
- func (ctx *Context) BadRequest(dict Map) error
- func (ctx *Context) BaseURL() string
- func (ctx *Context) BindTo(i actions.Actionable) *validate.Result
- func (ctx *Context) Blob(code int, contentType string, b []byte) error
- func (ctx *Context) Commit() error
- func (ctx *Context) ContextID() string
- func (ctx *Context) Engine() *Engine
- func (ctx *Context) Enqueue(task worker.Task)
- func (ctx *Context) Failure(err error) error
- func (ctx *Context) Get(key string) interface{}
- func (ctx *Context) GlobalAssetsURL(path string, a ...interface{}) string
- func (ctx *Context) Gone() error
- func (ctx *Context) HandleValidation(result *validate.Result) error
- func (ctx *Context) IsAjax() bool
- func (ctx *Context) IsAuthenticated() bool
- func (ctx *Context) JSON(code int, i interface{}) error
- func (ctx *Context) Logger() log.Logger
- func (ctx *Context) NoContent(code int) error
- func (ctx *Context) NotFound() error
- func (ctx *Context) Ok(data interface{}) error
- func (ctx *Context) Page(props Props) error
- func (ctx *Context) Param(name string) string
- func (ctx *Context) ParamAsInt(name string) (int, error)
- func (ctx *Context) QueryParam(key string) string
- func (ctx *Context) QueryParamAsArray(key string) []string
- func (ctx *Context) Redirect(url string) error
- func (ctx *Context) RemoveCookie(name string)
- func (ctx *Context) Render(code int, template string, props Props) error
- func (ctx *Context) Rollback() error
- func (ctx *Context) Services() *app.Services
- func (ctx *Context) Set(key string, val interface{})
- func (ctx *Context) SetActiveTransaction(trx *dbx.Trx)
- func (ctx *Context) SetServices(services *app.Services)
- func (ctx *Context) SetTenant(tenant *models.Tenant)
- func (ctx *Context) SetUser(user *models.User)
- func (ctx *Context) String(code int, text string) error
- func (ctx *Context) Tenant() *models.Tenant
- func (ctx *Context) TenantAssetsURL(path string, a ...interface{}) string
- func (ctx *Context) TenantBaseURL(tenant *models.Tenant) string
- func (ctx *Context) Unauthorized() error
- func (ctx *Context) User() *models.User
- type DefaultBinder
- type Engine
- func (e *Engine) Database() *dbx.Database
- func (e *Engine) Group() *Group
- func (e *Engine) Logger() log.Logger
- func (e *Engine) NewContext(res http.ResponseWriter, req *http.Request, params StringMap) Context
- func (e *Engine) Start(address string)
- func (e *Engine) Stop() error
- func (e *Engine) Use(middleware MiddlewareFunc)
- func (e *Engine) Worker() worker.Worker
- type Group
- type HTTPClient
- type HandlerFunc
- type Map
- type MiddlewareFunc
- type Props
- type Renderer
- type Request
- type StringMap
Constants ¶
const CookieAuthName = "auth"
CookieAuthName is the name of the authentication cookie
Variables ¶
var ( PlainContentType = "text/plain" HTMLContentType = "text/html" JSONContentType = "application/json" UTF8PlainContentType = PlainContentType + "; charset=utf-8" UTF8HTMLContentType = HTMLContentType + "; charset=utf-8" UTF8JSONContentType = JSONContentType + "; charset=utf-8" )
HTMLMimeType is the mimetype for HTML responses
var ( //CspPolicyTemplate is the template used to generate the policy CspPolicyTemplate = fmt.Sprintf("%s; %s; %s; %s; %s; %s; %s; %s; %s", cspBase, cspDefault, cspStyle, cspScript, cspImage, cspFont, cspObject, cspMedia, cspConnect) )
var ( //ErrContentTypeNotAllowed is used when POSTing a body that is not json ErrContentTypeNotAllowed = stdErrors.New("Only Content-Type application/json is allowed") )
Functions ¶
func ParseCookies ¶ added in v0.14.0
ParseCookies return a list of cookie parsed from raw Set-Cookie
Types ¶
type CertificateManager ¶ added in v0.7.0
type CertificateManager struct {
// contains filtered or unexported fields
}
CertificateManager is used to manage SSL certificates
func NewCertificateManager ¶ added in v0.7.0
func NewCertificateManager(certFile, keyFile, cacheDir string) (*CertificateManager, error)
NewCertificateManager creates a new CertificateManager
func (*CertificateManager) GetCertificate ¶ added in v0.7.0
func (m *CertificateManager) GetCertificate(hello *tls.ClientHelloInfo) (*tls.Certificate, error)
GetCertificate decides which certificate to use It first tries to use loaded certificate for incoming request if it's compatible Otherwise fallsback to a automatically generated certificate by Let's Encrypt
func (*CertificateManager) StartHTTPServer ¶ added in v0.9.0
func (m *CertificateManager) StartHTTPServer()
StartHTTPServer creates a new HTTP server on port 80 that is used for the ACME HTTP Challenge
type Context ¶
type Context struct { Response http.ResponseWriter Request Request // contains filtered or unexported fields }
Context shared between http pipeline
func (*Context) ActiveTransaction ¶
ActiveTransaction returns current active Database transaction
func (*Context) AddAuthCookie ¶ added in v0.6.0
AddAuthCookie generates and adds a cookie
func (*Context) Attachment ¶ added in v0.12.0
Attachment returns an attached file
func (*Context) BadRequest ¶
BadRequest returns 400 BadRequest with JSON result
func (*Context) BindTo ¶ added in v0.4.0
func (ctx *Context) BindTo(i actions.Actionable) *validate.Result
BindTo context values into given model
func (*Context) Blob ¶ added in v0.7.0
Blob sends a blob response with status code and content type.
func (*Context) GlobalAssetsURL ¶ added in v0.14.0
GlobalAssetsURL return the full URL to a globally shared static asset
func (*Context) HandleValidation ¶ added in v0.4.0
HandleValidation handles given validation result property to return 400 or 500
func (*Context) IsAuthenticated ¶
IsAuthenticated returns true if user is authenticated
func (*Context) NoContent ¶ added in v0.7.0
NoContent sends a response with no body and a status code.
func (*Context) ParamAsInt ¶
ParamAsInt returns parameter as int
func (*Context) QueryParam ¶ added in v0.7.0
QueryParam returns querystring parameter for given key
func (*Context) QueryParamAsArray ¶ added in v0.10.0
QueryParamAsArray returns querystring parameter for given key as an array
func (*Context) RemoveCookie ¶ added in v0.6.0
RemoveCookie removes a cookie
func (*Context) Render ¶ added in v0.7.0
Render renders a template with data and sends a text/html response with status
func (*Context) SetActiveTransaction ¶
SetActiveTransaction adds transaction to context
func (*Context) SetServices ¶
SetServices update current context with app.Services
func (*Context) TenantAssetsURL ¶ added in v0.14.0
TenantAssetsURL return the full URL to a tenant-specific static asset
func (*Context) TenantBaseURL ¶ added in v0.6.0
TenantBaseURL returns base URL for a given tenant
func (*Context) Unauthorized ¶ added in v0.4.0
Unauthorized returns a 403 response
type DefaultBinder ¶ added in v0.7.0
type DefaultBinder struct { }
DefaultBinder is the default HTTP binder
func NewDefaultBinder ¶ added in v0.7.0
func NewDefaultBinder() *DefaultBinder
NewDefaultBinder creates a new default binder
func (*DefaultBinder) Bind ¶ added in v0.7.0
func (b *DefaultBinder) Bind(target interface{}, c *Context) error
Bind request data to object i
type Engine ¶
type Engine struct {
// contains filtered or unexported fields
}
Engine is our web engine wrapper
func (*Engine) NewContext ¶
NewContext creates and return a new context
func (*Engine) Use ¶
func (e *Engine) Use(middleware MiddlewareFunc)
Use adds a middleware to the root engine
type Group ¶
type Group struct {
// contains filtered or unexported fields
}
Group is our router group wrapper
func (*Group) Delete ¶ added in v0.8.0
func (g *Group) Delete(path string, handler HandlerFunc)
Delete handles HTTP DELETE requests
func (*Group) Get ¶
func (g *Group) Get(path string, handler HandlerFunc)
Get handles HTTP GET requests
func (*Group) Post ¶
func (g *Group) Post(path string, handler HandlerFunc)
Post handles HTTP POST requests
func (*Group) Use ¶
func (g *Group) Use(middleware MiddlewareFunc)
Use adds a middleware to current route stack
type HTTPClient ¶ added in v0.14.0
type HTTPClient struct { }
HTTPClient is an implementation of HTTP Client
func NewHTTPClient ¶ added in v0.14.0
func NewHTTPClient() *HTTPClient
NewHTTPClient creates a new HTTPClient
type Map ¶ added in v0.4.0
type Map map[string]interface{}
Map defines a generic map of type `map[string]interface{}`
type MiddlewareFunc ¶
type MiddlewareFunc func(HandlerFunc) HandlerFunc
MiddlewareFunc represents an HTTP middleware
type Renderer ¶ added in v0.7.0
type Renderer struct {
// contains filtered or unexported fields
}
Renderer is the default HTML Render
func NewRenderer ¶ added in v0.7.0
func NewRenderer(settings *models.SystemSettings, logger log.Logger) *Renderer
NewRenderer creates a new Renderer
type Request ¶ added in v0.14.0
type Request struct { Method string ContentLength int64 Body string URL *url.URL // contains filtered or unexported fields }
Request wraps the http request object
func WrapRequest ¶ added in v0.14.0
WrapRequest returns Fider wrapper of HTTP Request