123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- // SiYuan - Refactor your thinking
- // Copyright (c) 2020-present, b3log.org
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- package model
- import (
- "image/color"
- "net/http"
- "net/url"
- "os"
- "strconv"
- "strings"
- "sync"
- "time"
- "github.com/88250/gulu"
- "github.com/gin-gonic/gin"
- "github.com/gorilla/websocket"
- "github.com/siyuan-note/logging"
- "github.com/siyuan-note/siyuan/kernel/util"
- "github.com/steambap/captcha"
- )
- func LogoutAuth(c *gin.Context) {
- ret := gulu.Ret.NewResult()
- defer c.JSON(http.StatusOK, ret)
- if "" == Conf.AccessAuthCode {
- ret.Code = -1
- ret.Msg = Conf.Language(86)
- ret.Data = map[string]interface{}{"closeTimeout": 5000}
- return
- }
- session := util.GetSession(c)
- util.RemoveWorkspaceSession(session)
- if err := session.Save(c); nil != err {
- logging.LogErrorf("saves session failed: " + err.Error())
- ret.Code = -1
- ret.Msg = "save session failed"
- }
- }
- func LoginAuth(c *gin.Context) {
- ret := gulu.Ret.NewResult()
- defer c.JSON(http.StatusOK, ret)
- arg, ok := util.JsonArg(c, ret)
- if !ok {
- return
- }
- var inputCaptcha string
- session := util.GetSession(c)
- workspaceSession := util.GetWorkspaceSession(session)
- if util.NeedCaptcha() {
- captchaArg := arg["captcha"]
- if nil == captchaArg {
- ret.Code = 1
- ret.Msg = Conf.Language(21)
- logging.LogWarnf("invalid captcha")
- return
- }
- inputCaptcha = captchaArg.(string)
- if "" == inputCaptcha {
- ret.Code = 1
- ret.Msg = Conf.Language(21)
- logging.LogWarnf("invalid captcha")
- return
- }
- if strings.ToLower(workspaceSession.Captcha) != strings.ToLower(inputCaptcha) {
- ret.Code = 1
- ret.Msg = Conf.Language(22)
- logging.LogWarnf("invalid captcha")
- return
- }
- }
- authCode := arg["authCode"].(string)
- if Conf.AccessAuthCode != authCode {
- ret.Code = -1
- ret.Msg = Conf.Language(83)
- logging.LogWarnf("invalid auth code [ip=%s]", util.GetRemoteAddr(c.Request))
- util.WrongAuthCount++
- workspaceSession.Captcha = gulu.Rand.String(7)
- if util.NeedCaptcha() {
- ret.Code = 1 // 需要渲染验证码
- }
- if err := session.Save(c); nil != err {
- logging.LogErrorf("save session failed: " + err.Error())
- c.Status(http.StatusInternalServerError)
- return
- }
- return
- }
- workspaceSession.AccessAuthCode = authCode
- util.WrongAuthCount = 0
- workspaceSession.Captcha = gulu.Rand.String(7)
- logging.LogInfof("auth success [ip=%s]", util.GetRemoteAddr(c.Request))
- if err := session.Save(c); nil != err {
- logging.LogErrorf("save session failed: " + err.Error())
- c.Status(http.StatusInternalServerError)
- return
- }
- }
- func GetCaptcha(c *gin.Context) {
- img, err := captcha.New(100, 26, func(options *captcha.Options) {
- options.CharPreset = "ABCDEFGHKLMNPQRSTUVWXYZ23456789"
- options.Noise = 0.5
- options.CurveNumber = 0
- options.BackgroundColor = color.White
- })
- if nil != err {
- logging.LogErrorf("generates captcha failed: " + err.Error())
- c.Status(http.StatusInternalServerError)
- return
- }
- session := util.GetSession(c)
- workspaceSession := util.GetWorkspaceSession(session)
- workspaceSession.Captcha = img.Text
- if err = session.Save(c); nil != err {
- logging.LogErrorf("save session failed: " + err.Error())
- c.Status(http.StatusInternalServerError)
- return
- }
- if err = img.WriteImage(c.Writer); nil != err {
- logging.LogErrorf("writes captcha image failed: " + err.Error())
- c.Status(http.StatusInternalServerError)
- return
- }
- c.Status(http.StatusOK)
- }
- func CheckReadonly(c *gin.Context) {
- if util.ReadOnly {
- result := util.NewResult()
- result.Code = -1
- result.Msg = Conf.Language(34)
- result.Data = map[string]interface{}{"closeTimeout": 5000}
- c.JSON(http.StatusOK, result)
- c.Abort()
- return
- }
- }
- func CheckAuth(c *gin.Context) {
- // 已通过 JWT 认证
- if role := GetGinContextRole(c); IsValidRole(role, []Role{
- RoleAdministrator,
- RoleEditor,
- RoleReader,
- }) {
- c.Next()
- return
- }
- //logging.LogInfof("check auth for [%s]", c.Request.RequestURI)
- localhost := util.IsLocalHost(c.Request.RemoteAddr)
- // 未设置访问授权码
- if "" == Conf.AccessAuthCode {
- // Skip the empty access authorization code check https://github.com/siyuan-note/siyuan/issues/9709
- if util.SiyuanAccessAuthCodeBypass {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- // Authenticate requests with the Origin header other than 127.0.0.1 https://github.com/siyuan-note/siyuan/issues/9180
- clientIP := c.ClientIP()
- host := c.GetHeader("Host")
- origin := c.GetHeader("Origin")
- forwardedHost := c.GetHeader("X-Forwarded-Host")
- if !localhost ||
- ("" != clientIP && !util.IsLocalHostname(clientIP)) ||
- ("" != host && !util.IsLocalHost(host)) ||
- ("" != origin && !util.IsLocalOrigin(origin) && !strings.HasPrefix(origin, "chrome-extension://")) ||
- ("" != forwardedHost && !util.IsLocalHost(forwardedHost)) {
- c.JSON(http.StatusUnauthorized, map[string]interface{}{"code": -1, "msg": "Auth failed: for security reasons, please set [Access authorization code] when using non-127.0.0.1 access\n\n为安全起见,使用非 127.0.0.1 访问时请设置 [访问授权码]"})
- c.Abort()
- return
- }
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- // 放过 /appearance/
- if strings.HasPrefix(c.Request.RequestURI, "/appearance/") ||
- strings.HasPrefix(c.Request.RequestURI, "/stage/build/export/") ||
- strings.HasPrefix(c.Request.RequestURI, "/stage/build/fonts/") ||
- strings.HasPrefix(c.Request.RequestURI, "/stage/protyle/") {
- c.Next()
- return
- }
- // 放过来自本机的某些请求
- if localhost {
- if strings.HasPrefix(c.Request.RequestURI, "/assets/") {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- if strings.HasPrefix(c.Request.RequestURI, "/api/system/exit") {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- if strings.HasPrefix(c.Request.RequestURI, "/api/system/getNetwork") {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- if strings.HasPrefix(c.Request.RequestURI, "/api/sync/performSync") {
- if util.ContainerIOS == util.Container || util.ContainerAndroid == util.Container {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- }
- }
- // 通过 Cookie
- session := util.GetSession(c)
- workspaceSession := util.GetWorkspaceSession(session)
- if workspaceSession.AccessAuthCode == Conf.AccessAuthCode {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- // 通过 API token (header: Authorization)
- if authHeader := c.GetHeader("Authorization"); "" != authHeader {
- var token string
- if strings.HasPrefix(authHeader, "Token ") {
- token = strings.TrimPrefix(authHeader, "Token ")
- } else if strings.HasPrefix(authHeader, "token ") {
- token = strings.TrimPrefix(authHeader, "token ")
- } else if strings.HasPrefix(authHeader, "Bearer ") {
- token = strings.TrimPrefix(authHeader, "Bearer ")
- } else if strings.HasPrefix(authHeader, "bearer ") {
- token = strings.TrimPrefix(authHeader, "bearer ")
- }
- if "" != token {
- if Conf.Api.Token == token {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- c.JSON(http.StatusUnauthorized, map[string]interface{}{"code": -1, "msg": "Auth failed [header: Authorization]"})
- c.Abort()
- return
- }
- }
- // 通过 API token (query-params: token)
- if token := c.Query("token"); "" != token {
- if Conf.Api.Token == token {
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- return
- }
- c.JSON(http.StatusUnauthorized, map[string]interface{}{"code": -1, "msg": "Auth failed [query: token]"})
- c.Abort()
- return
- }
- if "/check-auth" == c.Request.URL.Path { // 跳过访问授权页
- c.Next()
- return
- }
- if workspaceSession.AccessAuthCode != Conf.AccessAuthCode {
- userAgentHeader := c.GetHeader("User-Agent")
- if strings.HasPrefix(userAgentHeader, "SiYuan/") || strings.HasPrefix(userAgentHeader, "Mozilla/") {
- if "GET" != c.Request.Method || c.IsWebsocket() {
- c.JSON(http.StatusUnauthorized, map[string]interface{}{"code": -1, "msg": Conf.Language(156)})
- c.Abort()
- return
- }
- location := url.URL{}
- queryParams := url.Values{}
- queryParams.Set("to", c.Request.URL.String())
- location.RawQuery = queryParams.Encode()
- location.Path = "/check-auth"
- c.Redirect(http.StatusFound, location.String())
- c.Abort()
- return
- }
- c.JSON(http.StatusUnauthorized, map[string]interface{}{"code": -1, "msg": "Auth failed [session]"})
- c.Abort()
- return
- }
- c.Set(RoleContextKey, RoleAdministrator)
- c.Next()
- }
- func CheckAdminRole(c *gin.Context) {
- if IsValidRole(GetGinContextRole(c), []Role{
- RoleAdministrator,
- }) {
- c.Next()
- } else {
- c.AbortWithStatus(http.StatusForbidden)
- }
- }
- func CheckEditRole(c *gin.Context) {
- if IsValidRole(GetGinContextRole(c), []Role{
- RoleAdministrator,
- RoleEditor,
- }) {
- c.Next()
- } else {
- c.AbortWithStatus(http.StatusForbidden)
- }
- }
- func CheckReadRole(c *gin.Context) {
- if IsValidRole(GetGinContextRole(c), []Role{
- RoleAdministrator,
- RoleEditor,
- RoleReader,
- }) {
- c.Next()
- } else {
- c.AbortWithStatus(http.StatusForbidden)
- }
- }
- var timingAPIs = map[string]int{
- "/api/search/fullTextSearchBlock": 200, // Monitor the search performance and suggest solutions https://github.com/siyuan-note/siyuan/issues/7873
- }
- func Timing(c *gin.Context) {
- p := c.Request.URL.Path
- tip, ok := timingAPIs[p]
- if !ok {
- c.Next()
- return
- }
- timing := 15 * 1000
- if timingEnv := os.Getenv("SIYUAN_PERFORMANCE_TIMING"); "" != timingEnv {
- val, err := strconv.Atoi(timingEnv)
- if nil == err {
- timing = val
- }
- }
- now := time.Now().UnixMilli()
- c.Next()
- elapsed := int(time.Now().UnixMilli() - now)
- if timing < elapsed {
- logging.LogWarnf("[%s] elapsed [%dms]", c.Request.RequestURI, elapsed)
- util.PushMsg(Conf.Language(tip), 7000)
- }
- }
- func Recover(c *gin.Context) {
- defer func() {
- logging.Recover()
- c.Status(http.StatusInternalServerError)
- }()
- c.Next()
- }
- var (
- requestingLock = sync.Mutex{}
- requesting = map[string]*sync.Mutex{}
- )
- func ControlConcurrency(c *gin.Context) {
- if websocket.IsWebSocketUpgrade(c.Request) {
- c.Next()
- return
- }
- reqPath := c.Request.URL.Path
- // Improve the concurrency of the kernel data reading interfaces https://github.com/siyuan-note/siyuan/issues/10149
- if strings.HasPrefix(reqPath, "/stage/") || strings.HasPrefix(reqPath, "/assets/") || strings.HasPrefix(reqPath, "/appearance/") {
- c.Next()
- return
- }
- parts := strings.Split(reqPath, "/")
- function := parts[len(parts)-1]
- if strings.HasPrefix(function, "get") || strings.HasPrefix(function, "list") ||
- strings.HasPrefix(function, "search") || strings.HasPrefix(function, "render") || strings.HasPrefix(function, "ls") {
- c.Next()
- return
- }
- if strings.HasPrefix(function, "/api/query/") || strings.HasPrefix(function, "/api/search/") {
- c.Next()
- return
- }
- requestingLock.Lock()
- mutex := requesting[reqPath]
- if nil == mutex {
- mutex = &sync.Mutex{}
- requesting[reqPath] = mutex
- }
- requestingLock.Unlock()
- mutex.Lock()
- defer mutex.Unlock()
- c.Next()
- }
|