diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-05-05 16:13:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 16:13:23 +0200 |
commit | 04fc4b7e05bfbfee6cb7aa4f6c30d1af6f2d4d2d (patch) | |
tree | f587d103068be565bd3d61e19f113f255f713763 /modules/context | |
parent | Remove `RequireHighlightJS` field, update plantuml example. (#19615) (diff) | |
download | forgejo-04fc4b7e05bfbfee6cb7aa4f6c30d1af6f2d4d2d.tar.xz forgejo-04fc4b7e05bfbfee6cb7aa4f6c30d1af6f2d4d2d.zip |
Call MultipartForm.RemoveAll when request finishes (#19606)
Diffstat (limited to 'modules/context')
-rw-r--r-- | modules/context/api.go | 1 | ||||
-rw-r--r-- | modules/context/context.go | 12 | ||||
-rw-r--r-- | modules/context/package.go | 1 | ||||
-rw-r--r-- | modules/context/private.go | 2 |
4 files changed, 16 insertions, 0 deletions
diff --git a/modules/context/api.go b/modules/context/api.go index 20a3e05177..33534dbf6b 100644 --- a/modules/context/api.go +++ b/modules/context/api.go @@ -256,6 +256,7 @@ func APIContexter() func(http.Handler) http.Handler { }, Org: &APIOrganization{}, } + defer ctx.Close() ctx.Req = WithAPIContext(WithContext(req, ctx.Context), &ctx) diff --git a/modules/context/context.go b/modules/context/context.go index 17e1673a36..dcc43973ca 100644 --- a/modules/context/context.go +++ b/modules/context/context.go @@ -75,6 +75,16 @@ type Context struct { Package *Package } +// Close frees all resources hold by Context +func (ctx *Context) Close() error { + var err error + if ctx.Req != nil && ctx.Req.MultipartForm != nil { + err = ctx.Req.MultipartForm.RemoveAll() // remove the temp files buffered to tmp directory + } + // TODO: close opened repo, and more + return err +} + // TrHTMLEscapeArgs runs Tr but pre-escapes all arguments with html.EscapeString. // This is useful if the locale message is intended to only produce HTML content. func (ctx *Context) TrHTMLEscapeArgs(msg string, args ...string) string { @@ -693,6 +703,8 @@ func Contexter() func(next http.Handler) http.Handler { "RunModeIsProd": setting.IsProd, }, } + defer ctx.Close() + // PageData is passed by reference, and it will be rendered to `window.config.pageData` in `head.tmpl` for JavaScript modules ctx.PageData = map[string]interface{}{} ctx.Data["PageData"] = ctx.PageData diff --git a/modules/context/package.go b/modules/context/package.go index 47af88c97b..cb352fb18a 100644 --- a/modules/context/package.go +++ b/modules/context/package.go @@ -100,6 +100,7 @@ func PackageContexter() func(next http.Handler) http.Handler { Resp: NewResponse(resp), Data: map[string]interface{}{}, } + defer ctx.Close() ctx.Req = WithContext(req, &ctx) diff --git a/modules/context/private.go b/modules/context/private.go index b57ba102e6..fdc7751227 100644 --- a/modules/context/private.go +++ b/modules/context/private.go @@ -66,6 +66,8 @@ func PrivateContexter() func(http.Handler) http.Handler { Data: map[string]interface{}{}, }, } + defer ctx.Close() + ctx.Req = WithPrivateContext(req, ctx) ctx.Data["Context"] = ctx next.ServeHTTP(ctx.Resp, ctx.Req) |