mirror of
https://github.com/usememos/memos.git
synced 2024-11-15 11:17:58 +08:00
27 lines
835 B
Go
27 lines
835 B
Go
|
package v2
|
||
|
|
||
|
import "strings"
|
||
|
|
||
|
var authenticationAllowlistMethods = map[string]bool{
|
||
|
"/memos.api.v2.SystemService/GetSystemInfo": true,
|
||
|
"/memos.api.v2.UserService/GetUser": true,
|
||
|
"/memos.api.v2.MemoService/ListMemos": true,
|
||
|
}
|
||
|
|
||
|
// isUnauthorizeAllowedMethod returns whether the method is exempted from authentication.
|
||
|
func isUnauthorizeAllowedMethod(fullMethodName string) bool {
|
||
|
if strings.HasPrefix(fullMethodName, "/grpc.reflection") {
|
||
|
return true
|
||
|
}
|
||
|
return authenticationAllowlistMethods[fullMethodName]
|
||
|
}
|
||
|
|
||
|
var allowedMethodsOnlyForAdmin = map[string]bool{
|
||
|
"/memos.api.v2.UserService/CreateUser": true,
|
||
|
}
|
||
|
|
||
|
// isOnlyForAdminAllowedMethod returns true if the method is allowed to be called only by admin.
|
||
|
func isOnlyForAdminAllowedMethod(methodName string) bool {
|
||
|
return allowedMethodsOnlyForAdmin[methodName]
|
||
|
}
|