gogs/pkg/context/context.go

223 lines
6.4 KiB
Go
Raw Normal View History

// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2016-03-11 19:56:52 +03:00
package context
import (
2014-03-15 17:17:16 +04:00
"fmt"
2014-03-22 21:44:02 +04:00
"html/template"
2014-04-15 20:27:29 +04:00
"io"
"net/http"
2014-03-23 00:40:09 +04:00
"strings"
2014-03-19 17:57:55 +04:00
"time"
2015-10-16 04:28:12 +03:00
"github.com/go-macaron/cache"
"github.com/go-macaron/csrf"
"github.com/go-macaron/i18n"
"github.com/go-macaron/session"
2017-02-10 03:29:59 +03:00
log "gopkg.in/clog.v1"
2015-10-16 04:28:12 +03:00
"gopkg.in/macaron.v1"
2014-03-21 17:06:47 +04:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/pkg/auth"
"github.com/gogits/gogs/pkg/base"
"github.com/gogits/gogs/pkg/form"
"github.com/gogits/gogs/pkg/setting"
)
2014-03-15 17:17:16 +04:00
// Context represents context of a request.
type Context struct {
2014-07-26 08:24:27 +04:00
*macaron.Context
Cache cache.Cache
csrf csrf.CSRF
2014-07-26 08:24:27 +04:00
Flash *session.Flash
Session session.Store
2014-11-18 19:07:16 +03:00
User *models.User
IsSigned bool
IsBasicAuth bool
2014-03-15 20:03:23 +04:00
2016-03-11 19:56:52 +03:00
Repo *Repository
2016-03-14 00:37:44 +03:00
Org *Organization
}
func (ctx *Context) UserID() int64 {
if !ctx.IsSigned {
return 0
}
return ctx.User.ID
}
2014-05-05 21:08:01 +04:00
// HasError returns true if error occurs in form validation.
func (ctx *Context) HasApiError() bool {
hasErr, ok := ctx.Data["HasError"]
if !ok {
return false
}
return hasErr.(bool)
}
func (ctx *Context) GetErrMsg() string {
return ctx.Data["ErrorMsg"].(string)
}
2014-03-15 18:52:14 +04:00
// HasError returns true if error occurs in form validation.
func (ctx *Context) HasError() bool {
hasErr, ok := ctx.Data["HasError"]
if !ok {
return false
}
2014-04-14 02:12:07 +04:00
ctx.Flash.ErrorMsg = ctx.Data["ErrorMsg"].(string)
ctx.Data["Flash"] = ctx.Flash
2014-03-15 18:52:14 +04:00
return hasErr.(bool)
}
2015-07-08 14:47:56 +03:00
// HasValue returns true if value of given name exists.
func (ctx *Context) HasValue(name string) bool {
_, ok := ctx.Data[name]
return ok
}
// HTML responses template with given status.
2014-07-26 08:24:27 +04:00
func (ctx *Context) HTML(status int, name base.TplName) {
2017-02-10 03:29:59 +03:00
log.Trace("Template: %s", name)
2014-08-02 21:47:33 +04:00
ctx.Context.HTML(status, string(name))
2014-03-20 15:50:26 +04:00
}
// Success responses template with status http.StatusOK.
func (c *Context) Success(name base.TplName) {
c.HTML(http.StatusOK, name)
}
2014-03-15 18:52:14 +04:00
// RenderWithErr used for page has form validation but need to prompt error to users.
func (ctx *Context) RenderWithErr(msg string, tpl base.TplName, f interface{}) {
if f != nil {
form.Assign(f, ctx.Data)
2014-04-03 23:50:55 +04:00
}
2014-04-11 00:36:50 +04:00
ctx.Flash.ErrorMsg = msg
ctx.Data["Flash"] = ctx.Flash
ctx.HTML(http.StatusOK, tpl)
2014-03-15 18:52:14 +04:00
}
2014-03-15 17:17:16 +04:00
// Handle handles and logs error by given status.
func (ctx *Context) Handle(status int, title string, err error) {
2014-05-02 02:53:41 +04:00
switch status {
case http.StatusNotFound:
2014-05-02 02:53:41 +04:00
ctx.Data["Title"] = "Page Not Found"
case http.StatusInternalServerError:
2014-05-02 02:53:41 +04:00
ctx.Data["Title"] = "Internal Server Error"
2017-02-18 02:23:35 +03:00
log.Error(2, "%s: %v", title, err)
2017-02-11 00:05:11 +03:00
if !setting.ProdMode || (ctx.IsSigned && ctx.User.IsAdmin) {
ctx.Data["ErrorMsg"] = err
}
2014-05-02 02:53:41 +04:00
}
ctx.HTML(status, base.TplName(fmt.Sprintf("status/%d", status)))
}
// NotFound renders the 404 page.
2017-02-11 00:05:11 +03:00
func (ctx *Context) NotFound() {
ctx.Handle(http.StatusNotFound, "", nil)
}
// ServerError renders the 500 page.
func (c *Context) ServerError(title string, err error) {
c.Handle(http.StatusInternalServerError, title, err)
2017-02-11 00:05:11 +03:00
}
2016-08-30 12:08:38 +03:00
// NotFoundOrServerError use error check function to determine if the error
// is about not found. It responses with 404 status code for not found error,
// or error context description for logging purpose of 500 server error.
func (c *Context) NotFoundOrServerError(title string, errck func(error) bool, err error) {
2016-07-25 21:48:17 +03:00
if errck(err) {
c.NotFound()
2016-07-25 21:48:17 +03:00
return
}
c.ServerError(title, err)
2016-07-25 21:48:17 +03:00
}
func (ctx *Context) HandleText(status int, title string) {
2015-10-16 04:28:12 +03:00
ctx.PlainText(status, []byte(title))
}
2014-04-15 20:27:29 +04:00
func (ctx *Context) ServeContent(name string, r io.ReadSeeker, params ...interface{}) {
modtime := time.Now()
for _, p := range params {
switch v := p.(type) {
case time.Time:
modtime = v
}
}
2014-07-26 08:24:27 +04:00
ctx.Resp.Header().Set("Content-Description", "File Transfer")
ctx.Resp.Header().Set("Content-Type", "application/octet-stream")
ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+name)
ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
ctx.Resp.Header().Set("Expires", "0")
ctx.Resp.Header().Set("Cache-Control", "must-revalidate")
ctx.Resp.Header().Set("Pragma", "public")
2014-10-19 07:26:55 +04:00
http.ServeContent(ctx.Resp, ctx.Req.Request, name, modtime, r)
2014-04-10 22:37:43 +04:00
}
2014-07-26 08:24:27 +04:00
// Contexter initializes a classic context for a request.
func Contexter() macaron.Handler {
return func(c *macaron.Context, l i18n.Locale, cache cache.Cache, sess session.Store, f *session.Flash, x csrf.CSRF) {
ctx := &Context{
2014-07-26 08:24:27 +04:00
Context: c,
Cache: cache,
csrf: x,
2014-07-26 08:24:27 +04:00
Flash: f,
Session: sess,
2016-03-11 19:56:52 +03:00
Repo: &Repository{
PullRequest: &PullRequest{},
2016-03-07 07:57:46 +03:00
},
2016-03-14 00:37:44 +03:00
Org: &Organization{},
}
if len(setting.HTTP.AccessControlAllowOrigin) > 0 {
ctx.Header().Set("Access-Control-Allow-Origin", setting.HTTP.AccessControlAllowOrigin)
ctx.Header().Set("'Access-Control-Allow-Credentials' ", "true")
ctx.Header().Set("Access-Control-Max-Age", "3600")
ctx.Header().Set("Access-Control-Allow-Headers", "Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With")
}
2014-07-26 08:24:27 +04:00
// Compute current URL for real-time change language.
2015-11-14 00:43:43 +03:00
ctx.Data["Link"] = setting.AppSubUrl + strings.TrimSuffix(ctx.Req.URL.Path, "/")
2014-04-10 22:37:43 +04:00
2014-07-26 08:24:27 +04:00
ctx.Data["PageStartTime"] = time.Now()
2014-03-22 16:49:53 +04:00
// Get user from session if logined.
ctx.User, ctx.IsBasicAuth = auth.SignedInUser(ctx.Context, ctx.Session)
2014-11-07 22:46:13 +03:00
2014-07-26 08:24:27 +04:00
if ctx.User != nil {
ctx.IsSigned = true
ctx.Data["IsSigned"] = ctx.IsSigned
ctx.Data["SignedUser"] = ctx.User
2016-07-23 20:08:22 +03:00
ctx.Data["SignedUserID"] = ctx.User.ID
2014-11-07 06:06:41 +03:00
ctx.Data["SignedUserName"] = ctx.User.Name
2014-03-20 16:02:14 +04:00
ctx.Data["IsAdmin"] = ctx.User.IsAdmin
2014-11-07 06:06:41 +03:00
} else {
2015-08-19 18:14:57 +03:00
ctx.Data["SignedUserID"] = 0
2014-11-07 06:06:41 +03:00
ctx.Data["SignedUserName"] = ""
2014-03-15 16:50:17 +04:00
}
2014-07-24 17:19:59 +04:00
// If request sends files, parse them here otherwise the Query() can't be parsed and the CsrfToken will be invalid.
2014-07-26 08:24:27 +04:00
if ctx.Req.Method == "POST" && strings.Contains(ctx.Req.Header.Get("Content-Type"), "multipart/form-data") {
if err := ctx.Req.ParseMultipartForm(setting.AttachmentMaxSize << 20); err != nil && !strings.Contains(err.Error(), "EOF") { // 32MB max size
ctx.Handle(500, "ParseMultipartForm", err)
2014-07-24 17:19:59 +04:00
return
}
}
ctx.Data["CsrfToken"] = x.GetToken()
ctx.Data["CsrfTokenHtml"] = template.HTML(`<input type="hidden" name="_csrf" value="` + x.GetToken() + `">`)
2017-02-10 03:29:59 +03:00
log.Trace("Session ID: %s", sess.ID())
log.Trace("CSRF Token: %v", ctx.Data["CsrfToken"])
2014-03-19 17:57:55 +04:00
2015-02-07 05:16:23 +03:00
ctx.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton
ctx.Data["ShowFooterBranding"] = setting.ShowFooterBranding
ctx.Data["ShowFooterVersion"] = setting.ShowFooterVersion
2015-02-07 05:16:23 +03:00
c.Map(ctx)
}
}