123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- package service
- import (
- "context"
- "encoding/json"
- "errors"
- "fmt"
- "strconv"
- "strings"
- "time"
- "youngee_b_api/consts"
- "youngee_b_api/db"
- "youngee_b_api/model/gorm_model"
- "youngee_b_api/model/http_model"
- "youngee_b_api/model/redis_model"
- "youngee_b_api/model/system_model"
- "youngee_b_api/redis"
- "youngee_b_api/util"
- "github.com/sirupsen/logrus"
- )
- var LoginAuth *loginAuth
- func LoginAuthInit(config *system_model.Session) {
- auth := new(loginAuth)
- auth.sessionTTL = time.Duration(config.TTL) * time.Minute
- LoginAuth = auth
- }
- type loginAuth struct {
- sessionTTL time.Duration
- }
- func (l *loginAuth) AuthToken(ctx context.Context, token string) (*redis_model.Auth, error) {
- phone, err := l.parseToken(ctx, token)
- if err != nil {
- logrus.Debug("token格式错误:%+v", token)
- return nil, err
- }
- auth, err := l.getSessionAuth(ctx, phone)
- if err != nil {
- logrus.Debug("获取session redis错误: token:%+v,err:%+v", token, err)
- return nil, err
- }
- if auth.Token != token {
- logrus.Debug("获取session time过期错误: token:%+v", token)
- return nil, errors.New("auth failed")
- }
- return auth, nil
- }
- // AuthCode 判断此手机号是否有账号存在 鉴定验证码 用户信息存入redis 并返回Token
- func (l *loginAuth) AuthCode(ctx context.Context, phone string, code string) (int, *http_model.CodeLoginData, error) {
- // 1. 验证码校验
- vcode, err := l.getSessionCode(ctx, phone)
- if err != nil {
- return 0, nil, err
- }
- fmt.Printf("缓存的验证码 vcode: %v,实际填入的 code:%v", vcode, code)
- if vcode != code {
- // 验证码错误
- logrus.Debugf("[AuthCode] auth fail,phone:%+v", phone)
- return 1, nil, nil
- }
- // 2. 查询是否存在用户信息,存在则取出,不存在则注册并取出
- var userData *gorm_model.YounggeeUser
- userInfo, err := db.GetUserByPhone(ctx, phone)
- // fmt.Println("login_auth", user, err)
- if err != nil {
- // 数据库操作错误
- return 0, nil, err
- }
- if userInfo == nil {
- subUserInfo, subUserErr := db.GetSubUserByPhone(ctx, phone)
- if subUserErr != nil {
- return 0, nil, subUserErr
- }
- if subUserInfo == nil {
- // fmt.Println("子账号也不存在")
- // 账号不存在,则默认注册商家账号
- _, createEnterpriseErr := Enterprise.CreateEnterprise(ctx, phone)
- if createEnterpriseErr != nil {
- return 0, nil, createEnterpriseErr
- }
- enterpriseUserInfo, enterpriseUserErr := db.GetUserByPhone(ctx, phone)
- if enterpriseUserErr != nil {
- return 0, nil, enterpriseUserErr
- }
- userData = enterpriseUserInfo
- // fmt.Println("login_auth", user, err)
- } else {
- userData = subUserInfo
- }
- } else {
- userData = userInfo
- }
- token := l.getToken(ctx, phone)
- var jobData gorm_model.YounggeeJob
- var accountData gorm_model.YounggeeSubAccount
- var enterpriseUser gorm_model.Enterprise
- var loginUserData http_model.CodeLoginData
- var ifEnterprise int = 0
- // 3. 根据用户类型的不同补充信息
- // 若为商家用户
- if string(userData.Role) == consts.BRole {
- ifEnterprise = 1
- // fmt.Println("商家主账号")
- enterpriseUserInfo, enterpriseUserErr := db.GetEnterpriseByUID(ctx, userData.ID)
- if enterpriseUserErr != nil {
- return 0, nil, enterpriseUserErr
- }
- if enterpriseUserInfo != nil {
- enterpriseUser = *enterpriseUserInfo
- auth := &redis_model.Auth{
- Phone: phone,
- ID: userData.ID,
- User: userData.User,
- Username: userData.Username,
- RealName: userData.RealName,
- Role: userData.Role,
- Email: userData.Email,
- Token: token,
- EnterpriseID: enterpriseUserInfo.EnterpriseID,
- }
- if sessionErr := l.setSession(ctx, phone, auth); sessionErr != nil {
- fmt.Printf("setSession error\n")
- return 0, nil, sessionErr
- }
- }
- } else {
- // 若为商家子账号
- fmt.Printf("商家子账号")
- subAccountUserInfo, subAccountUserErr := db.FindSubAccountByPhone(ctx, phone)
- if subAccountUserErr != nil {
- return 0, nil, subAccountUserErr
- }
- if subAccountUserInfo != nil {
- accountData = *subAccountUserInfo
- auth := &redis_model.Auth{
- Phone: phone,
- ID: userData.ID,
- User: userData.User,
- Username: userData.Username,
- RealName: userData.RealName,
- Role: userData.Role,
- Email: userData.Email,
- Token: token,
- EnterpriseID: subAccountUserInfo.EnterpriseId,
- }
- jobInfo, jobErr := db.FindJobByJobId(ctx, subAccountUserInfo.JobId)
- if jobErr != nil {
- return 0, nil, jobErr
- }
- if jobInfo != nil {
- jobData = *jobInfo
- if sessionErr := l.setSession(ctx, phone, auth); sessionErr != nil {
- fmt.Printf("setSession error\n")
- return 0, nil, sessionErr
- }
- }
- }
- }
- if ifEnterprise == 1 {
- loginUserData = http_model.CodeLoginData{
- UserId: userData.ID,
- Token: token,
- Role: userData.Role,
- SubAccountId: 0,
- JobName: "主账号无岗位",
- EnterpriseId: enterpriseUser.EnterpriseID,
- WorkshopPermission: "1",
- CooperatePermission: "1",
- FinancialPermission: "1",
- TaskcenterPermission: "1",
- }
- } else {
- loginUserData = http_model.CodeLoginData{
- UserId: userData.ID,
- Token: token,
- Role: userData.Role,
- SubAccountId: accountData.SubAccountId,
- JobName: jobData.JobName,
- EnterpriseId: accountData.EnterpriseId,
- WorkshopPermission: jobData.WorkshopPermission,
- CooperatePermission: jobData.CooperatePermission,
- FinancialPermission: jobData.FinancialPermission,
- TaskcenterPermission: jobData.TaskcenterPermission,
- }
- }
- return 0, &loginUserData, nil
- }
- // func (l *loginAuth) AuthPassword(ctx context.Context, phone string, password string) (string, error) {
- // // 验证是否存在
- // user, err := db.GetUserByPhone(ctx, phone)
- // if err != nil {
- // return "", err
- // }
- // // 验证正确性
- // if user == nil || user.Role != consts.BRole || user.Password != l.encryptPassword(password) {
- // // 登录失败
- // logrus.Debugf("[AuthPassword] auth fail,phone:%+v", phone)
- // return "", errors.New("auth fail")
- // }
- // token := l.getToken(ctx, phone)
- // auth := &redis_model.Auth{
- // Phone: phone,
- // ID: user.ID,
- // User: user.User,
- // Username: user.Username,
- // RealName: user.RealName,
- // Role: user.Role,
- // Email: user.Email,
- // Token: token,
- // }
- // if err := l.setSession(ctx, phone, auth); err != nil {
- // return "", err
- // }
- // return token, nil
- // }
- func (l *loginAuth) setSession(ctx context.Context, phone string, auth *redis_model.Auth) error {
- if authJson, err := json.Marshal(auth); err == nil {
- err = redis.Set(ctx, l.getRedisKey(phone), string(authJson), l.sessionTTL)
- if err == nil {
- return err
- }
- }
- return nil
- }
- func (l *loginAuth) getSessionCode(ctx context.Context, phone string) (string, error) {
- value, err := redis.Get(ctx, l.getRedisKey(phone))
- if err != nil {
- if err == consts.RedisNil {
- return "", fmt.Errorf("not found in redis,phone:%+v", phone)
- }
- return "", err
- }
- return value, nil
- }
- func (l *loginAuth) getSessionAuth(ctx context.Context, phone string) (*redis_model.Auth, error) {
- value, err := redis.Get(ctx, l.getRedisKey(phone))
- if err != nil {
- if err == consts.RedisNil {
- return nil, fmt.Errorf("not found in redis,phone:%+v", phone)
- }
- return nil, err
- }
- auth := new(redis_model.Auth)
- if err = json.Unmarshal([]byte(value), auth); err != nil {
- return nil, err
- }
- return auth, nil
- }
- func (l *loginAuth) getToken(ctx context.Context, phone string) string {
- timeSeed := strconv.FormatInt(time.Now().Unix(), 10)
- token := phone + "." + timeSeed + "." + util.MD5(phone, timeSeed, consts.AuthSalt)
- return token
- }
- func (l *loginAuth) parseToken(ctx context.Context, token string) (string, error) {
- parts := strings.Split(token, ".")
- if len(parts) == 3 {
- phone := parts[0]
- timeSeed := parts[1]
- if parts[2] == util.MD5(phone, timeSeed, consts.AuthSalt) {
- return phone, nil
- }
- }
- return "", errors.New("token invalid")
- }
- func (l *loginAuth) encryptPassword(password string) string {
- return util.MD5(password)
- }
- func (l *loginAuth) getRedisKey(key string) string {
- return fmt.Sprintf("%s%s", consts.SessionRedisPrefix, key)
- }
- func (l *loginAuth) SubAccountAuthCode(ctx context.Context, phone string, code string) (string, error) {
- bSubAccountUser, err := db.FindSubAccountByPhone(ctx, phone)
- phoneNumber := phone
- fmt.Println("login_auth", bSubAccountUser, err)
- if err != nil {
- // 数据库错误
- return "数据库错误", err
- }
- if bSubAccountUser == nil {
- // 账号不存在,则判断此手机号码是否被商家主账号注册
- bUser, err := db.GetUserByPhone(ctx, phoneNumber)
- if err != nil {
- // 数据库操作错误
- return "", err
- }
- if bUser == nil {
- // 没有被商家主账户注册,则可以注册
- vcode, err := l.getSessionCode(ctx, phoneNumber)
- if err != nil {
- return "session err", err
- }
- fmt.Printf("缓存的验证码 vcode: %v,实际填入的 code:%v", vcode, code)
- if vcode != code {
- // 验证码错误
- logrus.Debugf("[AuthCode] auth fail,phone:%+v", phone)
- return "验证码有误", errors.New("auth fail")
- }
- return "1", err
- } else if string(bUser.Role) == consts.BRole {
- if bUser.AuthStatus == 1 {
- // 被商家主账户注册,未认证,则可以注册
- vcode, err := l.getSessionCode(ctx, phoneNumber)
- if err != nil {
- return "session err", err
- }
- fmt.Printf("缓存的验证码 vcode: %v,实际填入的 code:%v", vcode, code)
- if vcode != code {
- // 验证码错误
- logrus.Debugf("[AuthCode] auth fail,phone:%+v", phone)
- return "验证码有误", errors.New("auth fail")
- }
- return "1", err
- } else {
- return "主账号存在", errors.New("auth fail")
- }
- }
- } else {
- // 子账号存在,则无法注册
- logrus.Debugf("[AuthCode] auth fail,phone:%+v", phone)
- return "子账号存在", errors.New("subAccount exist")
- }
- return "", nil
- }
|