2019-11-22 23:33:31 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-06-09 17:53:16 +00:00
|
|
|
package auth
|
2019-11-22 23:33:31 +00:00
|
|
|
|
|
|
|
import (
|
2021-01-05 13:05:40 +00:00
|
|
|
"net/http"
|
2019-11-22 23:33:31 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2021-01-30 08:55:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web/middleware"
|
2021-07-24 10:16:34 +00:00
|
|
|
"code.gitea.io/gitea/services/auth/source/oauth2"
|
2019-11-22 23:33:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Ensure the struct implements the interface.
|
|
|
|
var (
|
2021-07-24 10:16:34 +00:00
|
|
|
_ Method = &OAuth2{}
|
|
|
|
_ Named = &OAuth2{}
|
2019-11-22 23:33:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// CheckOAuthAccessToken returns uid of user from oauth token
|
|
|
|
func CheckOAuthAccessToken(accessToken string) int64 {
|
|
|
|
// JWT tokens require a "."
|
|
|
|
if !strings.Contains(accessToken, ".") {
|
|
|
|
return 0
|
|
|
|
}
|
2021-07-24 10:16:34 +00:00
|
|
|
token, err := oauth2.ParseToken(accessToken)
|
2019-11-22 23:33:31 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Trace("ParseOAuth2Token: %v", err)
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
var grant *models.OAuth2Grant
|
|
|
|
if grant, err = models.GetOAuth2GrantByID(token.GrantID); err != nil || grant == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2021-07-24 10:16:34 +00:00
|
|
|
if token.Type != oauth2.TypeAccessToken {
|
2019-11-22 23:33:31 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if token.ExpiresAt < time.Now().Unix() || token.IssuedAt > time.Now().Unix() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return grant.UserID
|
|
|
|
}
|
|
|
|
|
2021-06-09 17:53:16 +00:00
|
|
|
// OAuth2 implements the Auth interface and authenticates requests
|
2019-11-22 23:33:31 +00:00
|
|
|
// (API requests only) by looking for an OAuth token in query parameters or the
|
|
|
|
// "Authorization" header.
|
|
|
|
type OAuth2 struct {
|
|
|
|
}
|
|
|
|
|
2021-06-09 17:53:16 +00:00
|
|
|
// Name represents the name of auth method
|
|
|
|
func (o *OAuth2) Name() string {
|
|
|
|
return "oauth2"
|
|
|
|
}
|
|
|
|
|
2019-11-22 23:33:31 +00:00
|
|
|
// userIDFromToken returns the user id corresponding to the OAuth token.
|
2021-01-05 13:05:40 +00:00
|
|
|
func (o *OAuth2) userIDFromToken(req *http.Request, store DataStore) int64 {
|
2021-01-26 15:36:53 +00:00
|
|
|
_ = req.ParseForm()
|
|
|
|
|
2019-11-22 23:33:31 +00:00
|
|
|
// Check access token.
|
2021-01-05 13:05:40 +00:00
|
|
|
tokenSHA := req.Form.Get("token")
|
2019-11-22 23:33:31 +00:00
|
|
|
if len(tokenSHA) == 0 {
|
2021-01-05 13:05:40 +00:00
|
|
|
tokenSHA = req.Form.Get("access_token")
|
2019-11-22 23:33:31 +00:00
|
|
|
}
|
|
|
|
if len(tokenSHA) == 0 {
|
|
|
|
// Well, check with header again.
|
2021-01-05 13:05:40 +00:00
|
|
|
auHead := req.Header.Get("Authorization")
|
2019-11-22 23:33:31 +00:00
|
|
|
if len(auHead) > 0 {
|
|
|
|
auths := strings.Fields(auHead)
|
|
|
|
if len(auths) == 2 && (auths[0] == "token" || strings.ToLower(auths[0]) == "bearer") {
|
|
|
|
tokenSHA = auths[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(tokenSHA) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let's see if token is valid.
|
|
|
|
if strings.Contains(tokenSHA, ".") {
|
|
|
|
uid := CheckOAuthAccessToken(tokenSHA)
|
|
|
|
if uid != 0 {
|
2021-01-05 13:05:40 +00:00
|
|
|
store.GetData()["IsApiToken"] = true
|
2019-11-22 23:33:31 +00:00
|
|
|
}
|
|
|
|
return uid
|
|
|
|
}
|
|
|
|
t, err := models.GetAccessTokenBySHA(tokenSHA)
|
|
|
|
if err != nil {
|
2020-08-01 14:45:26 +00:00
|
|
|
if !models.IsErrAccessTokenNotExist(err) && !models.IsErrAccessTokenEmpty(err) {
|
2019-11-22 23:33:31 +00:00
|
|
|
log.Error("GetAccessTokenBySHA: %v", err)
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
t.UpdatedUnix = timeutil.TimeStampNow()
|
|
|
|
if err = models.UpdateAccessToken(t); err != nil {
|
|
|
|
log.Error("UpdateAccessToken: %v", err)
|
|
|
|
}
|
2021-01-05 13:05:40 +00:00
|
|
|
store.GetData()["IsApiToken"] = true
|
2019-11-22 23:33:31 +00:00
|
|
|
return t.UID
|
|
|
|
}
|
|
|
|
|
2021-06-09 17:53:16 +00:00
|
|
|
// Verify extracts the user ID from the OAuth token in the query parameters
|
2019-11-22 23:33:31 +00:00
|
|
|
// or the "Authorization" header and returns the corresponding user object for that ID.
|
|
|
|
// If verification is successful returns an existing user object.
|
|
|
|
// Returns nil if verification fails.
|
2021-06-09 17:53:16 +00:00
|
|
|
func (o *OAuth2) Verify(req *http.Request, w http.ResponseWriter, store DataStore, sess SessionStore) *models.User {
|
2019-11-22 23:33:31 +00:00
|
|
|
if !models.HasEngine {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-08-21 02:16:45 +00:00
|
|
|
if !middleware.IsAPIPath(req) && !isAttachmentDownload(req) && !isAuthenticatedTokenRequest(req) {
|
2019-11-22 23:33:31 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-05 13:05:40 +00:00
|
|
|
id := o.userIDFromToken(req, store)
|
2019-11-22 23:33:31 +00:00
|
|
|
if id <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2021-05-09 16:04:53 +00:00
|
|
|
log.Trace("OAuth2 Authorization: Found token for user[%d]", id)
|
2019-11-22 23:33:31 +00:00
|
|
|
|
|
|
|
user, err := models.GetUserByID(id)
|
|
|
|
if err != nil {
|
|
|
|
if !models.IsErrUserNotExist(err) {
|
|
|
|
log.Error("GetUserByName: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-05-09 16:04:53 +00:00
|
|
|
log.Trace("OAuth2 Authorization: Logged in user %-v", user)
|
2019-11-22 23:33:31 +00:00
|
|
|
return user
|
|
|
|
}
|
2021-08-21 02:16:45 +00:00
|
|
|
|
|
|
|
func isAuthenticatedTokenRequest(req *http.Request) bool {
|
|
|
|
switch req.URL.Path {
|
|
|
|
case "/login/oauth/userinfo":
|
|
|
|
fallthrough
|
|
|
|
case "/login/oauth/introspect":
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|