2014-03-15 16:31:50 +05:30
|
|
|
// 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.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2014-03-15 18:47:16 +05:30
|
|
|
"fmt"
|
2014-03-22 23:14:02 +05:30
|
|
|
"html/template"
|
2014-04-15 21:57:29 +05:30
|
|
|
"io"
|
2014-03-15 16:31:50 +05:30
|
|
|
"net/http"
|
2014-03-23 02:10:09 +05:30
|
|
|
"strings"
|
2014-03-19 19:27:55 +05:30
|
|
|
"time"
|
2014-03-15 16:31:50 +05:30
|
|
|
|
2015-10-16 06:58:12 +05:30
|
|
|
"github.com/go-macaron/cache"
|
|
|
|
"github.com/go-macaron/csrf"
|
|
|
|
"github.com/go-macaron/i18n"
|
|
|
|
"github.com/go-macaron/session"
|
|
|
|
"gopkg.in/macaron.v1"
|
2014-03-21 18:36:47 +05:30
|
|
|
|
2015-12-16 03:55:45 +05:30
|
|
|
"github.com/gogits/git-module"
|
2015-12-10 07:16:05 +05:30
|
|
|
|
2014-03-15 16:31:50 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2014-03-21 19:01:47 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-15 16:31:50 +05:30
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-05-26 05:41:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-15 16:31:50 +05:30
|
|
|
)
|
|
|
|
|
2015-08-26 22:00:06 +05:30
|
|
|
type RepoContext struct {
|
|
|
|
AccessMode models.AccessMode
|
|
|
|
IsWatching bool
|
2015-12-09 11:02:53 +05:30
|
|
|
IsViewBranch bool
|
|
|
|
IsViewTag bool
|
|
|
|
IsViewCommit bool
|
2015-08-26 22:00:06 +05:30
|
|
|
Repository *models.Repository
|
|
|
|
Owner *models.User
|
|
|
|
Commit *git.Commit
|
|
|
|
Tag *git.Tag
|
|
|
|
GitRepo *git.Repository
|
|
|
|
BranchName string
|
|
|
|
TagName string
|
|
|
|
TreeName string
|
2015-08-31 12:54:28 +05:30
|
|
|
CommitID string
|
2015-08-26 22:00:06 +05:30
|
|
|
RepoLink string
|
|
|
|
CloneLink models.CloneLink
|
2015-12-10 07:16:05 +05:30
|
|
|
CommitsCount int64
|
2015-08-26 22:00:06 +05:30
|
|
|
Mirror *models.Mirror
|
|
|
|
}
|
|
|
|
|
2014-03-15 18:47:16 +05:30
|
|
|
// Context represents context of a request.
|
2014-03-15 16:31:50 +05:30
|
|
|
type Context struct {
|
2014-07-26 09:54:27 +05:30
|
|
|
*macaron.Context
|
2014-08-01 02:55:34 +05:30
|
|
|
Cache cache.Cache
|
|
|
|
csrf csrf.CSRF
|
2014-07-26 09:54:27 +05:30
|
|
|
Flash *session.Flash
|
|
|
|
Session session.Store
|
|
|
|
|
2014-11-18 21:37:16 +05:30
|
|
|
User *models.User
|
|
|
|
IsSigned bool
|
|
|
|
IsBasicAuth bool
|
2014-03-15 21:33:23 +05:30
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
Repo *RepoContext
|
2014-08-14 11:42:21 +05:30
|
|
|
|
|
|
|
Org struct {
|
|
|
|
IsOwner bool
|
|
|
|
IsMember bool
|
2016-01-31 18:58:42 +05:30
|
|
|
IsTeamMember bool // Is member of team.
|
2016-01-31 20:48:28 +05:30
|
|
|
IsTeamAdmin bool // In owner team or team that has admin permission level.
|
2014-08-14 11:42:21 +05:30
|
|
|
Organization *models.User
|
2014-08-15 15:59:41 +05:30
|
|
|
OrgLink string
|
2014-08-16 13:51:17 +05:30
|
|
|
|
|
|
|
Team *models.Team
|
2014-08-14 11:42:21 +05:30
|
|
|
}
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
|
2015-08-14 22:12:43 +05:30
|
|
|
// IsOwner returns true if current user is the owner of repository.
|
2015-11-27 12:20:38 +05:30
|
|
|
func (r *RepoContext) IsOwner() bool {
|
2015-08-14 22:12:43 +05:30
|
|
|
return r.AccessMode >= models.ACCESS_MODE_OWNER
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsAdmin returns true if current user has admin or higher access of repository.
|
2015-11-27 12:20:38 +05:30
|
|
|
func (r *RepoContext) IsAdmin() bool {
|
2015-08-14 22:12:43 +05:30
|
|
|
return r.AccessMode >= models.ACCESS_MODE_ADMIN
|
2015-02-16 16:21:56 +05:30
|
|
|
}
|
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
// IsPusher returns true if current user has write or higher access of repository.
|
|
|
|
func (r *RepoContext) IsPusher() bool {
|
|
|
|
return r.AccessMode >= models.ACCESS_MODE_WRITE
|
|
|
|
}
|
|
|
|
|
2015-02-16 16:21:56 +05:30
|
|
|
// Return if the current user has read access for this repository
|
2015-11-27 12:20:38 +05:30
|
|
|
func (r *RepoContext) HasAccess() bool {
|
2015-02-16 16:21:56 +05:30
|
|
|
return r.AccessMode >= models.ACCESS_MODE_READ
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:38:01 +05:30
|
|
|
// 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 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
|
|
|
|
}
|
|
|
|
|
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) {
|
2015-12-20 11:36:54 +05:30
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-03-15 18:47:16 +05:30
|
|
|
// Handle handles and logs error by given status.
|
|
|
|
func (ctx *Context) Handle(status int, 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
|
|
|
}
|
|
|
|
|
2014-05-02 04:23:41 +05:30
|
|
|
switch status {
|
|
|
|
case 404:
|
|
|
|
ctx.Data["Title"] = "Page Not Found"
|
|
|
|
case 500:
|
|
|
|
ctx.Data["Title"] = "Internal Server Error"
|
|
|
|
}
|
2014-06-22 22:44:03 +05:30
|
|
|
ctx.HTML(status, base.TplName(fmt.Sprintf("status/%d", status)))
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
|
|
|
|
2015-03-28 20:00:05 +05:30
|
|
|
func (ctx *Context) HandleText(status int, title string) {
|
2015-07-08 17:17:56 +05:30
|
|
|
if (status/100 == 4) || (status/100 == 5) {
|
2015-03-28 20:00:05 +05:30
|
|
|
log.Error(4, "%s", title)
|
|
|
|
}
|
2015-10-16 06:58:12 +05:30
|
|
|
ctx.PlainText(status, []byte(title))
|
2015-03-28 20:00:05 +05:30
|
|
|
}
|
|
|
|
|
2015-10-09 06:06:07 +05:30
|
|
|
// APIError logs error with title if status is 500.
|
|
|
|
func (ctx *Context) APIError(status int, title string, obj interface{}) {
|
2015-02-22 20:19:25 +05:30
|
|
|
var message string
|
|
|
|
if err, ok := obj.(error); ok {
|
|
|
|
message = err.Error()
|
|
|
|
} else {
|
|
|
|
message = obj.(string)
|
|
|
|
}
|
2015-10-09 06:06:07 +05:30
|
|
|
|
|
|
|
if status == 500 {
|
|
|
|
log.Error(4, "%s: %s", title, message)
|
|
|
|
}
|
|
|
|
|
2015-02-22 20:19:25 +05:30
|
|
|
ctx.JSON(status, map[string]string{
|
|
|
|
"message": message,
|
2015-10-09 06:06:07 +05:30
|
|
|
"url": base.DOC_URL,
|
2015-02-22 20:19:25 +05:30
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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 {
|
2014-08-01 02:55:34 +05:30
|
|
|
return func(c *macaron.Context, l i18n.Locale, cache cache.Cache, sess session.Store, f *session.Flash, x csrf.CSRF) {
|
2014-03-15 16:31:50 +05:30
|
|
|
ctx := &Context{
|
2014-07-26 09:54:27 +05:30
|
|
|
Context: c,
|
2014-08-01 02:55:34 +05:30
|
|
|
Cache: cache,
|
|
|
|
csrf: x,
|
2014-07-26 09:54:27 +05:30
|
|
|
Flash: f,
|
|
|
|
Session: sess,
|
2015-12-05 03:50:23 +05:30
|
|
|
Repo: &RepoContext{},
|
2014-03-15 16:31:50 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
// Compute current URL for real-time change language.
|
2015-11-14 03:13:43 +05:30
|
|
|
ctx.Data["Link"] = setting.AppSubUrl + strings.TrimSuffix(ctx.Req.URL.Path, "/")
|
2014-04-11 00:07:43 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["PageStartTime"] = time.Now()
|
2014-03-22 18:19:53 +05:30
|
|
|
|
2014-03-15 16:31:50 +05:30
|
|
|
// Get user from session if logined.
|
2015-09-02 12:10:15 +05:30
|
|
|
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
|
2015-08-19 20:44:57 +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 {
|
2015-08-19 20:44:57 +05:30
|
|
|
ctx.Data["SignedUserID"] = 0
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Data["SignedUserName"] = ""
|
2014-03-15 18:20:17 +05:30
|
|
|
}
|
2014-03-15 16:31:50 +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.Handle(500, "ParseMultipartForm", err)
|
2014-07-24 18:49:59 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-01 02:55:34 +05:30
|
|
|
ctx.Data["CsrfToken"] = x.GetToken()
|
|
|
|
ctx.Data["CsrfTokenHtml"] = template.HTML(`<input type="hidden" name="_csrf" value="` + x.GetToken() + `">`)
|
2015-12-21 17:54:11 +05:30
|
|
|
log.Debug("Session ID: %s", sess.ID())
|
|
|
|
log.Debug("CSRF Token: %v", ctx.Data["CsrfToken"])
|
2014-03-19 19:27:55 +05:30
|
|
|
|
2015-02-07 07:46:23 +05:30
|
|
|
ctx.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton
|
2015-03-23 19:49:19 +05:30
|
|
|
ctx.Data["ShowFooterBranding"] = setting.ShowFooterBranding
|
2015-11-19 03:02:31 +05:30
|
|
|
ctx.Data["ShowFooterVersion"] = setting.ShowFooterVersion
|
2015-02-07 07:46:23 +05:30
|
|
|
|
2014-03-15 16:31:50 +05:30
|
|
|
c.Map(ctx)
|
|
|
|
}
|
|
|
|
}
|