mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 09:22:51 +08:00
ff8851fd9f
* chore: update interface declare * chore: update args * chore: update * chore: update
57 lines
1.1 KiB
Go
57 lines
1.1 KiB
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/usememos/memos/api"
|
|
"github.com/usememos/memos/common"
|
|
)
|
|
|
|
type response struct {
|
|
Data any `json:"data"`
|
|
}
|
|
|
|
func composeResponse(data any) response {
|
|
return response{
|
|
Data: data,
|
|
}
|
|
}
|
|
|
|
func defaultGetRequestSkipper(c echo.Context) bool {
|
|
return c.Request().Method == http.MethodGet
|
|
}
|
|
|
|
func defaultAPIRequestSkipper(c echo.Context) bool {
|
|
path := c.Path()
|
|
return common.HasPrefixes(path, "/api")
|
|
}
|
|
|
|
func (server *Server) defaultAuthSkipper(c echo.Context) bool {
|
|
ctx := c.Request().Context()
|
|
path := c.Path()
|
|
|
|
// Skip auth.
|
|
if common.HasPrefixes(path, "/api/auth") {
|
|
return true
|
|
}
|
|
|
|
// If there is openId in query string and related user is found, then skip auth.
|
|
openID := c.QueryParam("openId")
|
|
if openID != "" {
|
|
userFind := &api.UserFind{
|
|
OpenID: &openID,
|
|
}
|
|
user, err := server.Store.FindUser(ctx, userFind)
|
|
if err != nil && common.ErrorCode(err) != common.NotFound {
|
|
return false
|
|
}
|
|
if user != nil {
|
|
// Stores userID into context.
|
|
c.Set(getUserIDContextKey(), user.ID)
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|