|
@@ -7,6 +7,9 @@ import (
|
|
"io/ioutil"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/http"
|
|
"net/url"
|
|
"net/url"
|
|
|
|
+ "strings"
|
|
|
|
+
|
|
|
|
+ "eta/eta_mini_api/models"
|
|
)
|
|
)
|
|
|
|
|
|
func SendSmsCode(mobile, vcode string) bool {
|
|
func SendSmsCode(mobile, vcode string) bool {
|
|
@@ -16,7 +19,7 @@ func SendSmsCode(mobile, vcode string) bool {
|
|
tplId = "262642"
|
|
tplId = "262642"
|
|
}
|
|
}
|
|
expiresTime := "15"
|
|
expiresTime := "15"
|
|
- result, err := sendSms(mobile, tplId, vcode, expiresTime)
|
|
|
|
|
|
+ result, err := sendSms(utils.JhGnAppKey, mobile, tplId, vcode, expiresTime)
|
|
if err != nil {
|
|
if err != nil {
|
|
fmt.Println("发送短信失败")
|
|
fmt.Println("发送短信失败")
|
|
return false
|
|
return false
|
|
@@ -38,7 +41,7 @@ func SendSmsCode(mobile, vcode string) bool {
|
|
return flag
|
|
return flag
|
|
}
|
|
}
|
|
|
|
|
|
-func sendSms(mobile, tplId, code, expirdTime string) (rs []byte, err error) {
|
|
|
|
|
|
+func sendSms(jhGnAppKey, mobile, tplId, code, expirdTime string) (rs []byte, err error) {
|
|
var Url *url.URL
|
|
var Url *url.URL
|
|
apiURL := "http://v.juhe.cn/sms/send"
|
|
apiURL := "http://v.juhe.cn/sms/send"
|
|
//初始化参数
|
|
//初始化参数
|
|
@@ -47,7 +50,7 @@ func sendSms(mobile, tplId, code, expirdTime string) (rs []byte, err error) {
|
|
param.Set("mobile", mobile) //接受短信的用户手机号码
|
|
param.Set("mobile", mobile) //接受短信的用户手机号码
|
|
param.Set("tpl_id", tplId) //您申请的短信模板ID,根据实际情况修改
|
|
param.Set("tpl_id", tplId) //您申请的短信模板ID,根据实际情况修改
|
|
param.Set("tpl_value", "#code#="+code+"&"+"#m#="+expirdTime) //您设置的模板变量,根据实际情况
|
|
param.Set("tpl_value", "#code#="+code+"&"+"#m#="+expirdTime) //您设置的模板变量,根据实际情况
|
|
- param.Set("key", utils.JhGnAppKey) //应用APPKEY(应用详细页查询)
|
|
|
|
|
|
+ param.Set("key", jhGnAppKey) //应用APPKEY(应用详细页查询)
|
|
|
|
|
|
Url, err = url.Parse(apiURL)
|
|
Url, err = url.Parse(apiURL)
|
|
if err != nil {
|
|
if err != nil {
|
|
@@ -64,3 +67,156 @@ func sendSms(mobile, tplId, code, expirdTime string) (rs []byte, err error) {
|
|
defer resp.Body.Close()
|
|
defer resp.Body.Close()
|
|
return ioutil.ReadAll(resp.Body)
|
|
return ioutil.ReadAll(resp.Body)
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// sendSmsGj 发送国际短信
|
|
|
|
+func sendSmsGj(jhGjAppKey, mobile, code, areaNum, tplId, tplValue string) (rs []byte, err error) {
|
|
|
|
+ var Url *url.URL
|
|
|
|
+ apiURL := "http://v.juhe.cn/smsInternational/send.php"
|
|
|
|
+ //初始化参数
|
|
|
|
+ param := url.Values{}
|
|
|
|
+ //配置请求参数,方法内部已处理urlencode问题,中文参数可以直接传参
|
|
|
|
+ param.Set("mobile", mobile) //接受短信的用户手机号码
|
|
|
|
+ //param.Set("tplId", "10054") //您申请的短信模板ID,根据实际情况修改
|
|
|
|
+ param.Set("tplId", tplId) //您申请的短信模板ID,根据实际情况修改
|
|
|
|
+ if strings.Contains(tplValue, "#code#=%s") {
|
|
|
|
+ tplValue = strings.Replace(tplValue, "#code#=%s", "#code#="+code, 1)
|
|
|
|
+ }
|
|
|
|
+ if strings.Contains(tplValue, "#m#=%d") {
|
|
|
|
+ tplValue = strings.Replace(tplValue, "#m#=%d", fmt.Sprintf("#m#=%d", utils.VerifyCodeExpireMinute), 1)
|
|
|
|
+ }
|
|
|
|
+ //param.Set("tplValue", "#code#="+code) //您设置的模板变量,根据实际情况
|
|
|
|
+ param.Set("tplValue", tplValue) //您设置的模板变量,根据实际情况
|
|
|
|
+ param.Set("key", jhGjAppKey) //应用APPKEY(应用详细页查询)
|
|
|
|
+ param.Set("areaNum", areaNum) //应用APPKEY(应用详细页查询)
|
|
|
|
+
|
|
|
|
+ Url, err = url.Parse(apiURL)
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Printf("解析url错误:\r\n%v", err)
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ //如果参数中有中文参数,这个方法会进行URLEncode
|
|
|
|
+ Url.RawQuery = param.Encode()
|
|
|
|
+ resp, err := http.Get(Url.String())
|
|
|
|
+ if err != nil {
|
|
|
|
+ fmt.Println("err:", err)
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ utils.FileLog.Info("sendSmsGj:param:" + Url.String())
|
|
|
|
+ defer resp.Body.Close()
|
|
|
|
+ body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
+ utils.FileLog.Info("sendSmsGj:result:" + string(body))
|
|
|
|
+ return body, err
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+type SmsClient interface {
|
|
|
|
+ SendUserLoginCode(UserLoginSmsCodeReq) (UserLoginSmsCodeResult, error)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func NewSmsClient() (cli SmsClient, err error) {
|
|
|
|
+ confMap, e := models.GetEtaConf()
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = fmt.Errorf("GetBusinessConf err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if confMap[models.BusinessConfSmsClient] == models.BusinessConfClientFlagDongwu {
|
|
|
|
+ return new(DongWuSms), nil
|
|
|
|
+ }
|
|
|
|
+ return new(HzSms), nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+type HzSms struct{}
|
|
|
|
+
|
|
|
|
+type UserLoginSmsCodeReq struct {
|
|
|
|
+ TelAreaCode string `description:"区号"`
|
|
|
|
+ Mobile string `description:"手机号"`
|
|
|
|
+ VerifyCode string `description:"短信验证码"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+type UserLoginSmsCodeResult struct {
|
|
|
|
+ Success bool `description:"发送是否成功"`
|
|
|
|
+ Message string `description:"提示信息"`
|
|
|
|
+ RequestId string `description:"发送ID,用于回查发送状态"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// SendUserLoginCode 发送用户登录验证码
|
|
|
|
+func (cli *HzSms) SendUserLoginCode(req UserLoginSmsCodeReq) (result UserLoginSmsCodeResult, err error) {
|
|
|
|
+ if req.Mobile == "" || req.VerifyCode == "" {
|
|
|
|
+ err = fmt.Errorf("参数有误, Mobile: %s, VerifyCode: %s", req.Mobile, req.VerifyCode)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ confMap, e := models.GetEtaConf()
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = fmt.Errorf("GetBusinessConf err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 国内短信
|
|
|
|
+ var netReturn map[string]interface{}
|
|
|
|
+ if req.TelAreaCode == utils.TelAreaCodeHome {
|
|
|
|
+ tplId := confMap[models.BusinessConfLoginSmsTpId]
|
|
|
|
+ if tplId == "" {
|
|
|
|
+ err = fmt.Errorf("请先配置短信模板")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ appKey := confMap[models.BusinessConfSmsJhgnAppKey]
|
|
|
|
+ if appKey == "" {
|
|
|
|
+ err = fmt.Errorf("请先配置聚合短信AppKey")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ smsRes, e := sendSms(appKey, req.Mobile, tplId, req.VerifyCode, fmt.Sprintf("%d", utils.VerifyCodeExpireMinute))
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = fmt.Errorf("send sms err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if e = json.Unmarshal(smsRes, &netReturn); e != nil {
|
|
|
|
+ err = fmt.Errorf("json unmarshal err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 国际短信
|
|
|
|
+ if req.TelAreaCode != utils.TelAreaCodeHome {
|
|
|
|
+ tplId := confMap[models.BusinessConfLoginSmsGjTpId]
|
|
|
|
+ if tplId == "" {
|
|
|
|
+ err = fmt.Errorf("请先配置短信模板")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ appKey := confMap[models.BusinessConfSmsJhgjAppKey]
|
|
|
|
+ if appKey == "" {
|
|
|
|
+ err = fmt.Errorf("请先配置聚合短信AppKey")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ tplValue := confMap[models.BusinessConfSmsJhgjVariable]
|
|
|
|
+ if tplValue == "" {
|
|
|
|
+ // 默认初版变量
|
|
|
|
+ tplValue = "#code#=%s"
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ smsRes, e := sendSmsGj(appKey, req.Mobile, req.VerifyCode, req.TelAreaCode, tplId, tplValue)
|
|
|
|
+ if e != nil {
|
|
|
|
+ err = fmt.Errorf("send gj sms err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if e = json.Unmarshal(smsRes, &netReturn); e != nil {
|
|
|
|
+ err = fmt.Errorf("json unmarshal err: %s", e.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ errCode, ok := netReturn["error_code"].(float64)
|
|
|
|
+ if !ok {
|
|
|
|
+ err = fmt.Errorf("result code err")
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ // 忽略错误的手机号码这种错误
|
|
|
|
+ if errCode != 0 && errCode != 205401 {
|
|
|
|
+ err = fmt.Errorf("err code %f", errCode)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ // 发送成功
|
|
|
|
+ if errCode == 0 {
|
|
|
|
+ result.Success = true
|
|
|
|
+ }
|
|
|
|
+ return
|
|
|
|
+}
|