Documentation ¶
Index ¶
- Constants
- Variables
- func AddGlobalViewParam(key string, value interface{})
- func All(path string, handlers ...func(request *Request))
- func Connect(path string, handlers ...func(request *Request)) fiber.Router
- func CustomError(code int, path string) error
- func Delete(path string, handlers ...func(request *Request)) fiber.Router
- func Dump(v interface{})
- func Get(path string, handlers ...func(request *Request)) fiber.Router
- func GetDBO() *gorm.DB
- func GetFiber() *fiber.App
- func GetRegisteredApps() map[string]interface{}
- func GetView(prefix, name string) (*jet.Template, error)
- func Group(path string, handlers ...func(request *Request)) group
- func GuessAsset(app App) string
- func GuessPath(file string) string
- func Head(path string, handlers ...func(request *Request)) fiber.Router
- func InitUserModel(database *gorm.DB, config interface{})
- func NewDoc(app App)
- func Options(path string, handlers ...func(request *Request)) fiber.Router
- func Pack(path string)
- func ParseArg(dest interface{})
- func ParseConfig(path string, key string, out interface{}) error
- func Patch(path string, handlers ...func(request *Request)) fiber.Router
- func Post(path string, handlers ...func(request *Request)) fiber.Router
- func Put(path string, handlers ...func(request *Request)) fiber.Router
- func Register(app App)
- func RegisterView(prefix, path string, safeWriter ...jet.SafeWriter) *jet.Set
- func RegisterViewFunction(name string, fn func(arguments jet.Arguments) reflect.Value)
- func Repr(v interface{}) string
- func Run()
- func SetCacheInterface(c cacheInterface)
- func SetUserInterface(p UserInterface)
- func Setup()
- func Shutdown() error
- func Static(prefix, path string)
- func Trace(path string, handlers ...func(request *Request)) fiber.Router
- func Use(path string, handler func(*Request) error) fiber.Router
- func Value(s string, params ...string) value
- type App
- type Configuration
- type Cookie
- type DocAPI
- type DocApp
- type DocModel
- type Error
- type LocalUserImplementation
- func (p LocalUserImplementation) AfterFind(u *User) error
- func (u LocalUserImplementation) FromRequest(r *Request)
- func (p LocalUserImplementation) HasPerm(u *User, v string) bool
- func (p LocalUserImplementation) HasRole(u *User, v interface{}) bool
- func (p LocalUserImplementation) Image(u *User) string
- func (p LocalUserImplementation) Save(u *User) error
- func (p LocalUserImplementation) SetGroup(u *User, group interface{}) error
- func (p LocalUserImplementation) SetPassword(u *User, password string) error
- func (p LocalUserImplementation) SyncPermissions(app string, perms Permissions)
- type Model
- type Permission
- type Permissions
- type Request
- func (r *Request) Accepts(offers ...string) (offer string)
- func (r *Request) AcceptsCharsets(offers ...string) (offer string)
- func (r *Request) AcceptsEncodings(offers ...string) (offer string)
- func (r *Request) AcceptsLanguages(offers ...string) (offer string)
- func (r *Request) Append(field string, values ...string)
- func (r *Request) Attachment(name ...string)
- func (r *Request) BaseURL() string
- func (r *Request) Body() string
- func (r *Request) BodyParser(out interface{}) error
- func (r *Request) Cached(duration time.Duration, key ...string) bool
- func (r *Request) ClearCookie(key ...string)
- func (r *Request) ContentType() string
- func (r *Request) Cookie(cookie *Cookie)
- func (r *Request) Cookies(key string) (value string)
- func (r *Request) Download(file string, name ...string)
- func (r *Request) Flash(params ...string)
- func (r *Request) FormFile(key string) (*multipart.FileHeader, error)
- func (r *Request) FormValue(key string) (value string)
- func (r *Request) FormValueI(key string, params ...string) value
- func (r *Request) Format(body interface{})
- func (r *Request) Fresh() bool
- func (r *Request) Get(key string) string
- func (r *Request) GetBrowser() *uasurfer.UserAgent
- func (r Request) GetFlashes() []flash
- func (r *Request) GetI(key string, params ...string) value
- func (r *Request) HasError() bool
- func (r *Request) Header(key string) string
- func (r *Request) Headers(key string) map[string]string
- func (r *Request) Hostname() string
- func (r *Request) IP() string
- func (r *Request) IPs() []string
- func (r *Request) Is(extension string) (match bool)
- func (r *Request) JSON(data interface{}) error
- func (r *Request) JSONP(json interface{}, callback ...string) error
- func (r *Request) Links(link ...string)
- func (r *Request) Locals(key string, value ...interface{}) (val interface{})
- func (r *Request) Location(path string)
- func (r *Request) Method(override ...string) string
- func (r *Request) MultipartForm() (*multipart.Form, error)
- func (r *Request) Next() error
- func (r *Request) OriginalURL() string
- func (r *Request) Params(key string) string
- func (r *Request) ParamsI(key string, params ...string) value
- func (r *Request) Path(override ...string) string
- func (r *Request) Persist()
- func (r *Request) Protocol() string
- func (r *Request) Query(key string) (value string)
- func (r *Request) QueryI(key string, params ...string) value
- func (r *Request) Redirect(path string, status ...int)
- func (r *Request) Render(file string, bind interface{}) error
- func (r *Request) RenderView(input interface{}, views ...string) *bytes.Buffer
- func (r *Request) SaveFile(fileheader *multipart.FileHeader, path string) error
- func (r *Request) Secure() bool
- func (r *Request) Send(body string)
- func (r *Request) SendBytes(body []byte)
- func (r *Request) SendFile(file string, noCompression ...bool)
- func (r *Request) SendHTML(body interface{})
- func (r *Request) SendStatus(status int)
- func (r *Request) SendString(body string)
- func (r *Request) Set(key string, val string)
- func (r *Request) SetCookie(key string, val interface{}, params ...interface{})
- func (r *Request) SetError(err interface{})
- func (r *Request) SetHeader(key, val string)
- func (r *Request) Stale() bool
- func (r *Request) Status(status int) *Request
- func (r *Request) Subdomains(offset ...int) []string
- func (r *Request) Throw(e *e.Error)
- func (r *Request) Type(ext string) *Request
- func (r *Request) URL() *URL
- func (r *Request) Unauthorized() bool
- func (r *Request) UserAgent() string
- func (r *Request) Var(key string, value interface{})
- func (r *Request) Vary(fields ...string)
- func (r *Request) View(data interface{}, views ...string)
- func (r *Request) Write(body interface{})
- func (r *Request) WriteResponse(resp ...interface{})
- func (r *Request) XHR() bool
- type Response
- type Role
- type RolePermission
- type URL
- type User
- func (u *User) AfterFind(tx *gorm.DB) (err error)
- func (u *User) FromRequest(r *Request)
- func (u *User) HasPerm(v string) bool
- func (u *User) HasRole(v interface{}) bool
- func (u *User) Image() string
- func (u *User) ParseParams(out interface{}) error
- func (u *User) Save() error
- func (u *User) SetGroup(group interface{}) error
- func (u *User) SetPassword(password string) error
- type UserGroup
- type UserInterface
Constants ¶
const ( MethodGet = "GET" // RFC 7231, 4.3.1 MethodHead = "HEAD" // RFC 7231, 4.3.2 MethodPost = "POST" // RFC 7231, 4.3.3 MethodPut = "PUT" // RFC 7231, 4.3.4 MethodPatch = "PATCH" // RFC 5789 MethodDelete = "DELETE" // RFC 7231, 4.3.5 MethodConnect = "CONNECT" // RFC 7231, 4.3.6 MethodOptions = "OPTIONS" // RFC 7231, 4.3.7 MethodTrace = "TRACE" // RFC 7231, 4.3.8 )
HTTP methods were copied from net/http.
const ( MIMETextXML = "text/xml" MIMETextHTML = "text/html" MIMETextPlain = "text/plain" MIMEApplicationXML = "application/xml" MIMEApplicationJSON = "application/json" MIMEApplicationJavaScript = "application/javascript" MIMEApplicationForm = "application/x-www-form-urlencoded" MIMEOctetStream = "application/octet-stream" MIMEMultipartForm = "multipart/form-data" MIMETextXMLCharsetUTF8 = "text/xml; charset=utf-8" MIMETextHTMLCharsetUTF8 = "text/html; charset=utf-8" MIMETextPlainCharsetUTF8 = "text/plain; charset=utf-8" MIMEApplicationXMLCharsetUTF8 = "application/xml; charset=utf-8" MIMEApplicationJSONCharsetUTF8 = "application/json; charset=utf-8" MIMEApplicationJavaScriptCharsetUTF8 = "application/javascript; charset=utf-8" )
MIME types that are commonly used
const ( StatusContinue = 100 // RFC 7231, 6.2.1 StatusSwitchingProtocols = 101 // RFC 7231, 6.2.2 StatusProcessing = 102 // RFC 2518, 10.1 StatusEarlyHints = 103 // RFC 8297 StatusOK = 200 // RFC 7231, 6.3.1 StatusCreated = 201 // RFC 7231, 6.3.2 StatusAccepted = 202 // RFC 7231, 6.3.3 StatusNonAuthoritativeInformation = 203 // RFC 7231, 6.3.4 StatusNoContent = 204 // RFC 7231, 6.3.5 StatusResetContent = 205 // RFC 7231, 6.3.6 StatusPartialContent = 206 // RFC 7233, 4.1 StatusMultiStatus = 207 // RFC 4918, 11.1 StatusAlreadyReported = 208 // RFC 5842, 7.1 StatusIMUsed = 226 // RFC 3229, 10.4.1 StatusMultipleChoices = 300 // RFC 7231, 6.4.1 StatusMovedPermanently = 301 // RFC 7231, 6.4.2 StatusFound = 302 // RFC 7231, 6.4.3 StatusSeeOther = 303 // RFC 7231, 6.4.4 StatusNotModified = 304 // RFC 7232, 4.1 StatusUseProxy = 305 // RFC 7231, 6.4.5 StatusTemporaryRedirect = 307 // RFC 7231, 6.4.7 StatusPermanentRedirect = 308 // RFC 7538, 3 StatusBadRequest = 400 // RFC 7231, 6.5.1 StatusPaymentRequired = 402 // RFC 7231, 6.5.2 StatusForbidden = 403 // RFC 7231, 6.5.3 StatusNotFound = 404 // RFC 7231, 6.5.4 StatusMethodNotAllowed = 405 // RFC 7231, 6.5.5 StatusNotAcceptable = 406 // RFC 7231, 6.5.6 StatusProxyAuthRequired = 407 // RFC 7235, 3.2 StatusRequestTimeout = 408 // RFC 7231, 6.5.7 StatusConflict = 409 // RFC 7231, 6.5.8 StatusGone = 410 // RFC 7231, 6.5.9 StatusLengthRequired = 411 // RFC 7231, 6.5.10 StatusPreconditionFailed = 412 // RFC 7232, 4.2 StatusRequestEntityTooLarge = 413 // RFC 7231, 6.5.11 StatusRequestURITooLong = 414 // RFC 7231, 6.5.12 StatusUnsupportedMediaType = 415 // RFC 7231, 6.5.13 StatusRequestedRangeNotSatisfiable = 416 // RFC 7233, 4.4 StatusExpectationFailed = 417 // RFC 7231, 6.5.14 StatusTeapot = 418 // RFC 7168, 2.3.3 StatusMisdirectedRequest = 421 // RFC 7540, 9.1.2 StatusUnprocessableEntity = 422 // RFC 4918, 11.2 StatusLocked = 423 // RFC 4918, 11.3 StatusFailedDependency = 424 // RFC 4918, 11.4 StatusTooEarly = 425 // RFC 8470, 5.2. StatusUpgradeRequired = 426 // RFC 7231, 6.5.15 StatusPreconditionRequired = 428 // RFC 6585, 3 StatusTooManyRequests = 429 // RFC 6585, 4 StatusRequestHeaderFieldsTooLarge = 431 // RFC 6585, 5 StatusInternalServerError = 500 // RFC 7231, 6.6.1 StatusNotImplemented = 501 // RFC 7231, 6.6.2 StatusBadGateway = 502 // RFC 7231, 6.6.3 StatusGatewayTimeout = 504 // RFC 7231, 6.6.5 StatusHTTPVersionNotSupported = 505 // RFC 7231, 6.6.6 StatusVariantAlsoNegotiates = 506 // RFC 2295, 8.1 StatusInsufficientStorage = 507 // RFC 4918, 11.5 StatusLoopDetected = 508 // RFC 5842, 7.2 StatusNotExtended = 510 // RFC 2774, 7 StatusNetworkAuthenticationRequired = 511 // RFC 6585, 6 )
HTTP status codes were copied from net/http.
const ( HeaderAuthorization = "Authorization" HeaderProxyAuthenticate = "Proxy-Authenticate" HeaderProxyAuthorization = "Proxy-Authorization" HeaderWWWAuthenticate = "WWW-Authenticate" HeaderAge = "Age" HeaderCacheControl = "Cache-Control" HeaderClearSiteData = "Clear-Site-Data" HeaderExpires = "Expires" HeaderPragma = "Pragma" HeaderWarning = "Warning" HeaderAcceptCH = "Accept-CH" HeaderAcceptCHLifetime = "Accept-CH-Lifetime" HeaderContentDPR = "Content-DPR" HeaderDPR = "DPR" HeaderEarlyData = "Early-Data" HeaderSaveData = "Save-Data" HeaderViewportWidth = "Viewport-Width" HeaderWidth = "Width" HeaderETag = "ETag" HeaderIfMatch = "If-Match" HeaderIfModifiedSince = "If-Modified-Since" HeaderIfNoneMatch = "If-None-Match" HeaderIfUnmodifiedSince = "If-Unmodified-Since" HeaderLastModified = "Last-Modified" HeaderVary = "Vary" HeaderConnection = "Connection" HeaderKeepAlive = "Keep-Alive" HeaderAccept = "Accept" HeaderAcceptCharset = "Accept-Charset" HeaderAcceptEncoding = "Accept-Encoding" HeaderAcceptLanguage = "Accept-Language" HeaderCookie = "Cookie" HeaderExpect = "Expect" HeaderMaxForwards = "Max-Forwards" HeaderSetCookie = "Set-Cookie" HeaderAccessControlAllowCredentials = "Access-Control-Allow-Credentials" HeaderAccessControlAllowHeaders = "Access-Control-Allow-Headers" HeaderAccessControlAllowMethods = "Access-Control-Allow-Methods" HeaderAccessControlAllowOrigin = "Access-Control-Allow-Origin" HeaderAccessControlExposeHeaders = "Access-Control-Expose-Headers" HeaderAccessControlMaxAge = "Access-Control-Max-Age" HeaderAccessControlRequestHeaders = "Access-Control-Request-Headers" HeaderAccessControlRequestMethod = "Access-Control-Request-Method" HeaderOrigin = "Origin" HeaderTimingAllowOrigin = "Timing-Allow-Origin" HeaderXPermittedCrossDomainPolicies = "X-Permitted-Cross-Domain-Policies" HeaderDNT = "DNT" HeaderTk = "Tk" HeaderContentDisposition = "Content-Disposition" HeaderContentEncoding = "Content-Encoding" HeaderContentLanguage = "Content-Language" HeaderContentLength = "Content-Length" HeaderContentLocation = "Content-Location" HeaderContentType = "Content-Type" HeaderForwarded = "Forwarded" HeaderVia = "Via" HeaderXForwardedFor = "X-Forwarded-For" HeaderXForwardedHost = "X-Forwarded-Host" HeaderXForwardedProto = "X-Forwarded-Proto" HeaderXForwardedProtocol = "X-Forwarded-Protocol" HeaderXForwardedSsl = "X-Forwarded-Ssl" HeaderXUrlScheme = "X-Url-Scheme" HeaderLocation = "Location" HeaderFrom = "From" HeaderHost = "Host" HeaderReferer = "Referer" HeaderReferrerPolicy = "Referrer-Policy" HeaderUserAgent = "User-Agent" HeaderAllow = "Allow" HeaderServer = "Server" HeaderAcceptRanges = "Accept-Ranges" HeaderContentRange = "Content-Range" HeaderIfRange = "If-Range" HeaderRange = "Range" HeaderContentSecurityPolicy = "Content-Security-Policy" HeaderContentSecurityPolicyReportOnly = "Content-Security-Policy-Report-Only" HeaderCrossOriginResourcePolicy = "Cross-Origin-Resource-Policy" HeaderExpectCT = "Expect-CT" HeaderFeaturePolicy = "Feature-Policy" HeaderPublicKeyPins = "Public-Key-Pins" HeaderPublicKeyPinsReportOnly = "Public-Key-Pins-Report-Only" HeaderStrictTransportSecurity = "Strict-Transport-Security" HeaderUpgradeInsecureRequests = "Upgrade-Insecure-Requests" HeaderXContentTypeOptions = "X-Content-Type-Options" HeaderXDownloadOptions = "X-Download-Options" HeaderXFrameOptions = "X-Frame-Options" HeaderXPoweredBy = "X-Powered-By" HeaderXXSSProtection = "X-XSS-Protection" HeaderLastEventID = "Last-Event-ID" HeaderNEL = "NEL" HeaderPingFrom = "Ping-From" HeaderPingTo = "Ping-To" HeaderReportTo = "Report-To" HeaderTE = "TE" HeaderTrailer = "Trailer" HeaderTransferEncoding = "Transfer-Encoding" HeaderSecWebSocketAccept = "Sec-WebSocket-Accept" HeaderSecWebSocketExtensions = "Sec-WebSocket-Extensions" HeaderSecWebSocketKey = "Sec-WebSocket-Key" HeaderSecWebSocketProtocol = "Sec-WebSocket-Protocol" HeaderSecWebSocketVersion = "Sec-WebSocket-Version" HeaderAcceptPatch = "Accept-Patch" HeaderAcceptPushPolicy = "Accept-Push-Policy" HeaderAcceptSignature = "Accept-Signature" HeaderAltSvc = "Alt-Svc" HeaderDate = "Date" HeaderIndex = "Index" HeaderLargeAllocation = "Large-Allocation" HeaderLink = "Link" HeaderPushPolicy = "Push-Policy" HeaderRetryAfter = "Retry-After" HeaderServerTiming = "Server-Timing" HeaderSignature = "Signature" HeaderSignedHeaders = "Signed-Headers" HeaderSourceMap = "SourceMap" HeaderUpgrade = "Upgrade" HeaderXDNSPrefetchControl = "X-DNS-Prefetch-Control" HeaderXPingback = "X-Pingback" HeaderXRequestID = "X-Request-ID" HeaderXRequestedWith = "X-Requested-With" HeaderXRobotsTag = "X-Robots-Tag" HeaderXUACompatible = "X-UA-Compatible" )
HTTP Headers were copied from net/http.
Variables ¶
var ( ErrBadRequest = NewError(StatusBadRequest) // RFC 7231, 6.5.1 ErrPaymentRequired = NewError(StatusPaymentRequired) // RFC 7231, 6.5.2 ErrForbidden = NewError(StatusForbidden) // RFC 7231, 6.5.3 ErrNotFound = NewError(StatusNotFound) // RFC 7231, 6.5.4 ErrMethodNotAllowed = NewError(StatusMethodNotAllowed) // RFC 7231, 6.5.5 ErrNotAcceptable = NewError(StatusNotAcceptable) // RFC 7231, 6.5.6 ErrProxyAuthRequired = NewError(StatusProxyAuthRequired) // RFC 7235, 3.2 ErrRequestTimeout = NewError(StatusRequestTimeout) // RFC 7231, 6.5.7 ErrConflict = NewError(StatusConflict) // RFC 7231, 6.5.8 ErrGone = NewError(StatusGone) // RFC 7231, 6.5.9 ErrLengthRequired = NewError(StatusLengthRequired) // RFC 7231, 6.5.10 ErrPreconditionFailed = NewError(StatusPreconditionFailed) // RFC 7232, 4.2 ErrRequestEntityTooLarge = NewError(StatusRequestEntityTooLarge) // RFC 7231, 6.5.11 ErrRequestURITooLong = NewError(StatusRequestURITooLong) // RFC 7231, 6.5.12 ErrUnsupportedMediaType = NewError(StatusUnsupportedMediaType) // RFC 7231, 6.5.13 ErrRequestedRangeNotSatisfiable = NewError(StatusRequestedRangeNotSatisfiable) // RFC 7233, 4.4 ErrExpectationFailed = NewError(StatusExpectationFailed) // RFC 7231, 6.5.14 ErrTeapot = NewError(StatusTeapot) // RFC 7168, 2.3.3 ErrMisdirectedRequest = NewError(StatusMisdirectedRequest) // RFC 7540, 9.1.2 ErrUnprocessableEntity = NewError(StatusUnprocessableEntity) // RFC 4918, 11.2 ErrLocked = NewError(StatusLocked) // RFC 4918, 11.3 ErrFailedDependency = NewError(StatusFailedDependency) // RFC 4918, 11.4 ErrTooEarly = NewError(StatusTooEarly) // RFC 8470, 5.2. ErrUpgradeRequired = NewError(StatusUpgradeRequired) // RFC 7231, 6.5.15 ErrPreconditionRequired = NewError(StatusPreconditionRequired) // RFC 6585, 3 ErrTooManyRequests = NewError(StatusTooManyRequests) // RFC 6585, 4 ErrRequestHeaderFieldsTooLarge = NewError(StatusRequestHeaderFieldsTooLarge) // RFC 6585, 5 ErrInternalServerError = NewError(StatusInternalServerError) // RFC 7231, 6.6.1 ErrNotImplemented = NewError(StatusNotImplemented) // RFC 7231, 6.6.2 ErrBadGateway = NewError(StatusBadGateway) // RFC 7231, 6.6.3 ErrGatewayTimeout = NewError(StatusGatewayTimeout) // RFC 7231, 6.6.5 ErrHTTPVersionNotSupported = NewError(StatusHTTPVersionNotSupported) // RFC 7231, 6.6.6 ErrVariantAlsoNegotiates = NewError(StatusVariantAlsoNegotiates) // RFC 2295, 8.1 ErrInsufficientStorage = NewError(StatusInsufficientStorage) // RFC 4918, 11.5 ErrLoopDetected = NewError(StatusLoopDetected) // RFC 5842, 7.2 ErrNotExtended = NewError(StatusNotExtended) // RFC 2774, 7 ErrNetworkAuthenticationRequired = NewError(StatusNetworkAuthenticationRequired) // RFC 6585, 6 )
Errors
var ( Events = event.New() StatusCodePages = map[int]string{} Any func(request *Request) error )
var AppMenus = []menu.Menu{}
var Arg args
var Cache cacheInterface = cache.New(1*time.Minute, 1*time.Second)
var Database *gorm.DB
var DefaultPath = map[string][]string{}
var Docs = []DocApp{}
var Exec string
var OS = struct { Name string Version string Kernel string Username string Path struct { Bin []string Home string Root string Tmp string AppData []string } }{}
var ProcessID int
var WorkingDir string
Functions ¶
func AddGlobalViewParam ¶ added in v1.0.22
func AddGlobalViewParam(key string, value interface{})
func CustomError ¶
CustomError set custom page for errors
func GetRegisteredApps ¶
func GetRegisteredApps() map[string]interface{}
GetRegisteredApps return list of registered apps
func Group ¶
Group is used for Routes with common prefix to define a new sub-router with optional middleware.
func GuessAsset ¶
func InitUserModel ¶
InitUserModel initialize the user model with given config
func ParseConfig ¶
func RegisterView ¶
func RegisterView(prefix, path string, safeWriter ...jet.SafeWriter) *jet.Set
RegisterView register views of given path
func RegisterViewFunction ¶ added in v1.0.10
func SetCacheInterface ¶ added in v0.9.0
func SetCacheInterface(c cacheInterface)
func SetUserInterface ¶
func SetUserInterface(p UserInterface)
func Shutdown ¶
func Shutdown() error
Shutdown gracefully shuts down the server without interrupting any active connections. Shutdown works by first closing all open listeners and then waiting indefinitely for all connections to return to idle and then shut down.
When Shutdown is called, Serve, ListenAndServe, and ListenAndServeTLS immediately return nil. Make sure the program doesn't exit and waits instead for Shutdown to return.
Shutdown does not close keepalive connections so its recommended to set ReadTimeout to something else than 0.
Types ¶
type App ¶
type App interface { Register() Router() WhenReady() Permissions() []Permission Pack() Menus() []menu.Menu }
type Configuration ¶
type Configuration struct { Log struct { WriteFile bool `yaml:"writefile"` Path string `yaml:"path"` Level string `yaml:"level"` } `yaml:"log"` App struct { Name string `yaml:"name"` Static string `yaml:"static"` SessionAge int `yaml:"session-age"` Language string `yaml:"language"` StrongPass int `yaml:"strong-pass-level"` } `yaml:"app"` JWT struct { Secret string `yaml:"secret"` Issuer string `yaml:"issuer"` Audience []string `yaml:"audience"` Age time.Duration `yaml:"age"` Subject string `yaml:"subject"` AgeString string `yaml:"age"` } `yaml:"jwt"` Server struct { Host string `yaml:"host"` Port string `yaml:"port"` Cert string `yaml:"cert"` Key string `yaml:"key"` HTTPS bool `yaml:"https"` Name string `yaml:"name"` MaxUploadSize string `yaml:"max-upload-size"` StrictRouting bool `yaml:"strict-routing"` CaseSensitive bool `yaml:"case-sensitive"` RequestID bool `yaml:"request-id"` Debug bool `yaml:"debug"` Recover bool `yaml:"recover"` } `yaml:"server"` Database struct { Enabled bool `yaml:"enabled"` Type string `yaml:"type"` Username string `yaml:"user"` Password string `yaml:"pass"` Server string `yaml:"server"` Cache string `yaml:"cache"` CacheSize string `yaml:"cache-size"` Debug string `yaml:"debug"` Database string `yaml:"database"` SSLMode string `yaml:"ssl-mode"` Params string `yaml:"params"` MaxOpenConns int `yaml:"max-open-connections"` MaxIdleConns int `yaml:"max-idle-connections"` ConnMaxLifTime time.Duration `yaml:"connection-max-lifetime"` } `yaml:"database"` Tweaks struct { Ballast bool `yaml:"ballast"` BallastSize string `yaml:"ballast-size"` MaxProcessors int `yaml:"processors"` PreFork bool `yaml:"prefork"` } `yaml:"tweaks"` RateLimit struct { Enabled bool `yaml:"enabled"` Duration int `yaml:"duration"` Requests int `yaml:"requests"` } `yaml:"ratelimit"` CORS struct { Enabled bool `yaml:"enabled"` AllowOrigins string `yaml:"allowed-origins"` AllowMethods []string `yaml:"allowed-methods"` AllowHeaders []string `yaml:"allowed-headers"` AllowCredentials bool `yaml:"allowed-credentials"` MaxAge int `yaml:"requests"` } `yaml:"cors"` }
type Cookie ¶ added in v0.9.2
type Cookie struct { Name string `json:"name"` Value string `json:"value"` Path string `json:"path"` Domain string `json:"domain"` Expires time.Time `json:"expires"` Secure bool `json:"secure"` HTTPOnly bool `json:"http_only"` SameSite string `json:"same_site"` }
Cookie data for ctx.Cookie
type DocAPI ¶
type DocAPI struct { Name string `json:"name"` Description string `json:"description"` Describe []string `json:"describe"` Body string `json:"body"` Return string `json:"return"` Required string `json:"required"` Method string `json:"method"` URL string `json:"url"` Package string `json:"package"` Path string `json:"path"` }
type DocApp ¶
type DocApp struct { Name string `json:"name"` Description string `json:"description"` Author string `json:"author"` Namespace string `json:"namespace"` Path string `json:"path"` Models []*DocModel `json:"models"` APIs []*DocAPI `json:"apis"` Permissions []Permission `json:"permissions"` Menus []menu.Menu `json:"menus"` Package string `json:"package"` }
type DocModel ¶
type LocalUserImplementation ¶
type LocalUserImplementation struct{}
func (LocalUserImplementation) AfterFind ¶
func (p LocalUserImplementation) AfterFind(u *User) error
func (LocalUserImplementation) FromRequest ¶
func (u LocalUserImplementation) FromRequest(r *Request)
SetGroup set user group
func (LocalUserImplementation) HasPerm ¶
func (p LocalUserImplementation) HasPerm(u *User, v string) bool
func (LocalUserImplementation) HasRole ¶
func (p LocalUserImplementation) HasRole(u *User, v interface{}) bool
func (LocalUserImplementation) Image ¶
func (p LocalUserImplementation) Image(u *User) string
func (LocalUserImplementation) Save ¶
func (p LocalUserImplementation) Save(u *User) error
func (LocalUserImplementation) SetGroup ¶
func (p LocalUserImplementation) SetGroup(u *User, group interface{}) error
func (LocalUserImplementation) SetPassword ¶
func (p LocalUserImplementation) SetPassword(u *User, password string) error
func (LocalUserImplementation) SyncPermissions ¶
func (p LocalUserImplementation) SyncPermissions(app string, perms Permissions)
type Permission ¶
type Permission struct { Model CodeName string `json:"code_name" form:"code_name" validate:"empty=false"` Title string `json:"title" form:"title" validate:"empty=false"` Description string `json:"description" form:"description"` App string `json:"app" form:"app" validate:"empty=false"` }
Permission permission struct @doc type model
type Permissions ¶
type Permissions []Permission
Permissions slice of permissions
func (Permissions) Sync ¶
func (perms Permissions) Sync(app string)
Sync synchronize permissions on startup
type Request ¶
type Request struct { Variables fiber.Map Context *fiber.Ctx JWT *jwt.Payload Additional interface{} User *User Response Response CacheKey string CacheDuration time.Duration // contains filtered or unexported fields }
func (*Request) Accepts ¶
Accepts checks if the specified extensions or content types are acceptable.
func (*Request) AcceptsCharsets ¶
AcceptsCharsets checks if the specified charset is acceptable.
func (*Request) AcceptsEncodings ¶
AcceptsEncodings checks if the specified encoding is acceptable.
func (*Request) AcceptsLanguages ¶
AcceptsLanguages checks if the specified language is acceptable.
func (*Request) Append ¶
Append the specified value to the HTTP response header field. If the header is not already set, it creates the header with the specified value.
func (*Request) Attachment ¶
Attachment sets the HTTP response Content-Disposition header field to attachment.
func (*Request) BodyParser ¶
BodyParser binds the request body to a struct. It supports decoding the following content types based on the Content-Type header: application/json, application/xml, application/x-www-form-urlencoded, multipart/form-data
func (*Request) ClearCookie ¶
ClearCookie expires a specific cookie by key. If no key is provided it expires all cookies.
func (*Request) ContentType ¶ added in v0.9.2
ContentType returns request content type
func (*Request) Download ¶
Download transfers the file from path as an attachment. Typically, browsers will prompt the user for download. By default, the Content-Disposition header filename= parameter is the filepath (this typically appears in the browser dialog). Override this default with the filename parameter.
func (*Request) FormFile ¶
func (r *Request) FormFile(key string) (*multipart.FileHeader, error)
FormFile returns the first file by key from a MultipartForm.
func (*Request) FormValueI ¶ added in v0.9.0
FormValue returns the first value by key from a MultipartForm.
func (*Request) Format ¶
func (r *Request) Format(body interface{})
Format performs content-negotiation on the Accept HTTP header. It uses Accepts to select a proper format. If the header is not specified or there is no proper format, text/plain is used.
func (*Request) Get ¶
Get returns the HTTP request header specified by field. Field names are case-insensitive
func (*Request) GetBrowser ¶ added in v0.9.2
GetBrowser return browser information by parsing useragent
func (Request) GetFlashes ¶
func (r Request) GetFlashes() []flash
func (*Request) GetI ¶ added in v0.9.0
Get returns the HTTP request header specified by field. Field names are case-insensitive
func (*Request) IPs ¶
IPs returns an string slice of IP addresses specified in the X-Forwarded-For request header.
func (*Request) Is ¶
Is returns the matching content type, if the incoming request’s Content-Type HTTP header field matches the MIME type specified by the type parameter
func (*Request) JSON ¶
JSON converts any interface or string to JSON using Jsoniter. This method also sets the content header to application/json.
func (*Request) JSONP ¶
JSONP sends a JSON response with JSONP support. This method is identical to JSON, except that it opts-in to JSONP callback support. By default, the callback name is simply callback.
func (*Request) Links ¶
Links joins the links followed by the property to populate the response’s Link HTTP header field.
func (*Request) Locals ¶
Locals makes it possible to pass interface{} values under string keys scoped to the request and therefore available to all following routes that match the request.
func (*Request) Location ¶
Location sets the response Location HTTP header to the specified path parameter.
func (*Request) Method ¶
Method contains a string corresponding to the HTTP method of the request: GET, POST, PUT and so on.
func (*Request) MultipartForm ¶
MultipartForm parse form entries from binary. This returns a map[string][]string, so given a key the value will be a string slice.
func (*Request) Next ¶
Next executes the next method in the stack that matches the current route. You can pass an optional error for custom error handling.
func (*Request) OriginalURL ¶
OriginalURL contains the original request URL.
func (*Request) Params ¶
Params is used to get the route parameters. Defaults to empty string "", if the param doesn't exist.
func (*Request) ParamsI ¶ added in v0.9.0
Params is used to get the route parameters. Defaults to empty string "", if the param doesn't exist.
func (*Request) Path ¶
Path returns the path part of the request URL. Optionally, you could override the path.
func (*Request) Protocol ¶
Protocol contains the request protocol string: http or https for TLS requests.
func (*Request) Redirect ¶
Redirect to the URL derived from the specified path, with specified status. If status is not specified, status defaults to 302 Found
func (*Request) Render ¶
Render a template with data and sends a text/html response. We support the following engines: html, amber, handlebars, mustache, pug
func (*Request) RenderView ¶
func (*Request) SaveFile ¶
func (r *Request) SaveFile(fileheader *multipart.FileHeader, path string) error
SaveFile saves any multipart file to disk.
func (*Request) Secure ¶
Secure returns a boolean property, that is true, if a TLS connection is established.
func (*Request) SendBytes ¶
SendBytes sets the HTTP response body for []byte types This means no type assertion, recommended for faster performance
func (*Request) SendFile ¶
SendFile transfers the file from the given path. The file is compressed by default Sets the Content-Type response HTTP header field based on the filenames extension.
func (*Request) SendHTML ¶
func (r *Request) SendHTML(body interface{})
Send sets the HTML response body. The Send body can be of any type.
func (*Request) SendStatus ¶
SendStatus sets the HTTP status code and if the response body is empty, it sets the correct status message in the body.
func (*Request) SendString ¶
SendString sets the HTTP response body for string types This means no type assertion, recommended for faster performance
func (*Request) SetCookie ¶
SetCookie set cookie with given name,value and optional params (wise function)
func (*Request) Subdomains ¶
Subdomains returns a string slive of subdomains in the domain name of the request. The subdomain offset, which defaults to 2, is used for determining the beginning of the subdomain segments.
func (*Request) Type ¶
Type sets the Content-Type HTTP header to the MIME type specified by the file extension.
func (*Request) Unauthorized ¶
func (*Request) Vary ¶
Vary adds the given header field to the Vary response header. This will append the header, if not already listed, otherwise leaves it listed in the current location.
func (*Request) Write ¶
func (r *Request) Write(body interface{})
Write appends any input to the HTTP body response.
func (*Request) WriteResponse ¶
func (r *Request) WriteResponse(resp ...interface{})
type Response ¶
type Role ¶
type Role struct { Model Name string `json:"name" form:"name" validate:"empty=false & format=strict_html"` CodeName string `json:"code_name" json:"code_name" validate:"empty=false & format=slug" gorm:"type:varchar(100);unique_index"` Parent uint `json:"parent" form:"parent"` Groups []*UserGroup `json:"-" gorm:"many2many:group_roles;"` Permission *Permissions `json:"permissions_data" gorm:"-" validate:"-"` PermissionSet []string `json:"permissions" form:"permissions" gorm:"-"` }
Role role struct @doc type model
func (*Role) SetPermission ¶
func (r *Role) SetPermission(permissions Permissions) error
SetPermission set role permission
type RolePermission ¶
RolePermission role to permission orm @doc type model
type User ¶
type User struct { Model GivenName string `json:"given_name" form:"given_name" mapstructure:"given_name"` FamilyName string `json:"family_name" form:"family_name" mapstructure:"family_name"` Username string `` /* 145-byte string literal not displayed */ Password string `json:"-" form:"-" validate:"empty=false & format=strict_html"` Email string `json:"email" form:"email" mapstructure:"email" validate:"empty=false & format=email" gorm:"type:varchar(32);unique_index"` Roles []*Role `json:"roles" form:"roles" validate:"-"` Group *UserGroup `json:"-" form:"-" gorm:"-" validate:"-"` GroupID uint `json:"group_id" form:"group_id"` Anonymous bool `json:"anonymous" form:"anonymous" gorm:"-"` Active bool `json:"active" form:"active"` Seen time.Time `json:"seen" form:"seen"` Admin bool `json:"admin" form:"admin"` Params data.Map `gorm:"type:json" mapstructure:"-" form:"params" json:"params"` }
User user struct @doc type model
func (*User) ParseParams ¶
TODO: parse using reflect Save save user instance
func (*User) SetPassword ¶
SetPassword set user password
type UserGroup ¶
type UserGroup struct { Model Name string `json:"name" form:"name" validate:"empty=false & format=strict_html"` CodeName string `json:"code_name" json:"code_name" validate:"empty=false & format=slug" gorm:"type:varchar(100);unique_index"` Parent uint `json:"parent" form:"parent"` Roles []*Role `json:"roles_data" gorm:"many2many:group_roles;" validate:"-"` RoleSet []string `json:"roles" form:"roles" gorm:"-"` }
Group group struct @doc type model
type UserInterface ¶
type UserInterface interface { Save(u *User) error HasPerm(u *User, v string) bool HasRole(u *User, v interface{}) bool Image(u *User) string SetPassword(u *User, password string) error SetGroup(u *User, group interface{}) error AfterFind(u *User) error SyncPermissions(app string, permissions Permissions) FromRequest(r *Request) }
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
apps
|
|
auth
@doc type app @doc name auth @doc description authentication api @doc author reza @doc include github.com/getevo/evo/user.model.go
|
@doc type app @doc name auth @doc description authentication api @doc author reza @doc include github.com/getevo/evo/user.model.go |
cmd
|
|
cli
Package cli provides a minimal framework for creating and organizing command line Go applications.
|
Package cli provides a minimal framework for creating and organizing command line Go applications. |
conv/internal/convert
Package convert contains common conversion interfaces.
|
Package convert contains common conversion interfaces. |
conv/internal/refconv
Package refconv implements the Converter interface by using the standard libraries reflection package.
|
Package refconv implements the Converter interface by using the standard libraries reflection package. |
jwt
Package jwt is a JSON Web Token signer, verifier and validator.
|
Package jwt is a JSON Web Token signer, verifier and validator. |
validate
Package validate validates Go structs and types recursively based on tags.
|
Package validate validates Go structs and types recursively based on tags. |