user.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. package services
  2. import (
  3. "errors"
  4. "fmt"
  5. "hongze/hongze_api/models"
  6. "hongze/hongze_api/utils"
  7. "strconv"
  8. "time"
  9. )
  10. var ERR_NO_USER_RECORD = errors.New("用户关系没有入库")
  11. var ERR_USER_NOT_BIND = errors.New("用户没有绑定")
  12. //通过openid获取用户信息
  13. func GetWxUserItemByOpenId(openid string) (item *models.WxUserItem, err error) {
  14. //通过openid获取用户关联信息
  15. userRecord, userRecordErr := models.GetUserRecordByOpenId(openid)
  16. if userRecordErr != nil {
  17. if userRecordErr.Error() == utils.ErrNoRow() {
  18. err = ERR_NO_USER_RECORD
  19. return
  20. } else {
  21. err = userRecordErr
  22. return
  23. }
  24. }
  25. //该openid在系统中没有关联关系
  26. if userRecord == nil {
  27. err = ERR_NO_USER_RECORD
  28. return
  29. }
  30. //该openid没有绑定用户
  31. if userRecord.UserId <= 0 {
  32. err = ERR_USER_NOT_BIND
  33. item = new(models.WxUserItem)
  34. //格式化返回用户数据
  35. formatWxUserAndUserRecord(item, userRecord)
  36. return
  37. }
  38. //获取用户信息
  39. item, wxUserErr := models.GetWxUserItemByUserId(userRecord.UserId)
  40. if wxUserErr != nil {
  41. err = wxUserErr
  42. //如果是找不到数据,那么可能是该用户被删除了,但是user_record没有删除对应的关系
  43. if wxUserErr.Error() == utils.ErrNoRow() {
  44. //用户被删除了,但是user_record没有删除对应的关系,那么去解除绑定
  45. userUnbindErr := models.UnBindUserRecordByOpenid(openid)
  46. if userUnbindErr != nil {
  47. err = userUnbindErr
  48. return
  49. }
  50. //返回状态为 用户未绑定 逻辑代码
  51. err = ERR_USER_NOT_BIND
  52. item = new(models.WxUserItem)
  53. //格式化返回用户数据
  54. formatWxUserAndUserRecord(item, userRecord)
  55. return
  56. }
  57. return
  58. }
  59. //格式化返回用户数据
  60. formatWxUserAndUserRecord(item, userRecord)
  61. return
  62. }
  63. //根据用户id和平台id获取用户信息
  64. func GetWxUserItemByUserId(userId, platform int) (wxUserItem *models.WxUserItem, err error) {
  65. //获取用户信息
  66. wxUserItem, wxUserErr := models.GetWxUserItemByUserId(userId)
  67. if wxUserErr != nil {
  68. err = wxUserErr
  69. return
  70. }
  71. //格式化返回用户数据
  72. formatWxUser(wxUserItem, platform)
  73. return
  74. }
  75. //根据用户邮箱和平台id获取用户信息
  76. func GetWxUserItemByEmail(email string, platform int) (wxUserItem *models.WxUserItem, err error) {
  77. //获取用户信息
  78. wxUserItem, wxUserErr := models.GetWxUserItemByEmail(email)
  79. if wxUserErr != nil {
  80. err = wxUserErr
  81. return
  82. }
  83. //格式化返回用户数据
  84. formatWxUser(wxUserItem, platform)
  85. return
  86. }
  87. //根据用户手机号和平台id获取用户信息
  88. func GetWxUserItemByMobile(mobile string, platform int) (wxUserItem *models.WxUserItem, err error) {
  89. //获取用户信息
  90. wxUserItem, wxUserErr := models.GetWxUserItemByMobile(mobile)
  91. if wxUserErr != nil {
  92. err = wxUserErr
  93. return
  94. }
  95. //格式化返回用户数据
  96. formatWxUser(wxUserItem, platform)
  97. return
  98. }
  99. //根据用户unionid和平台id获取用户信息
  100. func GetWxUserItemByUnionId(unionId string, platform int) (wxUserItem *models.WxUserItem, err error) {
  101. //获取用户信息
  102. wxUserItem, wxUserErr := models.GetWxUserItemByUnionid(unionId)
  103. if wxUserErr != nil {
  104. err = wxUserErr
  105. return
  106. }
  107. //格式化返回用户数据
  108. formatWxUser(wxUserItem, platform)
  109. return
  110. }
  111. //通过用户 关系表记录 和 用户记录 格式化返回 用户数据
  112. func formatWxUserAndUserRecord(wxUser *models.WxUserItem, userRecord *models.UserRecord) {
  113. wxUser.OpenId = userRecord.OpenId
  114. wxUser.UnionId = userRecord.UnionId
  115. wxUser.NickName = userRecord.NickName
  116. //wxUser.RealName = userRecord.RealName
  117. //wxUser.BindAccount = userRecord.BindAccount
  118. wxUser.Headimgurl = userRecord.Headimgurl
  119. }
  120. //通过用户 用户记录 和 来源平台 格式化返回 用户数据
  121. func formatWxUser(wxUser *models.WxUserItem, platform int) {
  122. //根据用户id和平台id获取用户关系
  123. userRecord, userRecordErr := models.GetUserRecordByUserId(wxUser.UserId, platform)
  124. if userRecordErr != nil {
  125. if userRecordErr.Error() != utils.ErrNoRow() {
  126. return
  127. }
  128. if userRecordErr.Error() == utils.ErrNoRow() {
  129. return
  130. }
  131. }
  132. //该openid在系统中没有关联关系
  133. if userRecord == nil {
  134. return
  135. }
  136. wxUser.OpenId = userRecord.OpenId
  137. wxUser.UnionId = userRecord.UnionId
  138. wxUser.NickName = userRecord.NickName
  139. //wxUser.RealName = userRecord.RealName
  140. //wxUser.BindAccount = userRecord.BindAccount
  141. wxUser.Headimgurl = userRecord.Headimgurl
  142. return
  143. }
  144. //用户绑定
  145. func BindWxUser(openid, mobile, email string, registerPlatform int) (wxUser *models.WxUserItem, err error) {
  146. source := 1 //绑定来源,1:微信端,2:pc网页端,3:查研观向小程序,4:每日咨询
  147. if mobile == "" && email == "" {
  148. err = errors.New("手机号或邮箱必填一个")
  149. return
  150. }
  151. var bindAccount string
  152. //根据手机号获取用户信息
  153. if mobile != "" {
  154. tmpWxUser, wxUserErr := models.GetWxUserItemByMobile(mobile)
  155. if wxUserErr != nil && wxUserErr.Error() != utils.ErrNoRow() {
  156. err = wxUserErr
  157. return
  158. }
  159. wxUser = tmpWxUser
  160. bindAccount = mobile
  161. }
  162. //根据邮箱获取用户信息
  163. if wxUser == nil && email != "" {
  164. tmpWxUser, wxUserErr := models.GetWxUserItemByEmail(email)
  165. if wxUserErr != nil && wxUserErr.Error() != utils.ErrNoRow() {
  166. err = wxUserErr
  167. return
  168. }
  169. wxUser = tmpWxUser
  170. bindAccount = email
  171. }
  172. //查询openid的第三方(微信)信息
  173. userRecord, err := models.GetUserRecordByOpenId(openid)
  174. if err != nil {
  175. return
  176. }
  177. var userId int
  178. //如果查询出来的用户是nil,那么需要新增用户
  179. if wxUser == nil {
  180. user := &models.WxUser{
  181. CompanyId: 1,
  182. CreatedTime: time.Now(),
  183. FirstLogin: 1,
  184. Enabled: 1,
  185. RegisterPlatform: registerPlatform, //账号注册来源,注册平台,1:微信端,2:PC网页端
  186. RegisterTime: time.Now(),
  187. Mobile: mobile,
  188. Email: email,
  189. IsRegister: 1,
  190. Source: source,
  191. }
  192. tmpUserId, addUserErr := models.AddWxUser(user)
  193. if err != nil {
  194. err = addUserErr
  195. return
  196. }
  197. user.UserId = int(tmpUserId)
  198. userId = int(tmpUserId)
  199. wxUser, err = models.GetWxUserItemByUserId(userId)
  200. } else {
  201. userId = wxUser.UserId
  202. }
  203. //如果存在该手机号/邮箱,那么需要校验
  204. if userRecord.UserId > 0 && userRecord.UserId != userId {
  205. err = errors.New(fmt.Sprint("用户已绑定其他账户,已绑定的用户编号:", userRecord.UserId, ",不允许重复绑定"))
  206. return
  207. }
  208. if userRecord.UserId == 0 {
  209. err = models.BindUserRecordByOpenid(userId, openid, bindAccount)
  210. if err != nil {
  211. return
  212. }
  213. userRecord.UserId = userId
  214. }
  215. //如果当前该第三方用户信息的昵称为空串的话,那么需要去查询该用户的第一个绑定信息的数据作为来源做数据修复
  216. if userRecord.NickName == "" {
  217. oldUserRecord, err := models.GetUserThirdRecordByUserId(userId)
  218. if err == nil && oldUserRecord != nil {
  219. //如果该用户绑定的第一条数据的头像信息不为空串,那么就去做新数据的修复
  220. if oldUserRecord.NickName != "" {
  221. _ = models.ModifyUserRecordInfo(userRecord.OpenId, oldUserRecord.NickName, oldUserRecord.Headimgurl, oldUserRecord.City, oldUserRecord.Province, oldUserRecord.Country, oldUserRecord.Sex, userId)
  222. }
  223. }
  224. }
  225. //如果该用户 绑定注册状态 字段处于 未注册 的情况下,那么去修改该数据
  226. if wxUser.IsRegister == 0 {
  227. err = models.ModifyWxUserRegisterStatus(userId, 1, source, time.Now())
  228. if err != nil {
  229. return
  230. }
  231. }
  232. //格式化用户数据
  233. formatWxUserAndUserRecord(wxUser, userRecord)
  234. return
  235. }
  236. //微信登录
  237. func WxLogin(wxPlatform int, code string, wxAccessToken *WxAccessToken, wxUserInfo *WxUserInfo) (token string, userId, firstLogin, permission int, err error) {
  238. openId := wxAccessToken.Openid
  239. unionId := wxAccessToken.Unionid
  240. if unionId == "" {
  241. unionId = wxUserInfo.Unionid
  242. }
  243. //firstLogin==1,强制绑定手机号或者邮箱
  244. firstLogin = 1
  245. QUERY_WX_USER:
  246. wxUser, wxUserErr := GetWxUserItemByOpenId(openId)
  247. if wxUserErr == ERR_NO_USER_RECORD { //没有用户openid记录
  248. _, recordErr := AddUserRecord(openId, unionId, wxUserInfo.Nickname, "", wxUserInfo.Province, wxUserInfo.City, wxUserInfo.Country, wxUserInfo.Headimgurl, "", wxPlatform, wxUserInfo.Sex, 0)
  249. //如果插入失败,那么直接将错误信息返回
  250. if recordErr != nil {
  251. err = recordErr
  252. return
  253. }
  254. //插入成功后,需要重新查询该用户,并进入下面的逻辑
  255. goto QUERY_WX_USER
  256. } else if wxUserErr == ERR_USER_NOT_BIND {
  257. //没有用户信息
  258. //wxUser.FirstLogin = 1
  259. } else if wxUserErr != nil {
  260. err = wxUserErr
  261. return
  262. }
  263. //如果已经登录注册绑定的情况下
  264. if wxUser != nil && wxUserErr == nil {
  265. //获取用户权限
  266. firstLogin = wxUser.FirstLogin
  267. userId = wxUser.UserId
  268. permission, permissionErr := CheckUserPermission(userId)
  269. if permissionErr != nil {
  270. //记录日志
  271. utils.FileLog.Info("userId:%s,err:%s", strconv.Itoa(userId), err)
  272. }
  273. if wxUserInfo != nil {
  274. go models.ModifyUserRecordInfo(openId, wxUserInfo.Nickname, wxUserInfo.Headimgurl, wxUserInfo.City, wxUserInfo.Province, wxUserInfo.Country, wxUserInfo.Sex, userId)
  275. }
  276. {
  277. codeLog := new(models.WxUserCode)
  278. codeLog.WxCode = code
  279. codeLog.UserId = userId
  280. codeLog.Code = 0
  281. codeLog.FirstLogin = firstLogin
  282. codeLog.Authorization = token
  283. codeLog.UserPermission = permission
  284. codeLog.CreateTime = time.Now()
  285. models.AddWxUserCode(codeLog)
  286. }
  287. if wxUser.Mobile == "" && wxUser.Email == "" {
  288. firstLogin = 1
  289. } else {
  290. firstLogin = 0
  291. }
  292. }
  293. //获取登录token
  294. tokenItem, tokenErr := models.GetTokenByOpenId(openId)
  295. if tokenErr != nil && tokenErr.Error() != utils.ErrNoRow() {
  296. err = errors.New("登录失败,获取token失败:" + tokenErr.Error())
  297. return
  298. }
  299. if tokenItem == nil || (tokenErr != nil && tokenErr.Error() == utils.ErrNoRow()) {
  300. timeUnix := time.Now().Unix()
  301. timeUnixStr := strconv.FormatInt(timeUnix, 10)
  302. token = utils.MD5(openId) + utils.MD5(timeUnixStr)
  303. //新增session
  304. {
  305. session := new(models.Session)
  306. session.OpenId = openId
  307. session.UserId = userId
  308. session.CreatedTime = time.Now()
  309. session.LastUpdatedTime = time.Now()
  310. session.ExpireTime = time.Now().AddDate(0, 3, 0)
  311. session.AccessToken = token
  312. sessionErr := models.AddSession(session)
  313. if err != nil {
  314. err = errors.New("登录失败,新增用户session信息失败:" + sessionErr.Error())
  315. return
  316. }
  317. }
  318. } else {
  319. token = tokenItem.AccessToken
  320. //如果联系人编号不为空,且联系人编号与session里面的联系人编号不一致的时候,需要做session变更
  321. if userId > 0 && tokenItem.UserId != userId {
  322. _ = models.UpdateSession(tokenItem.SessionId, userId, time.Now().AddDate(0, 1, 0))
  323. }
  324. }
  325. //新增登录日志
  326. {
  327. loginLog := new(models.WxUserLog)
  328. loginLog.UserId = userId
  329. loginLog.OpenId = openId
  330. loginLog.UnionId = unionId
  331. loginLog.CreateTime = time.Now()
  332. loginLog.Handle = "wechat_login"
  333. loginLog.Remark = token
  334. go models.AddWxUserLog(loginLog)
  335. }
  336. return
  337. }
  338. //添加第三方用户(微信)记录
  339. func AddUserRecord(openId, unionId, nickName, realName, province, city, country, headimgurl, sessionKey string, platform, sex, subscribe int) (userRecord *models.UserRecord, err error) {
  340. find, err := models.GetUserRecordByOpenId(openId)
  341. if err != nil && err.Error() != utils.ErrNoRow() {
  342. return
  343. }
  344. if find != nil {
  345. userRecord = find
  346. return
  347. }
  348. userRecord = &models.UserRecord{
  349. OpenId: openId, //用户open_id
  350. UnionId: unionId, //用户union_id
  351. Subscribe: subscribe,
  352. NickName: nickName, //用户昵称,最大长度:32
  353. RealName: realName, //用户实际名称,最大长度:32
  354. Sex: sex, //普通用户性别,1为男性,2为女性
  355. Province: province, //普通用户个人资料填写的省份,最大长度:30
  356. City: city, //普通用户个人资料填写的城市,最大长度:30
  357. Country: country, //国家,如中国为CN,最大长度:30
  358. Headimgurl: headimgurl, //用户第三方(微信)头像,最大长度:512
  359. CreateTime: time.Now(), //创建时间,关系添加时间、用户授权时间
  360. CreatePlatform: platform, //注册平台,1:日度点评公众号,2:管理后台,3:pc端网站,4:查研观向小程序;默认:1
  361. SessionKey: sessionKey, //微信小程序会话密钥,最大长度:255
  362. }
  363. recordId, err := models.AddUserRecord(userRecord)
  364. if err != nil {
  365. return
  366. }
  367. userRecord.UserRecordId = int(recordId)
  368. return
  369. }