weixin.js 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 student = await this.ctx.service.student.fetch(user.uid);
  80. const newdata = { planid: student.planid, ...JSON.parse(JSON.stringify(user)) };
  81. const token_ = await this.ctx.service.login.createJwt(newdata);
  82. const to_uri = urljoin(redirect_uri, `?token=${token_}`);
  83. // TODO: 重定性页面
  84. console.log('to_uri000-->' + to_uri);
  85. this.ctx.redirect(to_uri);
  86. } else if (user.type === '1') {
  87. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  88. const to_uri = urljoin(touri, `?token=${token}`);
  89. // TODO: 重定性页面
  90. console.log('to_uri000-->' + to_uri);
  91. this.ctx.redirect(to_uri);
  92. } else if (user.type === '3') {
  93. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  94. const to_uri = urljoin(touri, `?token=${token}`);
  95. // TODO: 重定性页面
  96. console.log('to_uri000-->' + to_uri);
  97. this.ctx.redirect(to_uri);
  98. }
  99. } else {
  100. console.log('rrr0000--->' + redirect_uri);
  101. const resunionid = await weixin.fetchUnionID(openid);
  102. const touri = `${this.app.config.baseUrl}/student/bind`;
  103. const to_uri = urljoin(touri, `?openid=${openid}&unionid=${resunionid.unionid}`);
  104. // TODO: 重定性页面
  105. this.ctx.redirect(to_uri);
  106. }
  107. } else if (type === '1') {
  108. const to_uri = urljoin(redirect_uri, `?openid=${openid}&uid=${uid}&type=${type}&qrcode=${qrcode}`);
  109. // TODO: 重定性页面
  110. console.log('1111---?' + to_uri);
  111. this.ctx.redirect(to_uri);
  112. } else if (type === '2') {
  113. const to_uri = urljoin(redirect_uri, `?openid=${openid}&type=${type}&qrcode=${qrcode}`);
  114. // TODO: 重定性页面
  115. console.log('22222---?' + to_uri);
  116. this.ctx.redirect(to_uri);
  117. }
  118. }
  119. }
  120. // GET 用户授权内部测试接口
  121. async authTest() {
  122. const { redirect_uri, type, uid, qrcode, openid } = this.ctx.query;
  123. // const openid = stringRandom();
  124. this.ctx.logger.debug(`[auth-test] reditect_uri - ${redirect_uri}, openid - ${openid}`);
  125. assert(redirect_uri, '回调地址不能为空');
  126. assert(openid, 'openid不能为空');
  127. if (type === '0') {
  128. // 通过openid取得用户信息
  129. const user = await this.ctx.service.user.findByOpenid(openid);
  130. if (user) {
  131. const token = await this.ctx.service.login.createJwt(user);
  132. if (user.type === '4') {
  133. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  134. // TODO: 重定性页面
  135. console.log('to_uri000-->' + to_uri);
  136. this.ctx.redirect(to_uri);
  137. } else if (user.type === '1') {
  138. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  139. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  140. // TODO: 重定性页面
  141. console.log('to_uri000-->' + to_uri);
  142. this.ctx.redirect(to_uri);
  143. } else if (user.type === '3') {
  144. const touri = `${this.app.config.baseUrl}/mobiledirtea`;
  145. const to_uri = urljoin(redirect_uri, `?token=${token}`);
  146. // TODO: 重定性页面
  147. console.log('to_uri000-->' + to_uri);
  148. this.ctx.redirect(to_uri);
  149. }
  150. } else {
  151. console.log('rrr--->' + redirect_uri);
  152. const to_uri = urljoin(redirect_uri, `?openid=${openid}`);
  153. // TODO: 重定性页面
  154. this.ctx.redirect(to_uri);
  155. }
  156. } else if (type === '1') {
  157. const to_uri = urljoin(redirect_uri, `?openid=${openid}&uid=${uid}&type=${type}&qrcode=${qrcode}`);
  158. // TODO: 重定性页面
  159. this.ctx.redirect(to_uri);
  160. } else if (type === '2') {
  161. const to_uri = urljoin(redirect_uri, `?openid=${openid}&type=${type}&qrcode=${qrcode}`);
  162. // TODO: 重定性页面
  163. this.ctx.redirect(to_uri);
  164. }
  165. }
  166. }
  167. module.exports = WeixinController;