wx_user.go 17 KB

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