nezha/cmd/dashboard/controller/oauth2.go

132 lines
3.8 KiB
Go
Raw Normal View History

2019-12-08 03:59:58 -05:00
package controller
import (
"context"
"errors"
2019-12-08 03:59:58 -05:00
"fmt"
"net/http"
2020-11-29 09:17:40 -05:00
"strings"
2019-12-08 03:59:58 -05:00
"github.com/gin-gonic/gin"
2020-12-12 11:43:25 -05:00
GitHubAPI "github.com/google/go-github/github"
"github.com/patrickmn/go-cache"
2019-12-08 03:59:58 -05:00
"golang.org/x/oauth2"
GitHubOauth2 "golang.org/x/oauth2/github"
2019-12-08 03:59:58 -05:00
2020-11-10 21:07:45 -05:00
"github.com/naiba/nezha/model"
"github.com/naiba/nezha/pkg/mygin"
"github.com/naiba/nezha/pkg/utils"
2022-01-08 22:54:14 -05:00
"github.com/naiba/nezha/service/singleton"
2019-12-08 03:59:58 -05:00
)
type oauth2controller struct {
r gin.IRoutes
2019-12-08 03:59:58 -05:00
}
func (oa *oauth2controller) serve() {
oa.r.GET("/oauth2/login", oa.login)
oa.r.GET("/oauth2/callback", oa.callback)
}
func (oa *oauth2controller) getCommonOauth2Config(c *gin.Context) *oauth2.Config {
2022-01-08 22:54:14 -05:00
if singleton.Conf.Oauth2.Type == model.ConfigTypeGitee {
return &oauth2.Config{
2022-01-08 22:54:14 -05:00
ClientID: singleton.Conf.Oauth2.ClientID,
ClientSecret: singleton.Conf.Oauth2.ClientSecret,
Scopes: []string{},
Endpoint: oauth2.Endpoint{
AuthURL: "https://gitee.com/oauth/authorize",
TokenURL: "https://gitee.com/oauth/token",
},
RedirectURL: oa.getRedirectURL(c),
}
} else {
return &oauth2.Config{
2022-01-08 22:54:14 -05:00
ClientID: singleton.Conf.Oauth2.ClientID,
ClientSecret: singleton.Conf.Oauth2.ClientSecret,
Scopes: []string{},
Endpoint: GitHubOauth2.Endpoint,
}
}
}
func (oa *oauth2controller) getRedirectURL(c *gin.Context) string {
2022-04-10 08:28:22 -04:00
scheme := "http://"
if strings.HasPrefix(c.Request.Referer(), "https://") {
2022-04-10 08:28:22 -04:00
scheme = "https://"
}
2022-04-10 08:28:22 -04:00
return scheme + c.Request.Host + "/oauth2/callback"
}
2019-12-08 03:59:58 -05:00
func (oa *oauth2controller) login(c *gin.Context) {
randomString := utils.RandStringBytesMaskImprSrcUnsafe(32)
state, stateKey := randomString[:16], randomString[16:]
singleton.Cache.Set(fmt.Sprintf("%s%s", model.CacheKeyOauth2State, stateKey), state, cache.DefaultExpiration)
url := oa.getCommonOauth2Config(c).AuthCodeURL(state, oauth2.AccessTypeOnline)
c.SetCookie(singleton.Conf.Site.CookieName+"-sk", stateKey, 60*5, "", "", false, false)
2022-04-30 09:39:25 -04:00
c.HTML(http.StatusOK, "dashboard/redirect", mygin.CommonEnvironment(c, gin.H{
"URL": url,
2022-04-30 09:39:25 -04:00
}))
2019-12-08 03:59:58 -05:00
}
func (oa *oauth2controller) callback(c *gin.Context) {
var err error
2019-12-08 03:59:58 -05:00
// 验证登录跳转时的 State
stateKey, err := c.Cookie(singleton.Conf.Site.CookieName + "-sk")
if err == nil {
state, ok := singleton.Cache.Get(fmt.Sprintf("%s%s", model.CacheKeyOauth2State, stateKey))
if !ok || state.(string) != c.Query("state") {
err = errors.New("非法的登录方式")
}
2019-12-08 03:59:58 -05:00
}
oauth2Config := oa.getCommonOauth2Config(c)
2019-12-08 03:59:58 -05:00
ctx := context.Background()
var otk *oauth2.Token
if err == nil {
otk, err = oauth2Config.Exchange(ctx, c.Query("code"))
}
var client *GitHubAPI.Client
if err == nil {
oc := oauth2Config.Client(ctx, otk)
2022-01-08 22:54:14 -05:00
if singleton.Conf.Oauth2.Type == model.ConfigTypeGitee {
client, err = GitHubAPI.NewEnterpriseClient("https://gitee.com/api/v5/", "https://gitee.com/api/v5/", oc)
} else {
client = GitHubAPI.NewClient(oc)
}
}
var gu *GitHubAPI.User
if err == nil {
gu, _, err = client.Users.Get(ctx, "")
2019-12-08 03:59:58 -05:00
}
if err != nil {
mygin.ShowErrorPage(c, mygin.ErrInfo{
Code: http.StatusBadRequest,
Title: "登录失败",
Msg: fmt.Sprintf("错误信息:%s", err),
}, true)
return
}
2020-03-22 10:28:25 -04:00
var isAdmin bool
2022-01-08 22:54:14 -05:00
for _, admin := range strings.Split(singleton.Conf.Oauth2.Admin, ",") {
2022-04-29 12:48:39 -04:00
if admin != "" && strings.ToLower(gu.GetLogin()) == strings.ToLower(admin) {
isAdmin = true
break
2020-03-22 10:28:25 -04:00
}
}
if !isAdmin {
2019-12-08 03:59:58 -05:00
mygin.ShowErrorPage(c, mygin.ErrInfo{
Code: http.StatusBadRequest,
Title: "登录失败",
Msg: fmt.Sprintf("错误信息:%s", "该用户不是本站点管理员,无法登录"),
}, true)
return
}
user := model.NewUserFromGitHub(gu)
2019-12-20 10:58:09 -05:00
user.IssueNewToken()
2022-01-08 22:54:14 -05:00
singleton.DB.Save(&user)
c.SetCookie(singleton.Conf.Site.CookieName, user.Token, 60*60*24, "", "", false, false)
2022-04-30 09:39:25 -04:00
c.HTML(http.StatusOK, "dashboard/redirect", mygin.CommonEnvironment(c, gin.H{
"URL": "/",
2022-04-30 09:39:25 -04:00
}))
2019-12-08 03:59:58 -05:00
}