diff options
author | Yang Liu <50459973+ly4096x@users.noreply.github.com> | 2022-10-22 09:25:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 21:25:36 +0800 |
commit | b9f5cfddc18c55eee62e1fb64a254fee9782c46c (patch) | |
tree | 01aca35598976c86a63243135ada1abc48275196 /internal/db | |
parent | fd5874b07b73687f90e8cb7b171b67457364ebe9 (diff) |
auth: enable authentication by token from password (#7198)
Co-authored-by: Joe Chen <jc@unknwon.io>
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/access_tokens.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/db/access_tokens.go b/internal/db/access_tokens.go index 7ed44ae9..58f77858 100644 --- a/internal/db/access_tokens.go +++ b/internal/db/access_tokens.go @@ -144,6 +144,11 @@ func (ErrAccessTokenNotExist) NotFound() bool { } func (db *accessTokens) GetBySHA1(ctx context.Context, sha1 string) (*AccessToken, error) { + // No need to waste a query for an empty SHA1. + if sha1 == "" { + return nil, ErrAccessTokenNotExist{args: errutil.Args{"sha": sha1}} + } + sha256 := cryptoutil.SHA256(sha1) token := new(AccessToken) err := db.WithContext(ctx).Where("sha256 = ?", sha256).First(token).Error |