diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-07-24 12:49:43 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-07-24 12:49:43 -0400 |
commit | c20f5dc2ea1b27e80c28e00831278c7451ba6cce (patch) | |
tree | 85d1f32c36f962ad6338ec75e3a7a8ff8baf1905 /modules/middleware/context.go | |
parent | a41a1fe60da5b02891640dd5f99758015b78bcc9 (diff) | |
parent | da0240aacd5646bd73b2e22d92d88578dbafd64b (diff) | |
download | gitea-c20f5dc2ea1b27e80c28e00831278c7451ba6cce.tar.gz gitea-c20f5dc2ea1b27e80c28e00831278c7451ba6cce.zip |
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'modules/middleware/context.go')
-rw-r--r-- | modules/middleware/context.go | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/middleware/context.go b/modules/middleware/context.go index 6bd529cd1d..cf849802d9 100644 --- a/modules/middleware/context.go +++ b/modules/middleware/context.go @@ -319,7 +319,6 @@ func (f *Flash) Success(msg string) { // InitContext initializes a classic context for a request. func InitContext() martini.Handler { return func(res http.ResponseWriter, r *http.Request, c martini.Context, rd *Render) { - ctx := &Context{ c: c, // p: p, @@ -328,7 +327,6 @@ func InitContext() martini.Handler { Cache: setting.Cache, Render: rd, } - ctx.Data["PageStartTime"] = time.Now() // start session @@ -370,6 +368,14 @@ func InitContext() martini.Handler { ctx.Data["IsAdmin"] = ctx.User.IsAdmin } + // If request sends files, parse them here otherwise the Query() can't be parsed and the CsrfToken will be invalid. + if strings.Contains(r.Header.Get("Content-Type"), "multipart/form-data") { + if err = ctx.Req.ParseMultipartForm(setting.AttachmentMaxSize << 20); err != nil { // 32MB max size + ctx.Handle(500, "issue.Comment(ctx.Req.ParseMultipartForm)", err) + return + } + } + // get or create csrf token ctx.Data["CsrfToken"] = ctx.CsrfToken() ctx.Data["CsrfTokenHtml"] = template.HTML(`<input type="hidden" name="_csrf" value="` + ctx.csrfToken + `">`) |