2022-05-03 00:09:25 +00:00
|
|
|
package provider
|
2022-05-02 07:42:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
. "code.hoteas.com/golang/hotime"
|
2022-05-06 03:35:40 +00:00
|
|
|
"code.hoteas.com/golang/hotime/common"
|
2022-05-02 07:42:54 +00:00
|
|
|
"code.hoteas.com/golang/hotime/dri/ddsms"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Sms = Ctr{
|
|
|
|
//只允许微信验证过的或者登录成功的发送短信
|
|
|
|
"send": func(that *Context) {
|
|
|
|
|
|
|
|
phone := that.Req.FormValue("phone")
|
|
|
|
if len(phone) < 11 {
|
|
|
|
that.Display(3, "手机号格式错误")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-03 00:09:25 +00:00
|
|
|
if that.Session("wechat_id").Data == nil && that.Session("salesman_id").Data == nil {
|
|
|
|
that.Display(2, "没有登录不可发送短信")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-06 03:35:40 +00:00
|
|
|
salesman := that.Db.Get("salesman", "id", common.Map{"phone": phone})
|
|
|
|
if salesman == nil {
|
|
|
|
that.Display(3, "你还不是企服人员,请联系管理员")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-02 07:42:54 +00:00
|
|
|
code := getCode()
|
|
|
|
that.Session("phone", phone)
|
|
|
|
that.Session("code", code)
|
|
|
|
|
|
|
|
ddsms.DDY.SendYZM(phone, that.Config.GetString("smsLogin"), map[string]string{"code": code})
|
|
|
|
|
|
|
|
that.Display(0, "发送成功")
|
|
|
|
},
|
|
|
|
}
|