2022-11-12 19:37:20 +00:00
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
stdContext "context"
|
|
|
|
"net/http"
|
2022-11-12 19:43:44 +00:00
|
|
|
|
|
|
|
"codeberg.org/codeberg/pages/server/utils"
|
2022-11-12 19:37:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Context struct {
|
|
|
|
RespWriter http.ResponseWriter
|
|
|
|
Req *http.Request
|
|
|
|
StatusCode int
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(w http.ResponseWriter, r *http.Request) *Context {
|
|
|
|
return &Context{
|
|
|
|
RespWriter: w,
|
|
|
|
Req: r,
|
|
|
|
StatusCode: http.StatusOK,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) Context() stdContext.Context {
|
|
|
|
if c.Req != nil {
|
|
|
|
return c.Req.Context()
|
|
|
|
}
|
|
|
|
return stdContext.Background()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) Response() *http.Response {
|
|
|
|
if c.Req != nil && c.Req.Response != nil {
|
|
|
|
return c.Req.Response
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) String(raw string, status ...int) {
|
|
|
|
code := http.StatusOK
|
|
|
|
if len(status) != 0 {
|
|
|
|
code = status[0]
|
|
|
|
}
|
|
|
|
c.RespWriter.WriteHeader(code)
|
|
|
|
_, _ = c.RespWriter.Write([]byte(raw))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) Redirect(uri string, statusCode int) {
|
|
|
|
http.Redirect(c.RespWriter, c.Req, uri, statusCode)
|
|
|
|
}
|
|
|
|
|
2023-08-27 08:13:15 +00:00
|
|
|
// Path returns the cleaned requested path.
|
2022-11-12 19:37:20 +00:00
|
|
|
func (c *Context) Path() string {
|
2023-08-27 08:13:15 +00:00
|
|
|
return utils.CleanPath(c.Req.URL.Path)
|
2022-11-12 19:37:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Context) Host() string {
|
|
|
|
return c.Req.URL.Host
|
|
|
|
}
|
2022-11-12 19:43:44 +00:00
|
|
|
|
|
|
|
func (c *Context) TrimHostPort() string {
|
|
|
|
return utils.TrimHostPort(c.Req.Host)
|
|
|
|
}
|