wx_user.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. package models
  2. import (
  3. "fmt"
  4. "hongze/hongze_api/utils"
  5. "rdluck_tools/orm"
  6. "strings"
  7. "time"
  8. )
  9. type WxUser struct {
  10. UserId int `orm:"column(user_id);pk"`
  11. OpenId string `description:"open_id"`
  12. UnionId string `description:"union_id"`
  13. Subscribe string `description:"是否关注"`
  14. CompanyId int `description:"客户id"`
  15. NickName string `description:"用户昵称"`
  16. RealName string `description:"用户实际名称"`
  17. UserCode string `description:"用户编码"`
  18. Mobile string `description:"手机号码"`
  19. BindAccount string `description:"绑定时的账号"`
  20. WxCode string `description:"微信号"`
  21. Profession string `description:"职业"`
  22. Email string `description:"邮箱"`
  23. Telephone string `description:"座机"`
  24. Sex int `description:"普通用户性别,1为男性,2为女性"`
  25. Province string `description:"普通用户个人资料填写的省份"`
  26. City string `description:"普通用户个人资料填写的城市"`
  27. Country string `description:"国家,如中国为CN"`
  28. SubscribeTime int `description:"关注时间"`
  29. Remark string `description:"备注"`
  30. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  31. Privilege string `description:"用户特权信息,json数组,如微信沃卡用户为(chinaunicom)"`
  32. Unionid string `description:"用户统一标识。针对一个微信开放平台帐号下的应用,同一用户的unionid是唯一的。"`
  33. FirstLogin int `description:"是否第一次登陆"`
  34. Enabled int `description:"是否可用"`
  35. CreatedTime time.Time `description:"创建时间"`
  36. LastUpdatedTime time.Time `description:"最新一次修改时间"`
  37. Seller string `description:"销售员"`
  38. Note string `description:"客户备份信息"`
  39. IsNote int `description:"是否备注过信息"`
  40. FromType string `description:"report' COMMENT 'report:研报,teleconference:电话会"`
  41. ApplyMethod int `description:"0:未申请,1:已付费客户申请试用,2:非客户申请试用"`
  42. RegisterTime time.Time `description:"注册时间"`
  43. RegisterPlatform int `description:"注册平台,1:微信端,2:PC网页端"`
  44. IsFreeLogin bool `description:"是否免登陆,true:免登陆,false:非免登陆"`
  45. LoginTime time.Time `description:"最近一次登录时间"`
  46. IsRegister int `description:"是否注册:1:已注册,0:未注册"`
  47. Source int `description:"绑定来源,1:微信端,2:pc网页端,3:查研观向小程序,4:每日咨询"`
  48. }
  49. type WxUserItem struct {
  50. UserId int `description:"用户id"`
  51. OpenId string `description:"open_id"`
  52. UnionId string `description:"union_id"`
  53. CompanyId int `description:"客户id"`
  54. NickName string `description:"用户昵称"`
  55. RealName string `description:"用户实际名称"`
  56. Mobile string `description:"手机号码"`
  57. BindAccount string `description:"绑定时的账号"`
  58. Email string `description:"邮箱"`
  59. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  60. ApplyMethod int `description:"0:未申请,1:已付费客户申请试用,2:非客户申请试用"`
  61. FirstLogin int `description:"是否第一次登陆"`
  62. IsFreeLogin int `description:"是否免登陆,true:免登陆,false:非免登陆"`
  63. LoginTime time.Time `description:"登录时间"`
  64. CreatedTime time.Time `description:"创建时间"`
  65. LastUpdatedTime time.Time `description:"最近一次修改时间"`
  66. IsRegister int `description:"是否注册:1:已注册,0:未注册"`
  67. }
  68. func GetWxUserItemByUserId(userId int) (item *WxUserItem, err error) {
  69. sql := `SELECT * FROM wx_user WHERE user_id=? `
  70. err = orm.NewOrm().Raw(sql, userId).QueryRow(&item)
  71. return
  72. }
  73. func GetWxUserItemByOpenId(openId string) (item *WxUserItem, err error) {
  74. sql := `SELECT * FROM wx_user WHERE open_id=? `
  75. err = orm.NewOrm().Raw(sql, openId).QueryRow(&item)
  76. return
  77. }
  78. func GetWxUserItemByUnionid(unionid string) (item *WxUserItem, err error) {
  79. sql := `SELECT * FROM wx_user WHERE union_id=? `
  80. err = orm.NewOrm().Raw(sql, unionid).QueryRow(&item)
  81. return
  82. }
  83. type PermissionSearchKeyWord struct {
  84. KeyWord string
  85. }
  86. func GetPermissionSearchKeyWord(userId int) (items []*PermissionSearchKeyWord, err error) {
  87. 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 "
  88. o := orm.NewOrm()
  89. _, err = o.Raw(sql, userId).QueryRows(&items)
  90. return
  91. }
  92. //判断客户权限总数
  93. func GetUserIsMaxPermission(companyId int) (count int, err error) {
  94. sql := ` SELECT COUNT(DISTINCT b.chart_permission_id) AS COUNT FROM company AS a
  95. INNER JOIN company_product AS c ON a.company_id=c.company_id AND c.product_id=1
  96. INNER JOIN company_report_permission AS b ON a.company_id=b.company_id
  97. WHERE b.company_id=? `
  98. o := orm.NewOrm()
  99. err = o.Raw(sql, companyId).QueryRow(&count)
  100. return
  101. }
  102. //添加用户信息
  103. func AddWxUser(item *WxUser) (lastId int64, err error) {
  104. o := orm.NewOrm()
  105. lastId, err = o.Insert(item)
  106. return
  107. }
  108. type WxLoginResp struct {
  109. Code int
  110. Authorization string
  111. UserId int
  112. Expires time.Time
  113. FirstLogin int
  114. UserPermission int `description:"状态码"`
  115. Headimgurl string `description:"用户头像"`
  116. Mobile string `description:"手机号"`
  117. Email string `description:"邮箱"`
  118. CompanyName string `description:"客户名称"`
  119. Status string `description:"状态"`
  120. EndDate string `description:"到期日期"`
  121. ProductName string `description:"客户类型名称"`
  122. }
  123. type UserDetail struct {
  124. FirstLogin int `description:"是否第一次登陆"`
  125. Headimgurl string `description:"用户头像,最后一个数值代表正方形头像大小(有0、46、64、96、132数值可选,0代表640*640正方形头像),用户没有头像时该项为空"`
  126. Mobile string `description:"手机号码"`
  127. Email string `description:"邮箱"`
  128. UserPermission int `description:"用户权限状态:0:付费用户,可正常查看报告,40001:获取用户信息失败,40002:非付费用户"`
  129. }
  130. func GetUserDetailByUserId(userId int) (item *UserDetail, err error) {
  131. o := orm.NewOrm()
  132. sql := `SELECT first_login,headimgurl,mobile,email FROM wx_user WHERE user_id = ? `
  133. err = o.Raw(sql, userId).QueryRow(&item)
  134. return
  135. }
  136. type CheckSmsCodeReq struct {
  137. Mobile string `description:"手机号"`
  138. SmsCode string `description:"验证码"`
  139. }
  140. type SmallLimitResp struct {
  141. IsMaxPermission int
  142. }
  143. type CheckEmailCodeReq struct {
  144. Email string `description:"邮箱"`
  145. SmsCode string `description:"验证码"`
  146. }
  147. type ApplyReq struct {
  148. ApplyMethod int `description:"申请方式:"`
  149. CompanyName string `description:"公司名称"`
  150. RealName string `description:"姓名"`
  151. }
  152. func Apply(userId, applyMethod int, mobile, email, companyName, realName, openId string) (err error) {
  153. sql := "INSERT INTO user_apply(user_id, mobile, email, company_name, real_name, apply_method) VALUES (?,?,?,?,?,?) "
  154. rddpOrm := orm.NewOrm()
  155. rddpOrm.Using("rddp")
  156. _, err = rddpOrm.Raw(sql, userId, mobile, email, companyName, realName, applyMethod).Exec()
  157. if err != nil {
  158. return
  159. }
  160. o := orm.NewOrm()
  161. if realName == "" {
  162. msql := " UPDATE wx_user SET apply_method = ?,note=? WHERE open_id = ? "
  163. _, err = o.Raw(msql, applyMethod, companyName, openId).Exec()
  164. } else {
  165. msql := " UPDATE wx_user SET apply_method = ?,real_name=?,note=? WHERE user_id = ? "
  166. _, err = o.Raw(msql, applyMethod, realName, companyName, userId).Exec()
  167. }
  168. return
  169. }
  170. type LoginReq struct {
  171. LoginType int `description:"登录方式:1:手机,2:邮箱"`
  172. Mobile string `description:"手机号"`
  173. Email string `description:"邮箱"`
  174. }
  175. type LoginResp struct {
  176. UserId int `description:"用户id"`
  177. UserPermission int `description:"权限"`
  178. Authorization string `description:"Token"`
  179. Headimgurl string `description:"用户头像"`
  180. Mobile string `description:"手机号"`
  181. Email string `description:"邮箱"`
  182. CompanyName string `description:"客户名称"`
  183. Status string `description:"状态"`
  184. EndDate string `description:"到期日期"`
  185. ProductName string `description:"客户类型名称"`
  186. }
  187. func BindMobile(openId, mobile string, userId, loginType int) (wxUserId int, err error) {
  188. utils.FileLog.Info("BindMobile: openId: %s,mobile: %s,userId: %d,loginType:%d ", openId, mobile, userId, loginType)
  189. mobile = strings.Trim(mobile, " ")
  190. //loginType 登录方式:1:手机,2:邮箱
  191. sql := ``
  192. if loginType == 1 {
  193. sql = `SELECT * FROM wx_user WHERE mobile = ? `
  194. } else {
  195. sql = "SELECT * FROM wx_user WHERE email = ? "
  196. }
  197. user := new(WxUser)
  198. o := orm.NewOrm()
  199. err = o.Raw(sql, mobile).QueryRow(&user)
  200. fmt.Println("err:", err)
  201. if err != nil && err.Error() != utils.ErrNoRow() {
  202. return
  203. }
  204. fmt.Println(user)
  205. if user == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  206. utils.FileLog.Info("user is nil ")
  207. fmt.Println("line 210")
  208. msql := ``
  209. if loginType == 1 {
  210. msql = "UPDATE wx_user SET mobile = ?,bind_account = ? where open_id = ? "
  211. } else {
  212. msql = "UPDATE wx_user SET email = ?,bind_account = ? where open_id = ? "
  213. }
  214. fmt.Println("bind")
  215. fmt.Println(msql, mobile, mobile, openId)
  216. _, err = o.Raw(msql, mobile, mobile, openId).Exec()
  217. wxUserId = userId
  218. } else {
  219. utils.FileLog.Info("user is not nil ")
  220. fmt.Println("line 223")
  221. if openId != "" {
  222. sql = `SELECT * FROM wx_user WHERE open_id = ? `
  223. openIdUser := new(WxUser)
  224. o := orm.NewOrm()
  225. err = o.Raw(sql, openId).QueryRow(&openIdUser)
  226. if openIdUser != nil {
  227. if openIdUser.UserId != user.UserId {
  228. utils.FileLog.Info("user id is not eq %d , %d", openIdUser.UserId, user.UserId)
  229. wxUserId = user.UserId
  230. dsql := ` DELETE FROM wx_user WHERE open_id = ? `
  231. _, err = o.Raw(dsql, openId).Exec()
  232. if err != nil {
  233. return wxUserId, err
  234. }
  235. }
  236. }
  237. msql := ``
  238. ssql := ``
  239. if loginType == 1 {
  240. msql = ` UPDATE wx_user SET open_id = ?,bind_account = ?,created_time=NOW(),register_time=NOW() WHERE mobile = ? `
  241. ssql = `SELECT * FROM wx_user WHERE mobile = ? `
  242. } else {
  243. msql = ` UPDATE wx_user SET open_id = ?,bind_account = ?,created_time=NOW(),register_time=NOW() WHERE email = ? `
  244. ssql = `SELECT * FROM wx_user WHERE email = ? `
  245. }
  246. _, err = o.Raw(msql, openId, mobile, mobile).Exec()
  247. bindUser := new(WxUser)
  248. err = o.Raw(ssql, mobile).QueryRow(&bindUser)
  249. if bindUser != nil && bindUser.UserId > 0 {
  250. wxUserId = bindUser.UserId
  251. }
  252. } else {
  253. fmt.Println("line 239")
  254. wxUserId = userId
  255. }
  256. }
  257. if wxUserId <= 0 && (user != nil && err.Error() != utils.ErrNoRow()) {
  258. utils.FileLog.Info("wxUserId =0 %d , %d", user.UserId)
  259. wxUserId = user.UserId
  260. }
  261. return
  262. }
  263. func PcBindMobile(unionId, mobile string, userId, loginType int) (wxUserId int, err error) {
  264. //loginType 登录方式:1:手机,2:邮箱
  265. utils.FileLog.Info("绑定参数:%s %s %d %d", unionId, mobile, userId, loginType)
  266. sql := ``
  267. if loginType == 1 {
  268. sql = `SELECT * FROM wx_user WHERE mobile = ? `
  269. } else {
  270. sql = "SELECT * FROM wx_user WHERE email = ? "
  271. }
  272. user := new(WxUser)
  273. o := orm.NewOrm()
  274. err = o.Raw(sql, mobile).QueryRow(&user)
  275. if err != nil && err.Error() != utils.ErrNoRow() {
  276. return
  277. }
  278. if user == nil || (err != nil && err.Error() == utils.ErrNoRow()) {
  279. utils.FileLog.Info("用户不存在,根据union_id绑定")
  280. msql := ``
  281. if loginType == 1 {
  282. msql = "UPDATE wx_user SET mobile = ?,bind_account = ? WHERE union_id = ? "
  283. } else {
  284. msql = "UPDATE wx_user SET email = ?,bind_account = ? WHERE union_id = ? "
  285. }
  286. _, err = o.Raw(msql, mobile, mobile, unionId).Exec()
  287. wxUserId = userId
  288. } else {
  289. utils.FileLog.Info("用户存在,user.UnionId:%s", user.UnionId)
  290. if user.UnionId == "" {
  291. sql = `SELECT * FROM wx_user WHERE union_id = ? `
  292. userInfo := new(WxUser)
  293. o := orm.NewOrm()
  294. err = o.Raw(sql, unionId).QueryRow(&userInfo)
  295. if err != nil {
  296. return
  297. }
  298. utils.FileLog.Info("user.RegisterTime %s", user.RegisterTime.Format(utils.FormatDateTime))
  299. utils.FileLog.Info("userInfo.RegisterTime %s", userInfo.RegisterTime.Format(utils.FormatDateTime))
  300. var maxRegisterTime time.Time
  301. if user.RegisterTime.Before(userInfo.RegisterTime) {
  302. maxRegisterTime = user.RegisterTime
  303. utils.FileLog.Info("after")
  304. } else {
  305. maxRegisterTime = userInfo.RegisterTime
  306. utils.FileLog.Info("not after")
  307. }
  308. utils.FileLog.Info("maxRegisterTime %s", maxRegisterTime.Format(utils.FormatDateTime))
  309. wxUserId = user.UserId
  310. dsql := ` DELETE FROM wx_user WHERE union_id = ? `
  311. _, err = o.Raw(dsql, unionId).Exec()
  312. if err != nil {
  313. return wxUserId, err
  314. }
  315. msql := ` UPDATE wx_user SET union_id=?,register_time=?,province=?,city=?,country=?,headimgurl=?,unionid=?,sex=? WHERE user_id = ? `
  316. _, err = o.Raw(msql, unionId, maxRegisterTime, userInfo.Province, userInfo.City, userInfo.Country, userInfo.Headimgurl, unionId, userInfo.Sex, user.UserId).Exec()
  317. wxUserId = user.UserId
  318. } else {
  319. sql = `SELECT * FROM wx_user WHERE user_id = ? `
  320. userInfo := new(WxUser)
  321. o := orm.NewOrm()
  322. err = o.Raw(sql, userId).QueryRow(&userInfo)
  323. if err != nil && err.Error() != utils.ErrNoRow() {
  324. return
  325. }
  326. dsql := ` DELETE FROM wx_user WHERE user_id = ? `
  327. _, err = o.Raw(dsql, userId).Exec()
  328. if err != nil {
  329. return user.UserId, err
  330. }
  331. if user.Mobile == "" && loginType == 1 {
  332. msql := ` UPDATE wx_user SET mobile = ?,bind_account = ? WHERE user_id = ?`
  333. _, err = o.Raw(msql, mobile, mobile, user.UserId).Exec()
  334. wxUserId = user.UserId
  335. }
  336. if user.Email == "" && loginType == 2 {
  337. msql := ` UPDATE wx_user SET email = ?,bind_account = ? WHERE user_id = ?`
  338. _, err = o.Raw(msql, mobile, mobile, user.UserId).Exec()
  339. wxUserId = user.UserId
  340. }
  341. utils.FileLog.Info("用户存在,bind:%s,%d,%s", unionId, wxUserId)
  342. wxUserId = userId
  343. }
  344. }
  345. return
  346. }
  347. func ModifyFirstLogin(userId int) (err error) {
  348. o := orm.NewOrm()
  349. sql := `UPDATE wx_user SET first_login=0 WHERE user_id = ? `
  350. _, err = o.Raw(sql, userId).Exec()
  351. return
  352. }
  353. func GetWxUserItemByEmail(email string) (item *WxUserItem, err error) {
  354. sql := `SELECT * FROM wx_user WHERE email=? `
  355. err = orm.NewOrm().Raw(sql, email).QueryRow(&item)
  356. return
  357. }
  358. func GetWxUserItemByMobile(mobile string) (item *WxUserItem, err error) {
  359. sql := `SELECT * FROM wx_user WHERE mobile=? OR mobile_two=? `
  360. err = orm.NewOrm().Raw(sql, mobile, mobile).QueryRow(&item)
  361. return
  362. }
  363. type PcLoginReq struct {
  364. LoginType int `description:"登录方式:1:手机,2:邮箱"`
  365. Mobile string `description:"手机号"`
  366. Email string `description:"邮箱"`
  367. SmsCode string `description:"短信/邮箱验证码"`
  368. IsFreeLogin bool `description:"是否免登陆,true:免登陆,false:非免登陆"`
  369. }
  370. type BindReq struct {
  371. BindType int `description:"绑定方式:1:手机,2:邮箱"`
  372. Mobile string `description:"手机号"`
  373. Email string `description:"邮箱"`
  374. VerifyCode string `description:"短信/邮箱 验证码"`
  375. }
  376. func ModifyLoginTime(userId int, isFreeLogin bool) (err error) {
  377. o := orm.NewOrm()
  378. sql := `UPDATE wx_user SET is_free_login=?,login_time=NOW() WHERE user_id = ? `
  379. _, err = o.Raw(sql, isFreeLogin, userId).Exec()
  380. return
  381. }
  382. func GetCustomPermission(companyId int) (count int, err error) {
  383. o := orm.NewOrm()
  384. sql := `SELECT COUNT(1) AS count FROM company AS a
  385. INNER JOIN company_product AS b ON a.company_id=b.company_id
  386. WHERE b.company_id=? AND b.status IN('试用','正式')
  387. GROUP BY b.company_id`
  388. err = o.Raw(sql, companyId).QueryRow(&count)
  389. return
  390. }
  391. type CheckLoginResp struct {
  392. IsTips bool `description:"true:需要提示,false:不需要提示"`
  393. IsBind bool `description:"true:需要绑定邮箱或验证码,false:不需要绑定邮箱或验证码"`
  394. }
  395. func GetOpenIdAll() (items []*WxUserItem, err error) {
  396. sql := ` SELECT * FROM wx_user WHERE open_id<>'' AND union_id IS NULL `
  397. o := orm.NewOrm()
  398. _, err = o.Raw(sql).QueryRows(&items)
  399. return
  400. }
  401. func ModifyWxUserUnionId(unionId string, userId int) (err error) {
  402. o := orm.NewOrm()
  403. sql := `UPDATE wx_user SET union_id=?,unionid=? WHERE user_id = ? `
  404. _, err = o.Raw(sql, unionId, unionId, userId).Exec()
  405. return
  406. }
  407. func GetWxUserAll() (items []*WxUserItem, err error) {
  408. sql := ` SELECT a.* FROM wx_user AS a
  409. INNER JOIN company_product AS b ON a.company_id=b.company_id
  410. WHERE b.status IN('正式','试用')
  411. AND b.product_id=1 `
  412. o := orm.NewOrm()
  413. _, err = o.Raw(sql).QueryRows(&items)
  414. return
  415. }
  416. //变更联系人是否已注册状态
  417. func ModifyWxUserRegisterStatus(userId, status, source int, registerTime time.Time) (err error) {
  418. o := orm.NewOrm()
  419. sql := `UPDATE wx_user SET is_register=?,source=?,register_time=? WHERE user_id = ? `
  420. _, err = o.Raw(sql, status, source, registerTime, userId).Exec()
  421. return
  422. }