You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.9 KiB
81 lines
2.9 KiB
package register
|
|
|
|
import (
|
|
"Open_IM/pkg/common/config"
|
|
"Open_IM/pkg/common/constant"
|
|
"Open_IM/pkg/common/db"
|
|
"Open_IM/pkg/common/log"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
)
|
|
|
|
type paramsCertification struct {
|
|
Email string `json:"email"`
|
|
PhoneNumber string `json:"phoneNumber"`
|
|
VerificationCode string `json:"verificationCode"`
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
UsedFor int `json:"usedFor"`
|
|
}
|
|
|
|
func Verify(c *gin.Context) {
|
|
params := paramsCertification{}
|
|
if err := c.BindJSON(¶ms); err != nil {
|
|
log.NewError("", "request params json parsing failed", "", "err", err.Error())
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": constant.FormattingError, "errMsg": err.Error()})
|
|
return
|
|
}
|
|
log.NewInfo("recv req: ", params)
|
|
|
|
var account string
|
|
if params.Email != "" {
|
|
account = params.Email
|
|
} else {
|
|
account = params.AreaCode + params.PhoneNumber
|
|
}
|
|
|
|
if params.VerificationCode == config.Config.Demo.SuperCode {
|
|
log.InfoByKv("Super Code Verified successfully", account)
|
|
data := make(map[string]interface{})
|
|
data["account"] = account
|
|
data["verificationCode"] = params.VerificationCode
|
|
c.JSON(http.StatusOK, gin.H{"errCode": constant.NoError, "errMsg": "Verified successfully!", "data": data})
|
|
return
|
|
}
|
|
log.NewInfo("0", " params.VerificationCode != config.Config.Demo.SuperCode", params.VerificationCode, config.Config.Demo)
|
|
log.NewInfo(params.OperationID, "begin get form redis", account)
|
|
if params.UsedFor == 0 {
|
|
params.UsedFor = constant.VerificationCodeForRegister
|
|
}
|
|
var accountKey string
|
|
switch params.UsedFor {
|
|
case constant.VerificationCodeForRegister:
|
|
accountKey = account + "_" + constant.VerificationCodeForRegisterSuffix
|
|
case constant.VerificationCodeForReset:
|
|
accountKey = account + "_" + constant.VerificationCodeForResetSuffix
|
|
}
|
|
|
|
code, err := db.DB.GetAccountCode(accountKey)
|
|
log.NewInfo(params.OperationID, "redis phone number and verificating Code", accountKey, code, params)
|
|
if err != nil {
|
|
log.NewError(params.OperationID, "Verification code expired", accountKey, "err", err.Error())
|
|
data := make(map[string]interface{})
|
|
data["account"] = account
|
|
c.JSON(http.StatusOK, gin.H{"errCode": constant.CodeInvalidOrExpired, "errMsg": "Verification code expired!", "data": data})
|
|
return
|
|
}
|
|
if params.VerificationCode == code {
|
|
log.Info(params.OperationID, "Verified successfully", account)
|
|
data := make(map[string]interface{})
|
|
data["account"] = account
|
|
data["verificationCode"] = params.VerificationCode
|
|
c.JSON(http.StatusOK, gin.H{"errCode": constant.NoError, "errMsg": "Verified successfully!", "data": data})
|
|
return
|
|
} else {
|
|
log.Info(params.OperationID, "Verification code error", account, params.VerificationCode)
|
|
data := make(map[string]interface{})
|
|
data["account"] = account
|
|
c.JSON(http.StatusOK, gin.H{"errCode": constant.CodeInvalidOrExpired, "errMsg": "Verification code error!", "data": data})
|
|
}
|
|
}
|