14e3df64f1
- Introduced RealtimeCustomerSessionRefreshPayload and RealtimeCustomerSessionRefreshEvent types for handling session refresh events. - Updated ws_service to verify customer session and handle session refresh notifications. - Enhanced API client to manage customer session tokens and expiration. - Implemented customer session validation and storage in session storage. - Added functions to exchange and ensure customer sessions. - Updated IM real-time connection to include customer session tokens in WebSocket requests. - Modified SDK and widget configurations to support external IDs and user tokens.
28 lines
665 B
Go
28 lines
665 B
Go
package middleware
|
|
|
|
import (
|
|
"cs-agent/internal/pkg/irisx"
|
|
"cs-agent/internal/services"
|
|
|
|
"github.com/kataras/iris/v12"
|
|
"github.com/mlogclub/simple/web"
|
|
)
|
|
|
|
func ExternalUserMiddleware(ctx iris.Context) {
|
|
channel := services.ChannelService.GetEnabledChannel(ctx)
|
|
if channel == nil {
|
|
ctx.StopExecution()
|
|
_ = ctx.JSON(web.JsonErrorMsg("接入渠道异常"))
|
|
return
|
|
}
|
|
result, err := services.CustomerSessionService.VerifyRequest(ctx, channel)
|
|
if err != nil {
|
|
ctx.StopExecution()
|
|
_ = ctx.JSON(web.JsonError(err))
|
|
return
|
|
}
|
|
services.CustomerSessionService.SetRefreshHeaders(ctx, result)
|
|
irisx.SetExternalUser(ctx, result.ExternalUser)
|
|
ctx.Next()
|
|
}
|