weixin.js 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. 'use strict';
  2. const assert = require('assert');
  3. const _ = require('lodash');
  4. const uuid = require('uuid');
  5. const urljoin = require('url-join');
  6. const stringRandom = require('string-random');
  7. const Controller = require('egg').Controller;
  8. /**
  9. * 微信认证,获得openid和用户信息,生成微信Jwt
  10. */
  11. class WeixinController extends Controller {
  12. /**
  13. * 认证流程
  14. * 1. 缓存原始请求地址,生成state和认证回调地址
  15. * 2. 通过wxapi认证,获得认证code
  16. * 3. 通过code获得openid,通过openid,查询绑定用户,创建jwt
  17. * 4. jwt写入redis,返回认证code
  18. * 5. 通过code获取jwt
  19. */
  20. // GET 请求认证
  21. // response_type:
  22. // code - url带上code参数重定向到原始地址
  23. // store - 默认,认证结果写入sessionStore,然后重定向回请求页面(要求请求页面和认证服务在同一域名下)
  24. // token - url带上token参数重定向到原始地址
  25. async auth() {
  26. const { redirect_uri, code, test, type, response_type = 'store', uid, qrcode } = this.ctx.query;
  27. if (test) {
  28. return await this.authTest();
  29. }
  30. if (code) {
  31. return await this.authBack(this.ctx.query);
  32. }
  33. this.ctx.logger.debug(`[auth] reditect_uri - ${redirect_uri}`);
  34. // assert(redirect_uri, '回调地址不能为空');
  35. // TODO: 保存原始请求地址
  36. // const { config } = this.app;
  37. // console.log('ctx.host: ', this.ctx.host);
  38. // console.log('config.hostHeaders: ', config.hostHeaders);
  39. // TODO: 保存原始请求地址
  40. const state = uuid();
  41. const key = `visit:auth:state:${state}`;
  42. const val = JSON.stringify({ redirect_uri, type, uid, qrcode });
  43. await this.app.redis.set(key, val, 'EX', 600);
  44. // TODO: 生成回调地址
  45. const { wxapi, authUrl = this.ctx.path } = this.app.config;
  46. const backUrl = encodeURI(`${this.app.config.baseUrl}${this.config.authUrl}?state=${state}`);
  47. const to_uri = `${wxapi.baseUrl}/api/auth?appid=${wxapi.appid}&response_type=code&redirect_uri=${backUrl}&connect_redirect=1#wechat`;
  48. console.log('url-->' + to_uri);
  49. this.ctx.redirect(to_uri);
  50. }
  51. // GET 认证回调
  52. async authBack({ code, state }) {
  53. // const { code, state, type, redirecturi } = this.ctx.query;
  54. console.log(this.ctx.query);
  55. this.ctx.logger.debug(`[auth-back] code - ${code}, state - ${state}`);
  56. assert(code, 'code不能为空');
  57. assert(state, 'state不能为空');
  58. console.log('code-->' + code);
  59. const { weixin } = this.ctx.service;
  60. let openid;
  61. try {
  62. ({ openid } = await weixin.fetch(code));
  63. } catch (err) {
  64. await this.ctx.render('error.njk', { title: err.message, message: err.details });
  65. return;
  66. }
  67. console.log('openid--->' + openid);
  68. if (openid) {
  69. const key = `visit:auth:state:${state}`;
  70. const val = await this.app.redis.get(key);
  71. const { redirect_uri, type, uid, qrcode } = JSON.parse(val);
  72. console.log('redirect_uri-->' + redirect_uri);
  73. const user = await this.ctx.service.user.findByOpenid(openid);
  74. if (type === '0') {
  75. // 通过openid取得用户信息
  76. if (user) {
  77. const token = await this.ctx.service.login.createJwt(user);
  78. if (user.type === '4') {
  79. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  80. // TODO: 重定性页面
  81. console.log('to_uri000-->' + to_uri);
  82. this.ctx.redirect(to_uri);
  83. } else if (user.type === '1') {
  84. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  85. const to_uri = urljoin(touri, `?token=${token}`);
  86. // TODO: 重定性页面
  87. console.log('to_uri000-->' + to_uri);
  88. this.ctx.redirect(to_uri);
  89. } else if (user.type === '3') {
  90. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  91. const to_uri = urljoin(touri, `?token=${token}`);
  92. // TODO: 重定性页面
  93. console.log('to_uri000-->' + to_uri);
  94. this.ctx.redirect(to_uri);
  95. }
  96. } else {
  97. console.log('rrr0000--->' + redirect_uri);
  98. const resunionid = await weixin.fetchUnionID(openid);
  99. const touri = `${this.app.config.baseUrl}/student/bind`;
  100. const to_uri = urljoin(touri, `?openid=${openid}&unionid=${resunionid.unionid}`);
  101. // TODO: 重定性页面
  102. this.ctx.redirect(to_uri);
  103. }
  104. } else if (type === '1') {
  105. const to_uri = urljoin(redirect_uri, `?openid=${openid}&uid=${uid}&type=${type}&qrcode=${qrcode}`);
  106. // TODO: 重定性页面
  107. console.log('1111---?' + to_uri);
  108. this.ctx.redirect(to_uri);
  109. } else if (type === '2') {
  110. const to_uri = urljoin(redirect_uri, `?openid=${openid}&type=${type}&qrcode=${qrcode}`);
  111. // TODO: 重定性页面
  112. console.log('22222---?' + to_uri);
  113. this.ctx.redirect(to_uri);
  114. }
  115. }
  116. }
  117. // GET 用户授权内部测试接口
  118. async authTest() {
  119. const { redirect_uri, type, uid, qrcode, openid } = this.ctx.query;
  120. // const openid = stringRandom();
  121. this.ctx.logger.debug(`[auth-test] reditect_uri - ${redirect_uri}, openid - ${openid}`);
  122. assert(redirect_uri, '回调地址不能为空');
  123. assert(openid, 'openid不能为空');
  124. if (type === '0') {
  125. // 通过openid取得用户信息
  126. const user = await this.ctx.service.user.findByOpenid(openid);
  127. if (user) {
  128. const token = await this.ctx.service.login.createJwt(user);
  129. if (user.type === '4') {
  130. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  131. // TODO: 重定性页面
  132. console.log('to_uri000-->' + to_uri);
  133. this.ctx.redirect(to_uri);
  134. } else if (user.type === '1') {
  135. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  136. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  137. // TODO: 重定性页面
  138. console.log('to_uri000-->' + to_uri);
  139. this.ctx.redirect(to_uri);
  140. } else if (user.type === '3') {
  141. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  142. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  143. // TODO: 重定性页面
  144. console.log('to_uri000-->' + to_uri);
  145. this.ctx.redirect(to_uri);
  146. }
  147. } else {
  148. console.log('rrr--->' + redirect_uri);
  149. const to_uri = urljoin(redirect_uri, `?openid=${openid}`);
  150. // TODO: 重定性页面
  151. this.ctx.redirect(to_uri);
  152. }
  153. } else if (type === '1') {
  154. const to_uri = urljoin(redirect_uri, `?openid=${openid}&uid=${uid}&type=${type}&qrcode=${qrcode}`);
  155. // TODO: 重定性页面
  156. this.ctx.redirect(to_uri);
  157. } else if (type === '2') {
  158. const to_uri = urljoin(redirect_uri, `?openid=${openid}&type=${type}&qrcode=${qrcode}`);
  159. // TODO: 重定性页面
  160. this.ctx.redirect(to_uri);
  161. }
  162. }
  163. }
  164. module.exports = WeixinController;