wx_user.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package models
  2. import (
  3. "hongze/hongze_api/utils"
  4. "rdluck_tools/orm"
  5. "strings"
  6. "time"
  7. )
  8. type WxUser struct {
  9. UserId int `orm:"column(user_id);pk"`
  10. OpenId string `description:"open_id"`
  11. UnionId string `description:"union_id"`
  12. Subscribe string `description:"是否关注"`
  13. CompanyId int `description:"客户id"`
  14. NickName string `description:"用户昵称"`
  15. RealName string `description:"用户实际名称"`
  16. UserCode string `description:"用户编码"`
  17. Mobile string `description:"手机号码"`
  18. BindAccount string `description:"绑定时的账号"`
  19. WxCode string `description:"微信号"`
  20. Profession string `description:"职业"`
  21. Email string `description:"邮箱"`
  22. Telephone string `description:"座机"`
  23. Sex int `description:"普通用户性别,1为男性,2为女性"`
  24. Province string `description:"普通用户个人资料填写的省份"`
  25. City string `description:"普通用户个人资料填写的城市"`
  26. Country string `description:"国家,如中国为CN"`
  27. SubscribeTime int `description:"关注时间"`
  28. Remark string `description:"备注"`
  29. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  30. Privilege string `description:"用户特权信息,json数组,如微信沃卡用户为(chinaunicom)"`
  31. Unionid string `description:"用户统一标识。针对一个微信开放平台帐号下的应用,同一用户的unionid是唯一的。"`
  32. FirstLogin int `description:"是否第一次登陆"`
  33. Enabled int `description:"是否可用"`
  34. CreatedTime time.Time `description:"创建时间"`
  35. LastUpdatedTime time.Time `description:"最新一次修改时间"`
  36. Seller string `description:"销售员"`
  37. Note string `description:"客户备份信息"`
  38. IsNote int `description:"是否备注过信息"`
  39. FromType string `description:"report' COMMENT 'report:研报,teleconference:电话会"`
  40. ApplyMethod int `description:"0:未申请,1:已付费客户申请试用,2:非客户申请试用"`
  41. RegisterTime time.Time `description:"注册时间"`
  42. }
  43. type WxUserItem struct {
  44. UserId int `description:"用户id"`
  45. OpenId string `description:"open_id"`
  46. UnionId string `description:"union_id"`
  47. CompanyId int `description:"客户id"`
  48. NickName string `description:"用户昵称"`
  49. RealName string `description:"用户实际名称"`
  50. Mobile string `description:"手机号码"`
  51. BindAccount string `description:"绑定时的账号"`
  52. Email string `description:"邮箱"`
  53. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  54. ApplyMethod int `description:"0:未申请,1:已付费客户申请试用,2:非客户申请试用"`
  55. FirstLogin int `description:"是否第一次登陆"`
  56. }
  57. func GetWxUserItemByUserId(userId int) (item *WxUserItem, err error) {
  58. sql := `SELECT * FROM wx_user WHERE user_id=? `
  59. err = orm.NewOrm().Raw(sql, userId).QueryRow(&item)
  60. return
  61. }
  62. func GetWxUserItemByOpenId(openId string) (item *WxUserItem, err error) {
  63. sql := `SELECT * FROM wx_user WHERE open_id=? `
  64. err = orm.NewOrm().Raw(sql, openId).QueryRow(&item)
  65. return
  66. }
  67. func GetWxUserItemByUnionid(unionid string) (item *WxUserItem, err error) {
  68. sql := `SELECT * FROM wx_user WHERE union_id=? `
  69. err = orm.NewOrm().Raw(sql, unionid).QueryRow(&item)
  70. return
  71. }
  72. type PermissionSearchKeyWord struct {
  73. KeyWord string
  74. }
  75. func GetPermissionSearchKeyWord(userId int) (items []*PermissionSearchKeyWord, err error) {
  76. sql := "SELECT a.key_word FROM chart_permission_search_key_word_mapping AS a INNER JOIN company_report_permission AS crp ON a.chart_permission_id=crp.chart_permission_id INNER JOIN wx_user AS wu ON wu.company_id=crp.company_id WHERE wu.user_id=? AND `from`='rddp' GROUP BY a.key_word "
  77. o := orm.NewOrm()
  78. _, err = o.Raw(sql, userId).QueryRows(&items)
  79. return
  80. }
  81. //判断客户权限总数
  82. func GetUserIsMaxPermission(companyId int) (count int, err error) {
  83. sql := ` SELECT COUNT(DISTINCT b.chart_permission_id) AS COUNT FROM company AS a
  84. INNER JOIN company_product AS c ON a.company_id=c.company_id AND c.product_id=1
  85. INNER JOIN company_report_permission AS b ON a.company_id=b.company_id
  86. WHERE b.company_id=? `
  87. o := orm.NewOrm()
  88. err = o.Raw(sql, companyId).QueryRow(&count)
  89. return
  90. }
  91. //添加用户信息
  92. func AddWxUser(item *WxUser) (err error) {
  93. o := orm.NewOrm()
  94. _, err = o.Insert(item)
  95. return
  96. }
  97. type WxLoginResp struct {
  98. Code int
  99. OpenId string
  100. Authorization string
  101. UserId int
  102. Expires time.Time
  103. FirstLogin int
  104. UserPermission int `description:"状态码"`
  105. }
  106. type UserDetail struct {
  107. FirstLogin int `description:"是否第一次登陆"`
  108. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  109. Mobile string `description:"手机号码"`
  110. Email string `description:"邮箱"`
  111. UserPermission int `description:"用户权限状态:0:付费用户,可正常查看报告,40001:获取用户信息失败,40002:非付费用户"`
  112. }
  113. func GetUserDetailByUserId(userId int) (item *UserDetail, err error) {
  114. o := orm.NewOrm()
  115. sql := `SELECT first_login,headimgurl,mobile,email FROM wx_user WHERE user_id = ? `
  116. err = o.Raw(sql, userId).QueryRow(&item)
  117. return
  118. }
  119. type CheckSmsCodeReq struct {
  120. Mobile string `description:"手机号"`
  121. SmsCode string `description:"验证码"`
  122. }
  123. type SmallLimitResp struct {
  124. IsMaxPermission int
  125. }
  126. type CheckEmailCodeReq struct {
  127. Email string `description:"邮箱"`
  128. SmsCode string `description:"验证码"`
  129. }
  130. type ApplyReq struct {
  131. ApplyMethod int `description:"申请方式:"`
  132. CompanyName string `description:"公司名称"`
  133. RealName string `description:"姓名"`
  134. }
  135. func Apply(userId, applyMethod int, mobile, email, companyName, realName, openId string) (err error) {
  136. sql := "INSERT INTO user_apply(user_id, mobile, email, company_name, real_name, apply_method) VALUES (?,?,?,?,?,?) "
  137. rddpOrm := orm.NewOrm()
  138. rddpOrm.Using("rddp")
  139. _, err = rddpOrm.Raw(sql, userId, mobile, email, companyName, realName, applyMethod).Exec()
  140. if err != nil {
  141. return
  142. }
  143. o := orm.NewOrm()
  144. if realName == "" {
  145. msql := " UPDATE wx_user SET apply_method = ?,note=? WHERE open_id = ? "
  146. _, err = o.Raw(msql, applyMethod, companyName, openId).Exec()
  147. } else {
  148. msql := " UPDATE wx_user SET apply_method = ?,real_name=?,note=? WHERE open_id = ? "
  149. _, err = o.Raw(msql, applyMethod, realName, companyName, openId).Exec()
  150. }
  151. return
  152. }
  153. type LoginReq struct {
  154. LoginType int `description:"登录方式:1:手机,2:邮箱"`
  155. Mobile string `description:"手机号"`
  156. Email string `description:"邮箱"`
  157. }
  158. type LoginResp struct {
  159. UserId int `description:"用户id"`
  160. UserPermission int `description:"手机号"`
  161. Authorization string
  162. }
  163. func BindMobile(openId, mobile string, userId, loginType int) (wxUserId int, err error) {
  164. mobile=strings.Trim(mobile," ")
  165. //loginType 登录方式:1:手机,2:邮箱
  166. sql := ``
  167. if loginType == 1 {
  168. sql = `SELECT * FROM wx_user WHERE mobile = ? `
  169. } else {
  170. sql = "SELECT * FROM wx_user WHERE email = ? "
  171. }
  172. user := new(WxUser)
  173. o := orm.NewOrm()
  174. err = o.Raw(sql, mobile).QueryRow(&user)
  175. if err != nil && err.Error() != utils.ErrNoRow() {
  176. return
  177. }
  178. if user == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  179. msql := ``
  180. if loginType == 1 {
  181. msql = "UPDATE wx_user SET mobile = ?,bind_account = ? where open_id = ? "
  182. } else {
  183. msql = "UPDATE wx_user SET email = ?,bind_account = ? where open_id = ? "
  184. }
  185. _, err = o.Raw(msql, mobile, mobile, openId).Exec()
  186. wxUserId = userId
  187. } else {
  188. if user.OpenId == "" {
  189. wxUserId = user.UserId
  190. dsql := ` DELETE FROM wx_user WHERE open_id = ? `
  191. _, err = o.Raw(dsql, openId).Exec()
  192. if err != nil {
  193. return wxUserId, err
  194. }
  195. msql := ``
  196. if loginType == 1 {
  197. msql = ` UPDATE wx_user SET open_id = ?,bind_account = ?,created_time=NOW(),register_time=NOW() WHERE mobile = ? `
  198. } else {
  199. msql = ` UPDATE wx_user SET open_id = ?,bind_account = ?,created_time=NOW(),register_time=NOW() WHERE email = ? `
  200. }
  201. _, err = o.Raw(msql, openId, mobile, mobile).Exec()
  202. } else {
  203. wxUserId = userId
  204. }
  205. }
  206. return
  207. }
  208. func ModifyFirstLogin(userId int) (err error) {
  209. o := orm.NewOrm()
  210. sql := `UPDATE wx_user SET first_login=0 WHERE user_id = ? `
  211. _, err = o.Raw(sql, userId).Exec()
  212. return
  213. }