diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-10-20 22:37:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 16:37:19 +0200 |
commit | f494776931b71f83fdfdd4e68e850529c4b2614f (patch) | |
tree | 92b3779237dadfe042d3f93e9ddaaaac5d6d385f /modules | |
parent | 0208ea0248782a994771cadf0af6a4125fdde723 (diff) | |
download | gitea-f494776931b71f83fdfdd4e68e850529c4b2614f.tar.gz gitea-f494776931b71f83fdfdd4e68e850529c4b2614f.zip |
Use a variable but a function for IsProd because of a slight performance increment (#17368)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/context/api.go | 4 | ||||
-rw-r--r-- | modules/context/context.go | 6 | ||||
-rw-r--r-- | modules/httpcache/httpcache.go | 2 | ||||
-rw-r--r-- | modules/setting/setting.go | 7 | ||||
-rw-r--r-- | modules/templates/base.go | 2 |
5 files changed, 9 insertions, 12 deletions
diff --git a/modules/context/api.go b/modules/context/api.go index e5216d911f..c978835af8 100644 --- a/modules/context/api.go +++ b/modules/context/api.go @@ -95,7 +95,7 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) { if status == http.StatusInternalServerError { log.ErrorWithSkip(1, "%s: %s", title, message) - if setting.IsProd() && !(ctx.User != nil && ctx.User.IsAdmin) { + if setting.IsProd && !(ctx.User != nil && ctx.User.IsAdmin) { message = "" } } @@ -112,7 +112,7 @@ func (ctx *APIContext) InternalServerError(err error) { log.ErrorWithSkip(1, "InternalServerError: %v", err) var message string - if !setting.IsProd() || (ctx.User != nil && ctx.User.IsAdmin) { + if !setting.IsProd || (ctx.User != nil && ctx.User.IsAdmin) { message = err.Error() } diff --git a/modules/context/context.go b/modules/context/context.go index 0a603cced5..383a69ad63 100644 --- a/modules/context/context.go +++ b/modules/context/context.go @@ -225,7 +225,7 @@ func (ctx *Context) NotFound(title string, err error) { func (ctx *Context) notFoundInternal(title string, err error) { if err != nil { log.ErrorWithSkip(2, "%s: %v", title, err) - if !setting.IsProd() { + if !setting.IsProd { ctx.Data["ErrorMsg"] = err } } @@ -261,7 +261,7 @@ func (ctx *Context) ServerError(title string, err error) { func (ctx *Context) serverErrorInternal(title string, err error) { if err != nil { log.ErrorWithSkip(2, "%s: %v", title, err) - if !setting.IsProd() { + if !setting.IsProd { ctx.Data["ErrorMsg"] = err } } @@ -645,7 +645,7 @@ func Contexter() func(next http.Handler) http.Handler { "CurrentURL": setting.AppSubURL + req.URL.RequestURI(), "PageStartTime": startTime, "Link": link, - "IsProd": setting.IsProd(), + "IsProd": setting.IsProd, }, } // PageData is passed by reference, and it will be rendered to `window.config.pageData` in `head.tmpl` for JavaScript modules diff --git a/modules/httpcache/httpcache.go b/modules/httpcache/httpcache.go index 35d4e6dfd8..11b63148d9 100644 --- a/modules/httpcache/httpcache.go +++ b/modules/httpcache/httpcache.go @@ -18,7 +18,7 @@ import ( // AddCacheControlToHeader adds suitable cache-control headers to response func AddCacheControlToHeader(h http.Header, d time.Duration) { - if setting.IsProd() { + if setting.IsProd { h.Set("Cache-Control", "private, max-age="+strconv.Itoa(int(d.Seconds()))) } else { h.Set("Cache-Control", "no-store") diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 2133184cfc..a1ac090e46 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -419,17 +419,13 @@ var ( PIDFile = "/run/gitea.pid" WritePIDFile bool RunMode string + IsProd bool RunUser string IsWindows bool HasRobotsTxt bool InternalToken string // internal access token ) -// IsProd if it's a production mode -func IsProd() bool { - return strings.EqualFold(RunMode, "prod") -} - func getAppPath() (string, error) { var appPath string var err error @@ -906,6 +902,7 @@ func NewContext() { // Please don't use root as a bandaid to "fix" something that is broken, instead the broken thing should instead be fixed properly. unsafeAllowRunAsRoot := Cfg.Section("").Key("I_AM_BEING_UNSAFE_RUNNING_AS_ROOT").MustBool(false) RunMode = Cfg.Section("").Key("RUN_MODE").MustString("prod") + IsProd = strings.EqualFold(RunMode, "prod") // Does not check run user when the install lock is off. if InstallLock { currentUser, match := IsRunUserMatchCurrentUser(RunUser) diff --git a/modules/templates/base.go b/modules/templates/base.go index cb83143bd3..f753bfbe4e 100644 --- a/modules/templates/base.go +++ b/modules/templates/base.go @@ -91,7 +91,7 @@ func HTMLRenderer() *render.Render { Funcs: NewFuncMap(), Asset: GetAsset, AssetNames: GetAssetNames, - IsDevelopment: !setting.IsProd(), + IsDevelopment: !setting.IsProd, DisableHTTPErrorRendering: true, }) } |