Documentation
¶
Index ¶
- type JSON
- type Request
- type Response
- func (res *Response) BadRequest()
- func (res *Response) Created()
- func (res *Response) File(path string)
- func (res *Response) Forbidden()
- func (res *Response) HTML(path string, templateData interface{})
- func (res *Response) JSON(status uint16, target interface{})
- func (res *Response) NotFound()
- func (res *Response) Ok()
- func (res *Response) Push(path string)
- func (res *Response) PushRequests() []*Request
- func (res *Response) String(status uint16, s string)
- func (res *Response) Unauthorized()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Request ¶
type Request struct { Method string URI string Authority string // Host Scheme string RawQuery string Params map[string]string Header map[string]string Body []byte // contains filtered or unexported fields }
Request contains and manages all request-relevant data.
func NewRequest ¶
func NewRequest() *Request
NewRequest builds a new request with initialized fields
func (*Request) Finish ¶
func (r *Request) Finish()
Finish makes the request finished. Which means next handler in the function won't run.
func (*Request) IsFinished ¶
IsFinished says if the request is finished or not
func (*Request) JSON ¶
func (r *Request) JSON(target interface{})
JSON parses the request body as JSON into a target interface.
type Response ¶
type Response struct { Status uint16 Body []byte Header map[string]string // contains filtered or unexported fields }
Response represents a http-response
func (*Response) BadRequest ¶
func (res *Response) BadRequest()
BadRequest sets response status-code to 403
func (*Response) Forbidden ¶
func (res *Response) Forbidden()
Forbidden sets response status-code to 403
func (*Response) HTML ¶
HTML reads an html-file and builds a html-response. Includes support for templates.
func (*Response) NotFound ¶
func (res *Response) NotFound()
NotFound sets response status-code to 404
func (*Response) PushRequests ¶
PushRequests returns all initialized Push-Requests
func (*Response) Unauthorized ¶
func (res *Response) Unauthorized()
Unauthorized sets response status-code to 401