wx_user.go 8.7 KB

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