0b4a1b4594
- Updated OSSStorage validation errors to use internationalized messages. - Changed error messages in provider.go for unsupported file storage types. - Refactored tag_service.go to replace hardcoded error messages with internationalized versions. - Updated ticket_service.go to use internationalized error messages for various validation checks. - Refactored ticket_tag_service.go to use internationalized error messages for tag validation. - Changed ticket_view_service.go to use internationalized error messages for view validation. - Updated tool_catalog_service.go to use internationalized error messages for tool code validation. - Refactored user_service.go to replace error messages with internationalized versions. - Updated ws_service.go to use internationalized error messages for WebSocket handling. - Refactored wxwork_kf_inbound_service.go to use internationalized error messages for message handling. - Updated wxwork_kf_outbound_service.go to use internationalized error messages for outbound message handling. - Refactored wxwork_login_service.go to use internationalized error messages for login handling. - Updated login.go in wxwork package to use internationalized error messages for login state and ticket validation.
140 lines
3.6 KiB
Go
140 lines
3.6 KiB
Go
package openidentity
|
|
|
|
import (
|
|
"agent-desk/internal/pkg/enums"
|
|
"agent-desk/internal/pkg/errorsx"
|
|
"errors"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"agent-desk/internal/pkg/httpx/params"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/golang-jwt/jwt/v5"
|
|
"github.com/mlogclub/simple/common/strs"
|
|
)
|
|
|
|
// ExternalUser 外部访客身份(IM 客户),与站内 AuthPrincipal 区分。
|
|
type ExternalUser struct {
|
|
ExternalSource enums.ExternalSource `json:"externalSource"`
|
|
ExternalID string `json:"externalId"`
|
|
ExternalName string `json:"externalName"`
|
|
}
|
|
|
|
type UserTokenClaims struct {
|
|
UserID string `json:"userId"`
|
|
Name string `json:"name"`
|
|
jwt.RegisteredClaims
|
|
}
|
|
|
|
func GetExternalUser(ctx *gin.Context, secret string) (*ExternalUser, error) {
|
|
if userToken := getUserToken(ctx); strs.IsNotBlank(userToken) {
|
|
claims, err := verifyUserToken(userToken, secret)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &ExternalUser{
|
|
ExternalSource: enums.ExternalSourceUser,
|
|
ExternalID: claims.UserID,
|
|
ExternalName: claims.Name,
|
|
}, nil
|
|
}
|
|
return getGuestUser(ctx)
|
|
}
|
|
|
|
func verifyUserToken(userToken, secret string) (*UserTokenClaims, error) {
|
|
if strs.IsBlank(userToken) {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0263")
|
|
}
|
|
if strs.IsBlank(secret) {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0266")
|
|
}
|
|
|
|
claims := &UserTokenClaims{}
|
|
token, err := jwt.ParseWithClaims(userToken, claims, func(token *jwt.Token) (any, error) {
|
|
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok {
|
|
return nil, errors.New("unsupported signing method")
|
|
}
|
|
return []byte(secret), nil
|
|
}, jwt.WithExpirationRequired(), jwt.WithValidMethods([]string{
|
|
jwt.SigningMethodHS256.Alg(),
|
|
jwt.SigningMethodHS384.Alg(),
|
|
jwt.SigningMethodHS512.Alg(),
|
|
}))
|
|
if err != nil {
|
|
if errors.Is(err, jwt.ErrTokenExpired) {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0264")
|
|
}
|
|
return nil, errorsx.UnauthorizedI18n("error.e0265")
|
|
}
|
|
if token == nil || !token.Valid {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0265")
|
|
}
|
|
|
|
if strs.IsBlank(claims.UserID) {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0262")
|
|
}
|
|
if strs.IsBlank(claims.Name) {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0261")
|
|
}
|
|
if claims.ExpiresAt == nil {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0264")
|
|
}
|
|
|
|
return claims, nil
|
|
}
|
|
|
|
func getUserToken(ctx *gin.Context) string {
|
|
auth := strings.TrimSpace(ctx.GetHeader("Authorization"))
|
|
if len(auth) > 7 && strings.EqualFold(auth[:7], "Bearer ") {
|
|
if token := strings.TrimSpace(auth[7:]); token != "" {
|
|
return token
|
|
}
|
|
}
|
|
userToken, _ := params.Get(ctx, "userToken")
|
|
return strings.TrimSpace(userToken)
|
|
}
|
|
|
|
func getGuestUser(ctx *gin.Context) (*ExternalUser, error) {
|
|
externalID := getExternalID(ctx)
|
|
if strs.IsBlank(externalID) {
|
|
return nil, errorsx.UnauthorizedI18n("error.e0262")
|
|
}
|
|
return &ExternalUser{
|
|
ExternalSource: enums.ExternalSourceGuest,
|
|
ExternalID: externalID,
|
|
ExternalName: getExternalName(ctx),
|
|
}, nil
|
|
}
|
|
|
|
func getExternalID(ctx *gin.Context) string {
|
|
externalID := ctx.GetHeader("X-External-Id")
|
|
if strs.IsBlank(externalID) {
|
|
externalID, _ = params.Get(ctx, "externalId")
|
|
}
|
|
return externalID
|
|
}
|
|
|
|
func getExternalName(ctx *gin.Context) string {
|
|
externalName := ctx.GetHeader("X-External-Name")
|
|
if strs.IsBlank(externalName) {
|
|
externalName, _ = params.Get(ctx, "externalName")
|
|
}
|
|
if strs.IsNotBlank(externalName) {
|
|
externalName, _ = url.QueryUnescape(externalName)
|
|
}
|
|
return externalName
|
|
}
|
|
|
|
func decodeExternalDisplayName(s string) string {
|
|
s = strings.TrimSpace(s)
|
|
if s == "" {
|
|
return ""
|
|
}
|
|
dec, err := url.QueryUnescape(s)
|
|
if err != nil {
|
|
return s
|
|
}
|
|
return strings.TrimSpace(dec)
|
|
}
|