backend/server/api/middlewares.go (172 lines of code) (raw):
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package api
import (
"encoding/base64"
"fmt"
"net/http"
"regexp"
"strings"
"time"
"github.com/apache/incubator-devlake/core/context"
"github.com/apache/incubator-devlake/core/dal"
"github.com/apache/incubator-devlake/core/errors"
"github.com/apache/incubator-devlake/core/models/common"
"github.com/apache/incubator-devlake/helpers/apikeyhelper"
"github.com/gin-gonic/gin"
)
func getOAuthUserInfo(c *gin.Context) (*common.User, error) {
if c == nil {
return nil, errors.Default.New("request is nil")
}
user := c.GetHeader("X-Forwarded-User")
email := c.GetHeader("X-Forwarded-Email")
return &common.User{
Name: user,
Email: email,
}, nil
}
func getBasicAuthUserInfo(c *gin.Context, basicRes context.BasicRes) (*common.User, error) {
if c == nil {
return nil, errors.Default.New("request is nil")
}
authHeader := c.GetHeader("Authorization")
if authHeader == "" {
basicRes.GetLogger().Debug("Authorization is empty")
return nil, nil
}
basicAuth := strings.TrimPrefix(authHeader, "Basic ")
if basicAuth == authHeader || basicAuth == "" {
return nil, errors.Default.New("invalid basic auth")
}
userInfoData, err := base64.StdEncoding.DecodeString(basicAuth)
if err != nil {
return nil, errors.Default.Wrap(err, "base64 decode")
}
userInfo := strings.Split(string(userInfoData), ":")
if len(userInfo) != 2 {
return nil, errors.Default.New("invalid user info data")
}
return &common.User{
Name: userInfo[0],
}, nil
}
func OAuth2ProxyAuthentication(basicRes context.BasicRes) gin.HandlerFunc {
logger := basicRes.GetLogger()
return func(c *gin.Context) {
_, exist := c.Get(common.USER)
if !exist {
user, err := getOAuthUserInfo(c)
if err != nil {
logger.Error(err, "getOAuthUserInfo")
}
if user == nil || user.Name == "" {
// fetch with basic auth header
user, err = getBasicAuthUserInfo(c, basicRes)
if err != nil {
logger.Debug("getBasicAuthUserInfo")
}
}
if user != nil && user.Name != "" {
c.Set(common.USER, user)
}
}
c.Next()
}
}
func RestAuthentication(router *gin.Engine, basicRes context.BasicRes) gin.HandlerFunc {
type ApiBody struct {
Success bool `json:"success"`
Message string `json:"message"`
}
db := basicRes.GetDal()
logger := basicRes.GetLogger()
if db == nil {
panic(fmt.Errorf("db is not initialised"))
}
apiKeyHelper := apikeyhelper.NewApiKeyHelper(basicRes, logger)
return func(c *gin.Context) {
path := c.Request.URL.Path
// Only open api needs to check api key
if !strings.HasPrefix(path, "/rest") {
logger.Info("path %s will continue", path)
c.Next()
return
}
path = strings.TrimPrefix(path, "/rest")
authHeader := c.GetHeader("Authorization")
if authHeader == "" {
c.Abort()
c.JSON(http.StatusUnauthorized, &ApiBody{
Success: false,
Message: "token is missing",
})
return
}
apiKeyStr := strings.TrimPrefix(authHeader, "Bearer ")
if apiKeyStr == authHeader || apiKeyStr == "" {
c.Abort()
c.JSON(http.StatusUnauthorized, &ApiBody{
Success: false,
Message: "token is not present or malformed",
})
return
}
hashedApiKey, err := apiKeyHelper.DigestToken(apiKeyStr)
if err != nil {
logger.Error(err, "DigestToken")
c.Abort()
c.JSON(http.StatusInternalServerError, &ApiBody{
Success: false,
Message: err.Error(),
})
return
}
apiKey, err := apiKeyHelper.GetApiKey(nil, dal.Where("api_key = ?", hashedApiKey))
if err != nil {
c.Abort()
if db.IsErrorNotFound(err) {
c.JSON(http.StatusForbidden, &ApiBody{
Success: false,
Message: "api key is invalid",
})
} else {
logger.Error(err, "query api key from db")
c.JSON(http.StatusInternalServerError, &ApiBody{
Success: false,
Message: err.Error(),
})
}
return
}
if apiKey.ExpiredAt != nil && time.Until(*apiKey.ExpiredAt) < 0 {
c.Abort()
c.JSON(http.StatusForbidden, &ApiBody{
Success: false,
Message: "api key has expired",
})
return
}
matched, matchErr := regexp.MatchString(apiKey.AllowedPath, path)
if matchErr != nil {
logger.Error(err, "regexp match path error")
c.Abort()
c.JSON(http.StatusInternalServerError, &ApiBody{
Success: false,
Message: matchErr.Error(),
})
return
}
if !matched {
c.JSON(http.StatusForbidden, &ApiBody{
Success: false,
Message: "path doesn't match api key's scope",
})
return
}
logger.Info("redirect path: %s to: %s", c.Request.URL.Path, path)
c.Request.URL.Path = path
c.Set(common.USER, &common.User{
Name: apiKey.Creator.Creator,
Email: apiKey.Creator.CreatorEmail,
})
router.HandleContext(c)
c.Abort()
}
}