weixin.js 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. // const backUrl = encodeURI(`${this.app.config.baseUrl}${this.config.authUrl}/`);
  49. const to_uri = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${wxapi.appid}&response_type=code&scope=snsapi_base&redirect_uri=${backUrl}&state=${state}&connect_redirect=1#wechat_redirect`;
  50. console.log('url-->' + to_uri);
  51. this.ctx.redirect(to_uri);
  52. }
  53. // GET 认证回调
  54. async authBack({ code, state }) {
  55. // const { code, state, type, redirecturi } = this.ctx.query;
  56. console.log(this.ctx.query);
  57. this.ctx.logger.debug(`[auth-back] code - ${code}, state - ${state}`);
  58. assert(code, 'code不能为空');
  59. assert(state, 'state不能为空');
  60. console.log('code-->' + code);
  61. const { weixin } = this.ctx.service;
  62. let openid;
  63. try {
  64. ({ openid } = await weixin.fetch(code));
  65. } catch (err) {
  66. await this.ctx.render('error.njk', { title: err.message, message: err.details });
  67. return;
  68. }
  69. console.log('openid--->' + openid);
  70. if (openid) {
  71. const key = `visit:auth:state:${state}`;
  72. const val = await this.app.redis.get(key);
  73. const { redirect_uri, type, uid, qrcode } = JSON.parse(val);
  74. console.log('redirect_uri-->' + redirect_uri);
  75. const user = await this.ctx.service.user.findByOpenid(openid);
  76. if (type === '0') {
  77. // 通过openid取得用户信息
  78. if (user) {
  79. const token = await this.ctx.service.login.createJwt(user);
  80. if (user.type === '4') {
  81. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  82. // TODO: 重定性页面
  83. console.log('to_uri000-->' + to_uri);
  84. this.ctx.redirect(to_uri);
  85. } else if (user.type === '1') {
  86. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  87. const to_uri = urljoin(touri, `?token=${token}`);
  88. // TODO: 重定性页面
  89. console.log('to_uri000-->' + to_uri);
  90. this.ctx.redirect(to_uri);
  91. } else if (user.type === '3') {
  92. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  93. const to_uri = urljoin(touri, `?token=${token}`);
  94. // TODO: 重定性页面
  95. console.log('to_uri000-->' + to_uri);
  96. this.ctx.redirect(to_uri);
  97. }
  98. } else {
  99. console.log('rrr0000--->' + redirect_uri);
  100. const resunionid = await weixin.fetchUnionID(openid);
  101. const touri = `${this.app.config.baseUrl}/student/bind`;
  102. const to_uri = urljoin(touri, `?openid=${openid}&unionid=${resunionid.unionid}`);
  103. // TODO: 重定性页面
  104. this.ctx.redirect(to_uri);
  105. }
  106. } else if (type === '1') {
  107. const to_uri = urljoin(redirect_uri, `?openid=${openid}&uid=${uid}&type=${type}&qrcode=${qrcode}`);
  108. // TODO: 重定性页面
  109. console.log('1111---?' + to_uri);
  110. this.ctx.redirect(to_uri);
  111. } else if (type === '2') {
  112. const to_uri = urljoin(redirect_uri, `?openid=${openid}&type=${type}&qrcode=${qrcode}`);
  113. // TODO: 重定性页面
  114. console.log('22222---?' + to_uri);
  115. this.ctx.redirect(to_uri);
  116. }
  117. }
  118. }
  119. // GET 用户授权内部测试接口
  120. async authTest() {
  121. const { redirect_uri, type, uid, qrcode, openid } = this.ctx.query;
  122. // const openid = stringRandom();
  123. this.ctx.logger.debug(`[auth-test] reditect_uri - ${redirect_uri}, openid - ${openid}`);
  124. assert(redirect_uri, '回调地址不能为空');
  125. assert(openid, 'openid不能为空');
  126. if (type === '0') {
  127. // 通过openid取得用户信息
  128. const user = await this.ctx.service.user.findByOpenid(openid);
  129. if (user) {
  130. const token = await this.ctx.service.login.createJwt(user);
  131. if (user.type === '4') {
  132. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  133. // TODO: 重定性页面
  134. console.log('to_uri000-->' + to_uri);
  135. this.ctx.redirect(to_uri);
  136. } else if (user.type === '1') {
  137. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  138. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  139. // TODO: 重定性页面
  140. console.log('to_uri000-->' + to_uri);
  141. this.ctx.redirect(to_uri);
  142. } else if (user.type === '3') {
  143. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  144. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  145. // TODO: 重定性页面
  146. console.log('to_uri000-->' + to_uri);
  147. this.ctx.redirect(to_uri);
  148. }
  149. } else {
  150. console.log('rrr--->' + redirect_uri);
  151. const to_uri = urljoin(redirect_uri, `?openid=${openid}`);
  152. // TODO: 重定性页面
  153. this.ctx.redirect(to_uri);
  154. }
  155. } else if (type === '1') {
  156. const to_uri = urljoin(redirect_uri, `?openid=${openid}&uid=${uid}&type=${type}&qrcode=${qrcode}`);
  157. // TODO: 重定性页面
  158. this.ctx.redirect(to_uri);
  159. } else if (type === '2') {
  160. const to_uri = urljoin(redirect_uri, `?openid=${openid}&type=${type}&qrcode=${qrcode}`);
  161. // TODO: 重定性页面
  162. this.ctx.redirect(to_uri);
  163. }
  164. }
  165. }
  166. module.exports = WeixinController;