Files
Memoh/internal/auth/jwt.go
T
BBQ 06e8619a37 refactor(core): migrate channel identity and binding across app
Align channel identity and bind flow across backend and app-facing layers, including generated swagger artifacts and package lock updates while excluding docs content changes.
2026-02-11 14:51:58 +08:00

185 lines
5.7 KiB
Go

package auth
import (
"fmt"
"net/http"
"strings"
"time"
"github.com/golang-jwt/jwt/v5"
echojwt "github.com/labstack/echo-jwt/v4"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
)
const (
claimSubject = "sub"
claimUserID = "user_id"
claimChannelIdentityID = "channel_identity_id"
claimType = "typ"
claimBotID = "bot_id"
claimChatID = "chat_id"
claimRouteID = "route_id"
chatTokenType = "chat_route"
)
// JWTMiddleware returns a JWT auth middleware configured for HS256 tokens.
func JWTMiddleware(secret string, skipper middleware.Skipper) echo.MiddlewareFunc {
return echojwt.WithConfig(echojwt.Config{
SigningKey: []byte(secret),
SigningMethod: "HS256",
TokenLookup: "header:Authorization:Bearer ",
Skipper: skipper,
NewClaimsFunc: func(c echo.Context) jwt.Claims {
return jwt.MapClaims{}
},
})
}
// UserIDFromContext extracts the user id from JWT claims.
func UserIDFromContext(c echo.Context) (string, error) {
token, ok := c.Get("user").(*jwt.Token)
if !ok || token == nil || !token.Valid {
return "", echo.NewHTTPError(http.StatusUnauthorized, "invalid token")
}
claims, ok := token.Claims.(jwt.MapClaims)
if !ok {
return "", echo.NewHTTPError(http.StatusUnauthorized, "invalid token claims")
}
if userID := claimString(claims, claimUserID); userID != "" {
return userID, nil
}
if userID := claimString(claims, claimSubject); userID != "" {
return userID, nil
}
if legacyChannelIdentityID := claimString(claims, claimChannelIdentityID); legacyChannelIdentityID != "" {
return legacyChannelIdentityID, nil
}
return "", echo.NewHTTPError(http.StatusUnauthorized, "user id missing")
}
// ChannelIdentityIDFromContext is kept as compatibility alias and returns user id.
func ChannelIdentityIDFromContext(c echo.Context) (string, error) {
return UserIDFromContext(c)
}
// GenerateToken creates a signed JWT for the user.
func GenerateToken(userID, secret string, expiresIn time.Duration) (string, time.Time, error) {
if strings.TrimSpace(userID) == "" {
return "", time.Time{}, fmt.Errorf("user id is required")
}
if strings.TrimSpace(secret) == "" {
return "", time.Time{}, fmt.Errorf("jwt secret is required")
}
if expiresIn <= 0 {
return "", time.Time{}, fmt.Errorf("jwt expires in must be positive")
}
now := time.Now().UTC()
expiresAt := now.Add(expiresIn)
claims := jwt.MapClaims{
claimSubject: userID,
claimUserID: userID,
claimChannelIdentityID: userID, // legacy compatibility for handlers still reading channel_identity_id
"iat": now.Unix(),
"exp": expiresAt.Unix(),
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
signed, err := token.SignedString([]byte(secret))
if err != nil {
return "", time.Time{}, err
}
return signed, expiresAt, nil
}
// ChatToken holds the claims for a chat-based JWT used for route-based reply.
type ChatToken struct {
BotID string
ChatID string
RouteID string
UserID string
ChannelIdentityID string
}
// GenerateChatToken creates a signed JWT for chat route reply.
func GenerateChatToken(info ChatToken, secret string, expiresIn time.Duration) (string, time.Time, error) {
if strings.TrimSpace(info.BotID) == "" {
return "", time.Time{}, fmt.Errorf("bot id is required")
}
if strings.TrimSpace(info.ChatID) == "" {
return "", time.Time{}, fmt.Errorf("chat id is required")
}
if strings.TrimSpace(info.UserID) == "" {
info.UserID = strings.TrimSpace(info.ChannelIdentityID)
}
if strings.TrimSpace(info.UserID) == "" {
return "", time.Time{}, fmt.Errorf("user id is required")
}
if strings.TrimSpace(secret) == "" {
return "", time.Time{}, fmt.Errorf("jwt secret is required")
}
if expiresIn <= 0 {
return "", time.Time{}, fmt.Errorf("jwt expires in must be positive")
}
now := time.Now().UTC()
expiresAt := now.Add(expiresIn)
claims := jwt.MapClaims{
claimType: chatTokenType,
claimBotID: info.BotID,
claimChatID: info.ChatID,
claimRouteID: info.RouteID,
claimUserID: info.UserID,
claimChannelIdentityID: info.ChannelIdentityID,
"iat": now.Unix(),
"exp": expiresAt.Unix(),
}
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
signed, err := token.SignedString([]byte(secret))
if err != nil {
return "", time.Time{}, err
}
return signed, expiresAt, nil
}
// ChatTokenFromContext extracts the chat token claims from context.
func ChatTokenFromContext(c echo.Context) (ChatToken, error) {
token, ok := c.Get("user").(*jwt.Token)
if !ok || token == nil || !token.Valid {
return ChatToken{}, echo.NewHTTPError(http.StatusUnauthorized, "invalid token")
}
claims, ok := token.Claims.(jwt.MapClaims)
if !ok {
return ChatToken{}, echo.NewHTTPError(http.StatusUnauthorized, "invalid token claims")
}
if claimString(claims, claimType) != chatTokenType {
return ChatToken{}, echo.NewHTTPError(http.StatusUnauthorized, "invalid chat token")
}
info := ChatToken{
BotID: claimString(claims, claimBotID),
ChatID: claimString(claims, claimChatID),
RouteID: claimString(claims, claimRouteID),
UserID: claimString(claims, claimUserID),
ChannelIdentityID: claimString(claims, claimChannelIdentityID),
}
if strings.TrimSpace(info.UserID) == "" {
info.UserID = strings.TrimSpace(info.ChannelIdentityID)
}
return info, nil
}
func claimString(claims jwt.MapClaims, key string) string {
raw, ok := claims[key]
if !ok || raw == nil {
return ""
}
switch v := raw.(type) {
case string:
return v
case fmt.Stringer:
return v.String()
default:
return fmt.Sprint(raw)
}
}