gitea/modules/middleware/context.go

128 lines
2.8 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.
package middleware
import (
2014-03-15 14:17:16 +01:00
"fmt"
"net/http"
2014-03-19 14:57:55 +01:00
"time"
"github.com/codegangsta/martini"
"github.com/martini-contrib/sessions"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/auth"
2014-03-20 12:50:26 +01:00
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/log"
)
2014-03-15 14:17:16 +01:00
// Context represents context of a request.
type Context struct {
2014-03-19 14:57:55 +01:00
*Render
c martini.Context
p martini.Params
Req *http.Request
Res http.ResponseWriter
Session sessions.Session
User *models.User
IsSigned bool
2014-03-15 17:03:23 +01:00
Repo struct {
IsValid bool
IsOwner bool
2014-03-20 04:48:30 +01:00
IsWatching bool
2014-03-15 17:03:23 +01:00
Repository *models.Repository
2014-03-15 17:14:26 +01:00
Owner *models.User
2014-03-20 05:12:33 +01:00
CloneLink struct {
SSH string
HTTPS string
Git string
}
2014-03-15 17:03:23 +01:00
}
}
2014-03-15 14:17:16 +01:00
// Query querys form parameter.
func (ctx *Context) Query(name string) string {
ctx.Req.ParseForm()
return ctx.Req.Form.Get(name)
}
// func (ctx *Context) Param(name string) string {
// return ctx.p[name]
// }
2014-03-15 15:52:14 +01:00
// HasError returns true if error occurs in form validation.
func (ctx *Context) HasError() bool {
hasErr, ok := ctx.Data["HasError"]
if !ok {
return false
}
return hasErr.(bool)
}
2014-03-20 12:50:26 +01:00
// HTML calls render.HTML underlying but reduce one argument.
func (ctx *Context) HTML(status int, name string, htmlOpt ...HTMLOptions) {
ctx.Render.HTML(status, name, ctx.Data, htmlOpt...)
}
2014-03-15 15:52:14 +01:00
// RenderWithErr used for page has form validation but need to prompt error to users.
func (ctx *Context) RenderWithErr(msg, tpl string, form auth.Form) {
ctx.Data["HasError"] = true
ctx.Data["ErrorMsg"] = msg
auth.AssignForm(form, ctx.Data)
2014-03-20 12:50:26 +01:00
ctx.HTML(200, tpl)
2014-03-15 15:52:14 +01:00
}
2014-03-15 14:17:16 +01:00
// Handle handles and logs error by given status.
func (ctx *Context) Handle(status int, title string, err error) {
log.Error("%s: %v", title, err)
2014-03-19 09:48:45 +01:00
if martini.Dev == martini.Prod {
2014-03-20 12:50:26 +01:00
ctx.HTML(500, "status/500")
2014-03-19 09:48:45 +01:00
return
}
ctx.Data["ErrorMsg"] = err
2014-03-20 12:50:26 +01:00
ctx.HTML(status, fmt.Sprintf("status/%d", status))
}
2014-03-15 14:17:16 +01:00
// InitContext initializes a classic context for a request.
func InitContext() martini.Handler {
return func(res http.ResponseWriter, r *http.Request, c martini.Context,
2014-03-19 14:57:55 +01:00
session sessions.Session, rd *Render) {
ctx := &Context{
c: c,
// p: p,
2014-03-15 15:34:33 +01:00
Req: r,
Res: res,
Session: session,
Render: rd,
}
// Get user from session if logined.
user := auth.SignedInUser(session)
ctx.User = user
2014-03-15 13:50:17 +01:00
ctx.IsSigned = user != nil
2014-03-19 14:57:55 +01:00
ctx.Data["IsSigned"] = ctx.IsSigned
2014-03-15 13:50:17 +01:00
if user != nil {
2014-03-19 14:57:55 +01:00
ctx.Data["SignedUser"] = user
ctx.Data["SignedUserId"] = user.Id
ctx.Data["SignedUserName"] = user.LowerName
2014-03-20 12:50:26 +01:00
if ctx.User.IsAdmin || ctx.User.LowerName == base.AdminName {
ctx.Data["IsAdmin"] = true
}
2014-03-15 13:50:17 +01:00
}
2014-03-19 14:57:55 +01:00
ctx.Data["PageStartTime"] = time.Now()
c.Map(ctx)
c.Next()
}
}