Documentation ¶
Index ¶
- func Tree() *node
- type App
- func (app *App) ANY(url string, handler Handler)
- func (app *App) AppendReqAndResp(url, method string, handler Handler)
- func (app *App) DELETE(url string, handler Handler)
- func (app *App) Find(url, method string) Handler
- func (app *App) GET(url string, handler Handler)
- func (app *App) Group(prefix string, middleware ...Middleware)
- func (app *App) HEAD(url string, handler Handler)
- func (app *App) OPTIONS(url string, handler Handler)
- func (app *App) POST(url string, handler Handler)
- func (app *App) PUT(url string, handler Handler)
- type Context
- func (ctx *Context) Json(code int, Body map[string]interface{})
- func (ctx *Context) LocalIP() string
- func (ctx *Context) Method() string
- func (ctx *Context) Path() string
- func (ctx *Context) SetContentType(contentType string)
- func (ctx *Context) SetCookie(cookie *http.Cookie)
- func (ctx *Context) SetStatusCode(code int)
- func (ctx *Context) SetUserValue(key string, value interface{})
- func (ctx *Context) Write(code int, Header map[string]string, Body string)
- func (ctx *Context) WriteString(Body string)
- type Handler
- type Middleware
- type Path
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type App ¶
type App struct { Requests []Path MiddlewareList []Middleware Prefix string // contains filtered or unexported fields }
App is the key struct of the package. App as a member of plugin entity contains the request and the corresponding handler. Prefix is the url prefix and MiddlewareList is for control flow.
func (*App) ANY ¶
Any registers a route that matches all the HTTP methods. GET, POST, PUT, HEAD, OPTIONS, DELETE.
func (*App) AppendReqAndResp ¶
AppendReqAndResp stores the request info and handle into app. support the route parameter. The route parameter will be recognized as wildcard store into the RegUrl of Path struct. For example:
/user/:id => /user/(.*) /user/:id/info => /user/(.*?)/info
The RegUrl will be used to recognize the incoming path and find the handler.
func (*App) Group ¶
func (app *App) Group(prefix string, middleware ...Middleware)
Group add middlewares and prefix for App.
type Context ¶
type Context struct { Request *http.Request Response *http.Response UserValue map[string]interface{} }
Context is the simplify version of web framework context. But it is important which will be used in plugins to custom the request and response. And adapter will help to transform the Context to the web framework`s context. It has three attributes. Request and response are belongs to net/http package. UserValue is the custom key-value store of context.
func NewContext ¶
NewContext used in adapter which return a Context with request and slice of UserValue and a default Response.
func (*Context) Json ¶
Json serializes the given struct as JSON into the response body. It also sets the Content-Type as "application/json".
func (*Context) SetContentType ¶
SetStatusCode save the given content type header into the response header.
func (*Context) SetCookie ¶
SetCookie save the given cookie obj into the response Set-Cookie header.
func (*Context) SetStatusCode ¶
SetStatusCode save the given status code into the response.
func (*Context) SetUserValue ¶
SetUserValue set the value of user context.
func (*Context) WriteString ¶
Write save the given body string into the response.