261 lines
6.4 KiB
Go
261 lines
6.4 KiB
Go
package route
|
|
|
|
import (
|
|
"fmt"
|
|
"hc/dbop"
|
|
"hc/weapp"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/shockliu/logger"
|
|
)
|
|
|
|
func WxLogin(c *gin.Context) {
|
|
type tmp struct {
|
|
Code string `json:"code"`
|
|
}
|
|
var data tmp
|
|
|
|
if err := c.ShouldBindJSON(&data); err != nil {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
session, openid, unionid, ok := weapp.GetAuth(data.Code)
|
|
//logger.Debugf("openid:%s , unionid:%s", openid, unionid)
|
|
if !ok {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": "鉴权失败",
|
|
})
|
|
return
|
|
}
|
|
|
|
id := dbop.GetUserId(openid, unionid)
|
|
|
|
if id < 0 { //新用户
|
|
|
|
ts, err := dbop.MDb.Begin()
|
|
|
|
_, err = ts.Exec("insert into user_account (open_id,user_name,opendate,dept_id) values (?,?,now(),100)", openid, "小程序用户")
|
|
if err != nil {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": "用户访问失败",
|
|
})
|
|
return
|
|
}
|
|
id = dbop.GetUserId(openid, unionid)
|
|
|
|
//自动添加训练计划
|
|
_, err = ts.Exec("insert into user_plan (user_id,play_type,action_id,action_seri,creat_time,action_dur) values (?,2,?,?,now(),?), (?,2,?,?,now(),?), (?,2,?,?,now(),?) ,(?,2,?,?,now(),?), (?,2,?,?,now(),?);", id, 1, 1, 300, id, 5, 2, 300, id, 6, 3, 120, id, 7, 3, 120, id, 11, 5, 300)
|
|
if err != nil {
|
|
ts.Rollback()
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
logger.Debugf(err.Error())
|
|
return
|
|
}
|
|
|
|
_, err = ts.Exec("insert into user_actplan (user_id,action_type,freq_type,relax_time,creat_time,modify_time,last_reviser) values (?,2,?,?,now(),now(),?);", id, "每周五次", 30, "系统")
|
|
if err != nil {
|
|
ts.Rollback()
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
logger.Debugf(err.Error())
|
|
return
|
|
}
|
|
ts.Commit()
|
|
|
|
}
|
|
|
|
if id > 0 {
|
|
// 用户的session_key 需要保留,便于后续解密数据
|
|
dbop.SaveSessionKey(openid, session)
|
|
tk := CreateToken(id)
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": 0,
|
|
"data": gin.H{
|
|
"userId": id,
|
|
"token": tk,
|
|
},
|
|
})
|
|
} else { //新用户
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": "用户访问失败",
|
|
})
|
|
}
|
|
}
|
|
|
|
func WxLogout(c *gin.Context) {
|
|
user := c.MustGet("TK_User").(int)
|
|
var openid string
|
|
err := dbop.MDb.QueryRow("select openId from user_relation where id=? and channel=5;", user).Scan(&openid)
|
|
if err != nil {
|
|
logger.Debugf("获得用户openId失败%s\n", err)
|
|
} else {
|
|
dbop.ClearSessionKey(openid)
|
|
}
|
|
dbop.RDb.ZRem(dbop.Maintain, strconv.Itoa(user)) // 删除维护人员地理信息,不可派单
|
|
_, err = dbop.MDb.Exec("delete from user_relation where id=? and channel=5;", user)
|
|
if err != nil {
|
|
logger.Warnf("删除用户数据失败%s\n", err)
|
|
}
|
|
var cnt int
|
|
err = dbop.MDb.QueryRow("select count(1) from user_relation where id=?;", user).Scan(&cnt)
|
|
if err != nil {
|
|
logger.Warnf("获取用户数据失败%s\n", err)
|
|
}
|
|
if cnt == 0 {
|
|
_, err = dbop.MDb.Exec("delete from dqk_user where id=?;", user)
|
|
if err != nil {
|
|
logger.Warnf("删除用户数据失败%s\n", err)
|
|
}
|
|
} else {
|
|
_, err = dbop.MDb.Exec("update dqk_user set name='维护用户登出' where id=?;", user)
|
|
if err != nil {
|
|
logger.Warnf("用户登出失败%s\n", err)
|
|
}
|
|
}
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": 0,
|
|
"msg": "success",
|
|
})
|
|
}
|
|
|
|
func GetUserInfo(c *gin.Context) {
|
|
uid := c.MustGet("TK_User").(int)
|
|
|
|
var uname, device, mobile, avatar string
|
|
var sex, user_id int
|
|
err := dbop.MDb.QueryRow("select a.user_id,ifnull(a.sex,0),ifnull(a.mobile,''),ifnull(a.user_name,'小程序用户'),ifnull(m.head_img_url,''), ifnull(d.device_sn,'') from user_account a LEFT JOIN wechat_member m on a.open_id=m.open_id left join user_device_bind b on a.user_id = b.user_id left join health_device d on b.device_id=d.device_id where a.user_id = ?", uid).Scan(&user_id, &sex, &mobile, &uname, &avatar, &device)
|
|
if err != nil {
|
|
logger.Debugf("获取用户%d信息失败%s\n", uid, err)
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": 0,
|
|
"data": gin.H{
|
|
"uid": user_id,
|
|
"uname": uname,
|
|
"sex": sex,
|
|
"avatar": avatar,
|
|
"mobile": mobile,
|
|
"device": device,
|
|
},
|
|
})
|
|
}
|
|
|
|
func UpdateUser(c *gin.Context) {
|
|
uid := c.MustGet("TK_User").(int)
|
|
type tmp struct {
|
|
Name string `json:"uname,omitempty"`
|
|
Mobile string `json:"mobile,omitempty"`
|
|
Mail string `json:"mail,omitempty"`
|
|
FocusCode string `json:"focus,omitempty"`
|
|
}
|
|
var data tmp
|
|
if err := c.ShouldBindJSON(&data); err != nil {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
|
|
var sqlstr string
|
|
if len(data.Name) > 0 {
|
|
sqlstr = fmt.Sprintf("update user_account set user_name = '%s'", data.Name)
|
|
}
|
|
|
|
if len(data.Mobile) > 0 {
|
|
if len(sqlstr) > 0 {
|
|
sqlstr = fmt.Sprintf("%s,mobile = '%s'", sqlstr, data.Mobile)
|
|
} else {
|
|
sqlstr = fmt.Sprintf("update user_account set mobile = '%s'", data.Mobile)
|
|
}
|
|
}
|
|
|
|
if len(sqlstr) > 0 {
|
|
sqlstr = fmt.Sprintf("%s where user_id = %d", sqlstr, uid)
|
|
_, err := dbop.MDb.Exec(sqlstr)
|
|
if err != nil {
|
|
logger.Debugf("获取用户%d信息失败%s\n", uid, err)
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
}
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": 0,
|
|
"msg": "操作成功",
|
|
})
|
|
|
|
}
|
|
|
|
func ModifyPasswd(c *gin.Context) {
|
|
user := c.MustGet("TK_User").(int)
|
|
type tmp struct {
|
|
OldPwd string `json:"oldPassword"`
|
|
NewPwd string `json:"newPassword"`
|
|
}
|
|
var data tmp
|
|
if err := c.ShouldBindJSON(&data); err != nil {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
logger.Debugf("修改密码参数%#v\n", data)
|
|
var aid int
|
|
err := dbop.MDb.QueryRow("SELECT id FROM `aos_user` where account=(select name from dqk_user where id=?);", user).Scan(&aid)
|
|
if err != nil {
|
|
logger.Debugf("获取用户系统账号失败%s\n", err)
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": "获取用户系统账号失败,请联系客服",
|
|
})
|
|
return
|
|
}
|
|
|
|
if !dbop.PasswdAuth(aid, data.OldPwd) {
|
|
logger.Debugf("密码修改失败\n")
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": "密码校验失败,请联系客服",
|
|
})
|
|
return
|
|
}
|
|
if dbop.SavePasswd(aid, data.NewPwd) {
|
|
logger.Debugf("密码修改成功\n")
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": 0,
|
|
"msg": "密码修改成功",
|
|
})
|
|
|
|
} else {
|
|
logger.Debugf("密码修改失败\n")
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": -1,
|
|
"msg": "密码修改失败,请稍后再试",
|
|
})
|
|
|
|
}
|
|
}
|