123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- package services
- import (
- "encoding/json"
- "eta_gn/eta_api/models"
- "eta_gn/eta_api/services/alarm_msg"
- "eta_gn/eta_api/utils"
- "fmt"
- "io/ioutil"
- "net/http"
- "net/url"
- "strings"
- )
- func SendSmsCode(mobile, vCode, tplId string) (flag bool) {
- if mobile == "" || vCode == "" || tplId == "" {
- return
- }
- var (
- err error
- res string
- )
- defer func() {
- if err != nil {
- tips := fmt.Sprintf("短信验证码发送失败, Err: %s; Result: %s", err.Error(), res)
- utils.FileLog.Info("%s", tips)
- go alarm_msg.SendAlarmMsg(tips, 2)
- }
- }()
- smsCond := ` AND conf_key = ? `
- smsPars := make([]interface{}, 0)
- smsPars = append(smsPars, "SmsJhgnAppKey")
- conf := new(models.BusinessConf)
- conf, e := conf.GetItemByCondition(smsCond, smsPars)
- if e != nil {
- if utils.IsErrNoRow(e) {
- err = fmt.Errorf("请先配置聚合短信Appkey")
- return
- }
- err = fmt.Errorf("获取聚合短信配置信息失败, Err: %s", e.Error())
- return
- }
- if conf.ConfVal == "" {
- err = fmt.Errorf("请先配置聚合短信Appkey")
- return
- }
- result, e := sendSms(conf.ConfVal, mobile, tplId, vCode)
- if e != nil {
- err = fmt.Errorf("send sms err: %s", e.Error())
- return
- }
- res = string(result)
- var netReturn map[string]interface{}
- if e = json.Unmarshal(result, &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 {
- flag = true
- }
- return
- }
- func sendSms(jhGnAppKey, mobile, tplId, code string) (rs []byte, err error) {
- var Url *url.URL
- apiURL := "http://v.juhe.cn/sms/send"
- param := url.Values{}
- param.Set("mobile", mobile) //接受短信的用户手机号码
- param.Set("tpl_id", tplId) //您申请的短信模板ID,根据实际情况修改
- tplVal := fmt.Sprintf(`#code#=%s&#m#=%d`, code, utils.VerifyCodeExpireMinute)
- param.Set("tpl_value", tplVal) //您设置的模板变量,根据实际情况
- param.Set("key", jhGnAppKey) //应用APPKEY(应用详细页查询)
- Url, err = url.Parse(apiURL)
- if err != nil {
- fmt.Printf("解析url错误:\r\n%v", err)
- return nil, err
- }
- Url.RawQuery = param.Encode()
- resp, err := http.Get(Url.String())
- if err != nil {
- fmt.Println("err:", err)
- return nil, err
- }
- defer resp.Body.Close()
- return ioutil.ReadAll(resp.Body)
- }
- 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{}
- param.Set("mobile", mobile) //接受短信的用户手机号码
- 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", 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
- }
- 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.GetBusinessConf()
- if e != nil {
- err = fmt.Errorf("GetBusinessConf err: %s", e.Error())
- return
- }
- if confMap[models.BusinessConfSmsClient] == models.BusinessConfClientFlagNanHua {
- return new(NanHuaSms), 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,用于回查发送状态"`
- }
- 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.GetBusinessConf()
- 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)
- 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
- }
|