wechat.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /**
  2. * Wechat v1.1.0
  3. * @Class Wechat
  4. * @description shopro-wechat 1.1.0 wehcat第三方登录组件
  5. * @Author lidongtony
  6. * @Date 2020-05-20
  7. * @Email lidongtony@qq.com
  8. */
  9. import api from "@/shopro/request/index";
  10. import $platform from "@/shopro/platform";
  11. import store from "@/shopro/store";
  12. import {
  13. API_URL
  14. } from "@/env";
  15. export default {
  16. eventMap(event) {
  17. let map = "";
  18. switch (event) {
  19. case "login":
  20. map = "登录中...";
  21. break;
  22. case "refresh":
  23. map = "更新中...";
  24. break;
  25. case "bind":
  26. map = "绑定中...";
  27. break;
  28. }
  29. return map;
  30. },
  31. async login() {
  32. let token = "";
  33. // #ifdef MP-WEIXIN
  34. token = await this.wxMiniProgramOauth("login");
  35. return token;
  36. // #endif
  37. // #ifdef H5
  38. this.wxOfficialAccountOauth("login");
  39. // #endif
  40. // #ifdef APP-PLUS
  41. token = await this.wxOpenPlatformOauth("login");
  42. return token;
  43. // #endif
  44. },
  45. async refresh() {
  46. let token = "";
  47. // #ifdef MP-WEIXIN
  48. token = await this.wxMiniProgramOauth("refresh");
  49. return token;
  50. // #endif
  51. // #ifdef H5
  52. this.wxOfficialAccountOauth("refresh");
  53. // #endif
  54. // #ifdef APP-PLUS
  55. token = await this.wxOpenPlatformOauth("refresh");
  56. return token;
  57. // #endif
  58. },
  59. async bind() {
  60. let token = "";
  61. // #ifdef MP-WEIXIN
  62. token = await this.wxMiniProgramOauth("bind");
  63. return token;
  64. // #endif
  65. // #ifdef H5
  66. this.wxOfficialAccountOauth("bind");
  67. // #endif
  68. // #ifdef APP-PLUS
  69. token = await this.wxOpenPlatformOauth("bind");
  70. return token;
  71. // #endif
  72. },
  73. // #ifdef H5
  74. // 微信公众号网页登录&刷新头像昵称&绑定
  75. wxOfficialAccountOauth(event = "login") {
  76. if ($platform.get() !== "wxOfficialAccount") {
  77. uni.showToast({
  78. title: "请在微信浏览器中打开",
  79. icon: "none"
  80. });
  81. throw false;
  82. }
  83. let host = $platform.host();
  84. let payloadObject = {
  85. host: host,
  86. event,
  87. token: (event !== "login" && store.getters.isLogin) ? uni.getStorageSync("token") : ""
  88. };
  89. let payload = encodeURIComponent(JSON.stringify(payloadObject));
  90. let redirect_uri = encodeURIComponent(`${API_URL}user/wxOfficialAccountOauth?payload=${payload}`);
  91. let oauthUrl = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + store.getters.initWechat.appid +
  92. `&redirect_uri=${redirect_uri}&response_type=code&scope=snsapi_userinfo&state=1`;
  93. uni.setStorageSync("lastPage", window.location.href);
  94. window.location = oauthUrl;
  95. },
  96. // 微信公众号网页静默登录:临时登录获取OpenId 不入库不绑定用户
  97. wxOfficialAccountBaseLogin() {
  98. let state = encodeURIComponent(window.location.href);
  99. window.location = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + store.getters.initWechat.appid +
  100. `&redirect_uri=${API_URL}user/wxOfficialAccountBaseLogin&response_type=code&scope=snsapi_base&state=${state}`;
  101. throw "stop";
  102. },
  103. // #endif
  104. // #ifdef APP-PLUS
  105. // 微信开放平台登录
  106. wxOpenPlatformOauth(event = "login") {
  107. let that = this;
  108. return new Promise((resolve, reject) => {
  109. uni.login({
  110. provider: "weixin",
  111. success: function(loginRes) {
  112. if (loginRes.errMsg === "login:ok") {
  113. let authResult = loginRes.authResult;
  114. api("user.wxOpenPlatformOauth", {
  115. authResult,
  116. event
  117. }, that.eventMap(event)).then(res => {
  118. if (res.code === 1) {
  119. resolve(res.data.token);
  120. } else {
  121. resolve(false);
  122. }
  123. });
  124. }
  125. },
  126. fail: function(res) {
  127. uni.showToast({
  128. title: "登录失败,请稍后再试"
  129. });
  130. resolve(false);
  131. api("common.debug", {
  132. info: res
  133. });
  134. },
  135. complete: function(res) {}
  136. });
  137. });
  138. },
  139. // #endif
  140. // #ifdef MP-WEIXIN
  141. // 微信小程序静默登录
  142. async getWxMiniProgramSessionKey(autoLogin = true) {
  143. let sessionStatus = false;
  144. let session_key = "";
  145. return new Promise((resolve, reject) => {
  146. uni.checkSession({
  147. success(res) {
  148. if (res.errMsg === "checkSession:ok") sessionStatus = true;
  149. },
  150. complete() {
  151. if (uni.getStorageSync("session_key") && sessionStatus && !autoLogin) {
  152. resolve(uni.getStorageSync("session_key"));
  153. } else {
  154. uni.login({
  155. success: function(info) {
  156. let code = info.code;
  157. api("user.getWxMiniProgramSessionKey", {
  158. code: code,
  159. autoLogin: autoLogin
  160. }).then(res => {
  161. if (res.code === 1) {
  162. uni.setStorageSync("session_key", res
  163. .data.session_key);
  164. if (autoLogin) {
  165. if (res.data.token) {
  166. resolve(res.data.token);
  167. } else {
  168. resolve(false);
  169. }
  170. }
  171. resolve(res.data.session_key);
  172. } else {
  173. reject(res.msg);
  174. }
  175. });
  176. }
  177. });
  178. }
  179. }
  180. });
  181. });
  182. },
  183. // 微信小程序获取用户信息登录
  184. wxMiniProgramOauth(event = "login") {
  185. let that = this;
  186. let session_key = uni.getStorageSync("session_key");
  187. uni.showLoading({
  188. title: that.eventMap(event)
  189. });
  190. return new Promise((resolve, reject) => {
  191. uni.getUserProfile({ // 必须手动确认触发
  192. desc: "完善会员资料", // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
  193. success: res => {
  194. if (res.errMsg === "getUserProfile:ok") {
  195. api("user.wxMiniProgramOauth", {
  196. event,
  197. session_key,
  198. encryptedData: res.encryptedData,
  199. iv: res.iv,
  200. signature: res.signature,
  201. }).then(res => {
  202. console.log(res)
  203. if (res.code === 1) {
  204. resolve(res.data.token);
  205. } else {
  206. uni.removeStorageSync("session_key");
  207. that.getWxMiniProgramSessionKey(false);
  208. resolve(false);
  209. }
  210. });
  211. }
  212. },
  213. complete: res => {
  214. uni.hideLoading();
  215. }
  216. });
  217. });
  218. },
  219. // 小程序更新
  220. checkMiniProgramUpdate() {
  221. if (uni.canIUse("getUpdateManager")) {
  222. const updateManager = uni.getUpdateManager();
  223. updateManager.onCheckForUpdate(function(res) {
  224. // 请求完新版本信息的回调
  225. if (res.hasUpdate) {
  226. updateManager.onUpdateReady(function() {
  227. uni.showModal({
  228. title: "更新提示",
  229. content: "新版本已经准备好,是否重启应用?",
  230. success: function(res) {
  231. if (res.confirm) {
  232. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  233. updateManager.applyUpdate();
  234. }
  235. }
  236. });
  237. });
  238. updateManager.onUpdateFailed(function() {
  239. // 新的版本下载失败
  240. uni.showModal({
  241. title: "已经有新版本了哟~",
  242. content: "新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~"
  243. });
  244. });
  245. }
  246. });
  247. }
  248. },
  249. // #endif
  250. };