bench-forgejo/modules/context/context.go

278 lines
8.3 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 22:26:52 +05:30
package context
import (
"html"
2014-03-22 23:14:02 +05:30
"html/template"
2014-04-15 21:57:29 +05:30
"io"
"net/http"
"net/url"
"path"
2014-03-23 02:10:09 +05:30
"strings"
2014-03-19 19:27:55 +05:30
"time"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/auth"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"github.com/Unknwon/com"
2016-11-05 22:26:35 +05:30
"github.com/go-macaron/cache"
"github.com/go-macaron/csrf"
"github.com/go-macaron/i18n"
"github.com/go-macaron/session"
macaron "gopkg.in/macaron.v1"
)
2014-03-15 18:47:16 +05:30
// Context represents context of a request.
type Context struct {
2014-07-26 09:54:27 +05:30
*macaron.Context
Cache cache.Cache
csrf csrf.CSRF
2014-07-26 09:54:27 +05:30
Flash *session.Flash
Session session.Store
Link string // current request URL
EscapedLink string
2014-11-18 21:37:16 +05:30
User *models.User
IsSigned bool
IsBasicAuth bool
2014-03-15 21:33:23 +05:30
2016-03-11 22:26:52 +05:30
Repo *Repository
2016-03-14 03:07:44 +05:30
Org *Organization
}
2016-11-25 12:21:01 +05:30
// HasAPIError returns true if error occurs in form validation.
func (ctx *Context) HasAPIError() bool {
2014-05-05 22:38:01 +05:30
hasErr, ok := ctx.Data["HasError"]
if !ok {
return false
}
return hasErr.(bool)
}
2016-11-25 12:21:01 +05:30
// GetErrMsg returns error message
2014-05-05 22:38:01 +05:30
func (ctx *Context) GetErrMsg() string {
return ctx.Data["ErrorMsg"].(string)
}
2014-03-15 20:22:14 +05:30
// 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 03:42:07 +05:30
ctx.Flash.ErrorMsg = ctx.Data["ErrorMsg"].(string)
ctx.Data["Flash"] = ctx.Flash
2014-03-15 20:22:14 +05:30
return hasErr.(bool)
}
2015-07-08 17:17:56 +05:30
// HasValue returns true if value of given name exists.
func (ctx *Context) HasValue(name string) bool {
_, ok := ctx.Data[name]
return ok
}
// RedirectToFirst redirects to first not empty URL
func (ctx *Context) RedirectToFirst(location ...string) {
for _, loc := range location {
if len(loc) == 0 {
continue
}
u, err := url.Parse(loc)
if err != nil || (u.Scheme != "" && !strings.HasPrefix(strings.ToLower(loc), strings.ToLower(setting.AppURL))) {
continue
}
ctx.Redirect(loc)
return
}
ctx.Redirect(setting.AppSubURL + "/")
return
}
2014-08-02 23:17:33 +05:30
// HTML calls Context.HTML and converts template name to string.
2014-07-26 09:54:27 +05:30
func (ctx *Context) HTML(status int, name base.TplName) {
log.Debug("Template: %s", name)
2014-08-02 23:17:33 +05:30
ctx.Context.HTML(status, string(name))
2014-03-20 17:20:26 +05:30
}
2014-03-15 20:22:14 +05:30
// RenderWithErr used for page has form validation but need to prompt error to users.
2014-07-26 09:54:27 +05:30
func (ctx *Context) RenderWithErr(msg string, tpl base.TplName, form interface{}) {
2014-04-04 01:20:55 +05:30
if form != nil {
auth.AssignForm(form, ctx.Data)
}
2014-04-11 02:06:50 +05:30
ctx.Flash.ErrorMsg = msg
ctx.Data["Flash"] = ctx.Flash
2014-03-20 17:20:26 +05:30
ctx.HTML(200, tpl)
2014-03-15 20:22:14 +05:30
}
// NotFound displays a 404 (Not Found) page and prints the given error, if any.
func (ctx *Context) NotFound(title string, err error) {
2014-05-02 04:23:41 +05:30
if err != nil {
2014-07-26 09:54:27 +05:30
log.Error(4, "%s: %v", title, err)
if macaron.Env != macaron.PROD {
2014-05-02 04:23:41 +05:30
ctx.Data["ErrorMsg"] = err
}
2014-03-19 14:18:45 +05:30
}
ctx.Data["Title"] = "Page Not Found"
ctx.HTML(http.StatusNotFound, base.TplName("status/404"))
}
// ServerError displays a 500 (Internal Server Error) page and prints the given
// error, if any.
func (ctx *Context) ServerError(title string, err error) {
if err != nil {
log.Error(4, "%s: %v", title, err)
if macaron.Env != macaron.PROD {
ctx.Data["ErrorMsg"] = err
}
2014-05-02 04:23:41 +05:30
}
ctx.Data["Title"] = "Internal Server Error"
ctx.HTML(404, base.TplName("status/500"))
}
2016-08-30 14:38:38 +05:30
// 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 (ctx *Context) NotFoundOrServerError(title string, errck func(error) bool, err error) {
2016-07-26 00:18:17 +05:30
if errck(err) {
ctx.NotFound(title, err)
2016-07-26 00:18:17 +05:30
return
}
ctx.ServerError(title, err)
2016-07-26 00:18:17 +05:30
}
2016-11-25 12:21:01 +05:30
// HandleText handles HTTP status code
func (ctx *Context) HandleText(status int, title string) {
2015-07-08 17:17:56 +05:30
if (status/100 == 4) || (status/100 == 5) {
log.Error(4, "%s", title)
}
2015-10-16 06:58:12 +05:30
ctx.PlainText(status, []byte(title))
}
2016-11-25 12:21:01 +05:30
// ServeContent serves content to http request
2014-04-15 21:57:29 +05:30
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 09:54:27 +05:30
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 08:56:55 +05:30
http.ServeContent(ctx.Resp, ctx.Req.Request, name, modtime, r)
2014-04-11 00:07:43 +05:30
}
2014-07-26 09:54:27 +05:30
// 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 09:54:27 +05:30
Context: c,
Cache: cache,
csrf: x,
2014-07-26 09:54:27 +05:30
Flash: f,
Session: sess,
Link: setting.AppSubURL + strings.TrimSuffix(c.Req.URL.EscapedPath(), "/"),
2016-03-11 22:26:52 +05:30
Repo: &Repository{
PullRequest: &PullRequest{},
2016-03-07 10:27:46 +05:30
},
2016-03-14 03:07:44 +05:30
Org: &Organization{},
}
c.Data["Link"] = ctx.Link
2014-07-26 09:54:27 +05:30
ctx.Data["PageStartTime"] = time.Now()
// Quick responses appropriate go-get meta with status 200
// regardless of if user have access to the repository,
// or the repository does not exist at all.
// This is particular a workaround for "go get" command which does not respect
// .netrc file.
if ctx.Query("go-get") == "1" {
ownerName := c.Params(":username")
repoName := c.Params(":reponame")
branchName := "master"
repo, err := models.GetRepositoryByOwnerAndName(ownerName, repoName)
if err == nil && len(repo.DefaultBranch) > 0 {
branchName = repo.DefaultBranch
}
2019-01-31 02:34:19 +05:30
prefix := setting.AppURL + path.Join(url.QueryEscape(ownerName), url.QueryEscape(repoName), "src", "branch", branchName)
2018-01-29 23:20:04 +05:30
c.Header().Set("Content-Type", "text/html")
c.WriteHeader(http.StatusOK)
c.Write([]byte(com.Expand(`<!doctype html>
<html>
<head>
<meta name="go-import" content="{GoGetImport} git {CloneLink}">
<meta name="go-source" content="{GoGetImport} _ {GoDocDirectory} {GoDocFile}">
</head>
<body>
go get {GoGetImport}
</body>
</html>
`, map[string]string{
"GoGetImport": ComposeGoGetImport(ownerName, strings.TrimSuffix(repoName, ".git")),
"CloneLink": models.ComposeHTTPSCloneURL(ownerName, repoName),
"GoDocDirectory": prefix + "{/dir}",
"GoDocFile": prefix + "{/dir}/{file}#L{line}",
})))
return
}
2014-03-22 18:19:53 +05:30
// Get user from session if logged in.
ctx.User, ctx.IsBasicAuth = auth.SignedInUser(ctx.Context, ctx.Session)
2014-11-08 01:16:13 +05:30
2014-07-26 09:54:27 +05:30
if ctx.User != nil {
ctx.IsSigned = true
ctx.Data["IsSigned"] = ctx.IsSigned
ctx.Data["SignedUser"] = ctx.User
2016-07-23 22:38:22 +05:30
ctx.Data["SignedUserID"] = ctx.User.ID
2014-11-07 08:36:41 +05:30
ctx.Data["SignedUserName"] = ctx.User.Name
2014-03-20 17:32:14 +05:30
ctx.Data["IsAdmin"] = ctx.User.IsAdmin
2014-11-07 08:36:41 +05:30
} else {
ctx.Data["SignedUserID"] = int64(0)
2014-11-07 08:36:41 +05:30
ctx.Data["SignedUserName"] = ""
2014-03-15 18:20:17 +05:30
}
2014-07-24 18:49:59 +05:30
// If request sends files, parse them here otherwise the Query() can't be parsed and the CsrfToken will be invalid.
2014-07-26 09:54:27 +05:30
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.ServerError("ParseMultipartForm", err)
2014-07-24 18:49:59 +05:30
return
}
}
ctx.Resp.Header().Set(`X-Frame-Options`, `SAMEORIGIN`)
ctx.Data["CsrfToken"] = html.EscapeString(x.GetToken())
ctx.Data["CsrfTokenHtml"] = template.HTML(`<input type="hidden" name="_csrf" value="` + ctx.Data["CsrfToken"].(string) + `">`)
log.Debug("Session ID: %s", sess.ID())
log.Debug("CSRF Token: %v", ctx.Data["CsrfToken"])
2014-03-19 19:27:55 +05:30
ctx.Data["IsLandingPageHome"] = setting.LandingPageURL == setting.LandingPageHome
ctx.Data["IsLandingPageExplore"] = setting.LandingPageURL == setting.LandingPageExplore
ctx.Data["IsLandingPageOrganizations"] = setting.LandingPageURL == setting.LandingPageOrganizations
2015-02-07 07:46:23 +05:30
ctx.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton
ctx.Data["ShowFooterBranding"] = setting.ShowFooterBranding
ctx.Data["ShowFooterVersion"] = setting.ShowFooterVersion
ctx.Data["EnableSwagger"] = setting.API.EnableSwagger
ctx.Data["EnableOpenIDSignIn"] = setting.Service.EnableOpenIDSignIn
2015-02-07 07:46:23 +05:30
c.Map(ctx)
}
}