Documentation
¶
Index ¶
- Constants
- Variables
- func HandleNotFound(context *Context)
- func SetContextIntoRequest(ctx *Context)
- type BannerStarter
- type BluePrint
- func (b *BluePrint) ANY(path string, group ...HandleFunc)
- func (b *BluePrint) Bind(path string, v interface{}, mappings ...map[string]string)
- func (b *BluePrint) BindMethod(path string, v interface{}, mappings ...map[string]string)
- func (b *BluePrint) DELETE(path string, group ...HandleFunc)
- func (b *BluePrint) FileStorage() FileStorage
- func (b *BluePrint) GET(path string, group ...HandleFunc)
- func (b *BluePrint) HEAD(path string, group ...HandleFunc)
- func (b *BluePrint) HTMLLoader() HTMLLoader
- func (b *BluePrint) Handle(method, path string, group ...HandleFunc)
- func (b *BluePrint) Include(prefix string, branch *BluePrint)
- func (b *BluePrint) IsRoot() bool
- func (b *BluePrint) JSONSerializer() internal.Serializer
- func (b *BluePrint) OPTIONS(path string, group ...HandleFunc)
- func (b *BluePrint) PATCH(path string, group ...HandleFunc)
- func (b *BluePrint) POST(path string, group ...HandleFunc)
- func (b *BluePrint) PUT(path string, group ...HandleFunc)
- func (b *BluePrint) Parent() *BluePrint
- func (b *BluePrint) Parsers() Parsers
- func (b *BluePrint) RAW(method, path string, handlers ...http.HandlerFunc)
- func (b *BluePrint) SetFileStorage(fileStorage FileStorage)
- func (b *BluePrint) SetHTMLLoader(htmlLoader HTMLLoader)
- func (b *BluePrint) SetJSONSerializer(jsonSerializer internal.Serializer)
- func (b *BluePrint) SetParsers(parsers Parsers)
- func (b *BluePrint) SetPrefix(path string)
- func (b *BluePrint) SetXMLSerializer(xmlSerializer internal.Serializer)
- func (b *BluePrint) Static(url, dir string, group ...HandleFunc)
- func (b *BluePrint) Use(group ...HandleFunc)
- func (b *BluePrint) XMLSerializer() internal.Serializer
- type Context
- func (c *Context) Abort()
- func (c *Context) AbortHandler() HandleFunc
- func (c *Context) AbortWithJSON(data interface{})
- func (c *Context) AbortWithStatus(code int)
- func (c *Context) AbortWithString(text string, data ...interface{})
- func (c *Context) AbortWithXML(data interface{})
- func (c *Context) Bind(binder binders.Binder, v interface{}) error
- func (c *Context) BindForm(v interface{}) error
- func (c *Context) BindHeader(v interface{}) error
- func (c *Context) BindJSON(v interface{}) error
- func (c *Context) BindMultipartForm(v interface{}) error
- func (c *Context) BindQuery(v interface{}) error
- func (c *Context) BindURI(v interface{}) error
- func (c *Context) BindXML(v interface{}) error
- func (c *Context) BluePrint() *BluePrint
- func (c *Context) ContentType() string
- func (c *Context) Data(v interface{}) (err error)
- func (c *Context) Engine() *Engine
- func (c *Context) Escape()
- func (c *Context) Flusher() http.Flusher
- func (c *Context) Form() url.Values
- func (c *Context) FormValue(key string) string
- func (c *Context) FormValues(key string) []string
- func (c *Context) FullPath() string
- func (c *Context) GetValue(key string) (value interface{}, exist bool)
- func (c *Context) HTML(name string, data interface{}) error
- func (c *Context) IsAborted() bool
- func (c *Context) IsAjax() bool
- func (c *Context) IsEscape() bool
- func (c *Context) IsMatched() bool
- func (c *Context) IsWebsocket() bool
- func (c *Context) JSON(data interface{}) error
- func (c *Context) Next()
- func (c *Context) Params() Params
- func (c *Context) Query() url.Values
- func (c *Context) QueryValue(key string) string
- func (c *Context) QueryValues(key string) []string
- func (c *Context) Redirect(code int, url string) error
- func (c *Context) RemoteIP() string
- func (c *Context) Render(render renders.Render, data interface{}) error
- func (c *Context) SaveUploadFile(name string) (string, error)
- func (c *Context) SaveUploadFileWith(fs FileStorage, name string) (string, error)
- func (c *Context) ServeContent(name string, modTime time.Time, content io.ReadSeeker) error
- func (c *Context) ServeFile(filepath, filename string) error
- func (c *Context) SetCookie(cookie *http.Cookie)
- func (c *Context) SetHeader(key, value string)
- func (c *Context) SetStatus(code int)
- func (c *Context) SetValue(key string, value interface{})
- func (c *Context) Status() int
- func (c *Context) String(format string, data ...interface{}) (err error)
- func (c *Context) Write(data []byte) error
- func (c *Context) XML(data interface{}) error
- type Engine
- func (e *Engine) AddInterceptors(interceptors ...HandleFunc)
- func (e *Engine) AddStarter(starters ...Starter)
- func (e *Engine) ListenAndServe(addr string) error
- func (e *Engine) ListenAndServeTLS(addr, certFile, keyFile string) error
- func (e *Engine) Run(addr string) error
- func (e *Engine) ServeHTTP(writer http.ResponseWriter, request *http.Request)
- func (e *Engine) Server() *http.Server
- type FileStorage
- type FormParser
- type HTMLLoader
- type HandleFunc
- type HandleFuncGroup
- type HttpRouter
- type JsonParser
- type LocalFileStorage
- type Map
- type MultipartFormParser
- type Param
- type Params
- type Parser
- type Parsers
- type QueryParser
- type Starter
- type TemplateLoader
- type UrlInfoStarter
- type XMLParser
Constants ¶
const ( MethodGet = "Get" MethodPost = "Post" MethodPut = "Put" MethodPatch = "Patch" MethodDelete = "Delete" MethodHead = "Head" MethodOptions = "Options" MethodTrace = "Trace" ALLMethods = "*" )
const (
FilePathParam = "static"
)
Variables ¶
var Banner = `` /* 605-byte string literal not displayed */
var (
ContextKey = contextKey{}
)
ContextKey is the request context key under which Context are stored.
var HttpRequestMethodMapping = map[string]string{ MethodPost: http.MethodPost, MethodGet: http.MethodGet, MethodPut: http.MethodPut, MethodPatch: http.MethodPatch, MethodDelete: http.MethodDelete, MethodHead: http.MethodHead, MethodOptions: http.MethodOptions, MethodTrace: http.MethodTrace, }
HttpRequestMethodMapping define request method mapping
Functions ¶
func HandleNotFound ¶
func HandleNotFound(context *Context)
func SetContextIntoRequest ¶
func SetContextIntoRequest(ctx *Context)
SetContextIntoRequest set Context into request context
Types ¶
type BannerStarter ¶
type BannerStarter struct{ Banner string }
func (BannerStarter) Start ¶
func (b BannerStarter) Start(engine *Engine) error
type BluePrint ¶
type BluePrint struct { // Name the name of current BluePrint Name string // data of current BluePrint Data interface{} // contains filtered or unexported fields }
func DefaultBluePrint ¶ added in v1.1.5
func DefaultBluePrint() *BluePrint
DefaultBluePrint returns default BluePrint It is used to create root BluePrint If you want to create child BluePrint, you should use NewBluePrint DefaultBluePrint add some default attributes to BluePrint Ensure that system could be worked
func (*BluePrint) ANY ¶
func (b *BluePrint) ANY(path string, group ...HandleFunc)
ANY register all method for given handle
func (*BluePrint) BindMethod ¶
BindMethod add HttpRequestMethodMapping for bind mappings
func (*BluePrint) DELETE ¶
func (b *BluePrint) DELETE(path string, group ...HandleFunc)
DELETE is a shortcut for Handle("DELETE", path, group...)
func (*BluePrint) FileStorage ¶ added in v1.1.5
func (b *BluePrint) FileStorage() FileStorage
FileStorage set FileStorage If is nil, it will be panic
func (*BluePrint) GET ¶
func (b *BluePrint) GET(path string, group ...HandleFunc)
GET is a shortcut for Handle("GET", path, group...)
func (*BluePrint) HEAD ¶
func (b *BluePrint) HEAD(path string, group ...HandleFunc)
HEAD is a shortcut for Handle("HEAD", path, group...)
func (*BluePrint) HTMLLoader ¶ added in v1.1.5
func (b *BluePrint) HTMLLoader() HTMLLoader
HTMLLoader HTMLSerializer returns HTMLLoader If not set, it will try to get from parent BluePrint
func (*BluePrint) Handle ¶
func (b *BluePrint) Handle(method, path string, group ...HandleFunc)
Handle register HandleFunc with given method and path
func (*BluePrint) JSONSerializer ¶ added in v1.1.5
func (b *BluePrint) JSONSerializer() internal.Serializer
JSONSerializer returns JSONSerializer If not set, it will try to get from parent BluePrint
func (*BluePrint) OPTIONS ¶
func (b *BluePrint) OPTIONS(path string, group ...HandleFunc)
OPTIONS is a shortcut for Handle("OPTIONS", path, group...)
func (*BluePrint) PATCH ¶
func (b *BluePrint) PATCH(path string, group ...HandleFunc)
PATCH is a shortcut for Handle("PATCH", path, group...)
func (*BluePrint) POST ¶
func (b *BluePrint) POST(path string, group ...HandleFunc)
POST is a shortcut for Handle("POST", path, group...)
func (*BluePrint) PUT ¶
func (b *BluePrint) PUT(path string, group ...HandleFunc)
PUT is a shortcut for Handle("PUT", path, group...)
func (*BluePrint) RAW ¶
func (b *BluePrint) RAW(method, path string, handlers ...http.HandlerFunc)
RAW register http.HandlerFunc with all method
func (*BluePrint) SetFileStorage ¶ added in v1.1.5
func (b *BluePrint) SetFileStorage(fileStorage FileStorage)
SetFileStorage set FileStorage If is nil, it will be panic
func (*BluePrint) SetHTMLLoader ¶ added in v1.1.5
func (b *BluePrint) SetHTMLLoader(htmlLoader HTMLLoader)
SetHTMLLoader set HTMLLoader If is nil, it will be panic
func (*BluePrint) SetJSONSerializer ¶ added in v1.1.5
func (b *BluePrint) SetJSONSerializer(jsonSerializer internal.Serializer)
SetJSONSerializer set JSONSerializer If is nil, it will be panic
func (*BluePrint) SetParsers ¶ added in v1.1.5
SetParsers set Parsers If is nil, it will be panic
func (*BluePrint) SetXMLSerializer ¶ added in v1.1.5
func (b *BluePrint) SetXMLSerializer(xmlSerializer internal.Serializer)
SetXMLSerializer set XMLSerializer If is nil, it will be panic
func (*BluePrint) Static ¶
func (b *BluePrint) Static(url, dir string, group ...HandleFunc)
Static Serve static files
BluePrint.Static("/static/", "./static")
func (*BluePrint) Use ¶
func (b *BluePrint) Use(group ...HandleFunc)
Use add middleware for this BluePrint
func (*BluePrint) XMLSerializer ¶ added in v1.1.5
func (b *BluePrint) XMLSerializer() internal.Serializer
XMLSerializer returns XMLSerializer If not set, it will try to get from parent BluePrint
type Context ¶
type Context struct { Request *http.Request ResponseWriter http.ResponseWriter // contains filtered or unexported fields }
func GetCurrentContext ¶
GetCurrentContext get current Context from the request
func (*Context) Abort ¶
func (c *Context) Abort()
Abort skip current handle and will call Context.abort exit and do nothing by default
func (*Context) AbortHandler ¶
func (c *Context) AbortHandler() HandleFunc
AbortHandler returns a handler which called at lasted
func (*Context) AbortWithJSON ¶
func (c *Context) AbortWithJSON(data interface{})
AbortWithJSON write json response and exit
func (*Context) AbortWithStatus ¶
AbortWithStatus set response status and exit
func (*Context) AbortWithString ¶ added in v1.0.8
AbortWithString write string response and exit
func (*Context) AbortWithXML ¶
func (c *Context) AbortWithXML(data interface{})
AbortWithXML write xml response and exit
func (*Context) BindHeader ¶ added in v1.1.3
BindHeader bind the request header to destination
func (*Context) BindMultipartForm ¶
BindMultipartForm bind MultipartForm to destination
func (*Context) ContentType ¶ added in v1.1.0
ContentType return Content-Type header
func (*Context) Data ¶
Data analysis request body to destination and validate Call Context.AddParser to add more support
func (*Context) FormValues ¶
FormValues get Values slice from post value
func (*Context) IsWebsocket ¶
IsWebsocket returns true if the request headers indicate that a websocket
func (*Context) Query ¶
Query is a shortcut for c.Request.URL.Query() but cached value for current context
func (*Context) QueryValue ¶
QueryValue get Value from url query
func (*Context) QueryValues ¶
QueryValues get Value slice from url query
func (*Context) SaveUploadFile ¶
SaveUploadFile will call Context.FileStorage default save file to local path
func (*Context) SaveUploadFileWith ¶
func (c *Context) SaveUploadFileWith(fs FileStorage, name string) (string, error)
SaveUploadFileWith call given FileStorage with upload file
func (*Context) ServeContent ¶
ServeContent Shortcut for http.ServeContent
func (*Context) SetStatus ¶
SetStatus set response status code SetStatus will not affect the response data that has been written
type Engine ¶
type Engine struct { // BluePrint is used for store the handler. // All handlers are going to register into it *BluePrint // Router is a module used to register handle and distribute request Router HttpRouter // NotFoundHandle replies to the request with an HTTP 404 not found error. NotFoundHandle func(context *Context) // MultipartMemory defined max request body size MultipartMemory int64 // contains filtered or unexported fields }
Engine is a collection of core components of the whole service
func (*Engine) AddInterceptors ¶
func (e *Engine) AddInterceptors(interceptors ...HandleFunc)
AddInterceptors Add interceptor to Engine All interceptors will be called before any handler Such as authorization, rate limiter, etc
func (*Engine) AddStarter ¶
AddStarter Add starter to Engine It will be called when the service starts
func (*Engine) ListenAndServe ¶
func (*Engine) ListenAndServeTLS ¶
ListenAndServeTLS acts identically to Run
type FileStorage ¶
type FileStorage interface {
Save(fileHeader *multipart.FileHeader) (string, error)
}
type FormParser ¶
type FormParser struct{}
FormParser Parser for form data.
func (FormParser) Match ¶
func (f FormParser) Match(context *Context) bool
func (FormParser) Parse ¶
func (f FormParser) Parse(context *Context, v interface{}) error
type HTMLLoader ¶ added in v1.0.9
type HandleFunc ¶
type HandleFunc func(context *Context)
func Gzip ¶ added in v1.1.4
func Gzip(level int) HandleFunc
Gzip is a middleware for gzip compression it will compress the response body if the client accepts gzip encoding param is the compression level, choose from gzip.BestSpeed to gzip.BestCompression
func RawHandlerFunc ¶
func RawHandlerFunc(handler http.HandlerFunc) HandleFunc
func RecoverHandler ¶ added in v1.1.0
func RecoverHandler(h func(ctx *Context, rec interface{})) HandleFunc
RecoverHandler recovers from panics and call given handler
type HandleFuncGroup ¶
type HandleFuncGroup []HandleFunc
func RawHandlerFuncGroup ¶
func RawHandlerFuncGroup(handlers ...http.HandlerFunc) HandleFuncGroup
type HttpRouter ¶
type HttpRouter map[string]*routerNode
HttpRouter implement Router
func (HttpRouter) Insert ¶
func (r HttpRouter) Insert(method, path string, handle handleFuncNodeGroup)
func (HttpRouter) Match ¶
func (r HttpRouter) Match(ctx *Context) bool
type JsonParser ¶
type JsonParser struct{}
JsonParser Parses JSON-serialized data.
func (JsonParser) Match ¶
func (j JsonParser) Match(context *Context) bool
func (JsonParser) Parse ¶
func (j JsonParser) Parse(context *Context, v interface{}) error
type LocalFileStorage ¶
type LocalFileStorage struct { MediaRoot string // contains filtered or unexported fields }
func (*LocalFileStorage) Save ¶
func (l *LocalFileStorage) Save(fileHeader *multipart.FileHeader) (string, error)
Save implement FileStorage Uploads the form file to local
func (*LocalFileStorage) SetMediaRouter ¶
func (l *LocalFileStorage) SetMediaRouter(mediaRoot string)
SetMediaRouter Set file base save path for LocalFileStorage
type MultipartFormParser ¶
type MultipartFormParser struct{}
MultipartFormParser Parser for multipart form data, which may include file data.
func (MultipartFormParser) Match ¶
func (m MultipartFormParser) Match(context *Context) bool
func (MultipartFormParser) Parse ¶
func (m MultipartFormParser) Parse(context *Context, v interface{}) error
type Params ¶
type Params []Param
func (Params) ToURLValues ¶ added in v1.1.5
ToURLValues converts a Params to an url.Values This is useful for building a URL query string
type QueryParser ¶ added in v1.0.8
type QueryParser struct{}
func (QueryParser) Match ¶ added in v1.0.8
func (q QueryParser) Match(context *Context) bool
func (QueryParser) Parse ¶ added in v1.0.8
func (q QueryParser) Parse(context *Context, v interface{}) error
type TemplateLoader ¶ added in v1.0.9
func (*TemplateLoader) Load ¶ added in v1.0.9
func (h *TemplateLoader) Load(name string) (renders.Render, error)
func (*TemplateLoader) ParseGlob ¶ added in v1.0.9
func (h *TemplateLoader) ParseGlob(pattern string) error
type UrlInfoStarter ¶
type UrlInfoStarter struct{}
func (UrlInfoStarter) Start ¶
func (u UrlInfoStarter) Start(engine *Engine) error