47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package logic
 | |
| 
 | |
| import (
 | |
| 	"fusenapi/model/gmodel"
 | |
| 	"fusenapi/utils/auth"
 | |
| 	"fusenapi/utils/basic"
 | |
| 
 | |
| 	"context"
 | |
| 
 | |
| 	"fusenapi/server/home-user-auth/internal/svc"
 | |
| 	"fusenapi/server/home-user-auth/internal/types"
 | |
| 
 | |
| 	"github.com/zeromicro/go-zero/core/logx"
 | |
| )
 | |
| 
 | |
| type AcceptCookieLogic struct {
 | |
| 	logx.Logger
 | |
| 	ctx    context.Context
 | |
| 	svcCtx *svc.ServiceContext
 | |
| }
 | |
| 
 | |
| func NewAcceptCookieLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AcceptCookieLogic {
 | |
| 	return &AcceptCookieLogic{
 | |
| 		Logger: logx.WithContext(ctx),
 | |
| 		ctx:    ctx,
 | |
| 		svcCtx: svcCtx,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (l *AcceptCookieLogic) AcceptCookie(req *types.Request, userinfo *auth.UserInfo) (resp *basic.Response) {
 | |
| 	// 返回值必须调用Set重新返回, resp可以空指针调用 resp.SetStatus(basic.CodeOK, data)
 | |
| 	// userinfo 传入值时, 一定不为null
 | |
| 	idtyp := userinfo.GetIdType()
 | |
| 	if idtyp == auth.IDTYPE_Guest {
 | |
| 		return resp.SetStatus(basic.CodeGuestDupErr)
 | |
| 	}
 | |
| 
 | |
| 	m := gmodel.NewFsGuestModel(l.svcCtx.MysqlConn)
 | |
| 	token, err := m.GenerateGuestID(l.ctx, &l.svcCtx.Config.Auth.AccessSecret)
 | |
| 	if err != nil {
 | |
| 		return resp.SetStatus(basic.CodeGuestGenErr)
 | |
| 	}
 | |
| 	return resp.SetStatus(basic.CodeOK, types.DataGuest{
 | |
| 		Token: token,
 | |
| 	})
 | |
| }
 |