diff options
author | zeripath <art27@cantab.net> | 2021-11-20 15:33:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 23:33:18 +0800 |
commit | f8ec43dbc7ca10e456ddf0cf739d2f5035dea879 (patch) | |
tree | 029cfc4033b421993bf433b0c34afba4f885587d /services/auth/basic.go | |
parent | 931d0cf854afc06a4d3d3dc3277d2f383efd3423 (diff) | |
download | gitea-f8ec43dbc7ca10e456ddf0cf739d2f5035dea879.tar.gz gitea-f8ec43dbc7ca10e456ddf0cf739d2f5035dea879.zip |
Extract constant names out for the ReverseProxy and Basic authentication methods (#17735)
In order to reduce load on the GC extract out the constant names of the Basic and ReverseProxy methods.
As mentioned in https://github.com/go-gitea/gitea/pull/15119#discussion_r730352176
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'services/auth/basic.go')
-rw-r--r-- | services/auth/basic.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/services/auth/basic.go b/services/auth/basic.go index d7f889cbdc..9cfbd0f644 100644 --- a/services/auth/basic.go +++ b/services/auth/basic.go @@ -23,6 +23,9 @@ var ( _ Named = &Basic{} ) +// BasicMethodName is the constant name of the basic authentication method +const BasicMethodName = "basic" + // Basic implements the Auth interface and authenticates requests (API requests // only) by looking for Basic authentication data or "x-oauth-basic" token in the "Authorization" // header. @@ -31,7 +34,7 @@ type Basic struct { // Name represents the name of auth method func (b *Basic) Name() string { - return "basic" + return BasicMethodName } // Verify extracts and validates Basic data (username and password/token) from the |