miniProgram.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. // import third from '@/sheep/api/third';
  2. import AuthUtil from '@/sheep/api/member/auth';
  3. import SocialApi from '@/sheep/api/member/social';
  4. import UserApi from '@/sheep/api/member/user';
  5. const socialType = 34; // 社交类型 - 微信小程序
  6. let subscribeEventList = [];
  7. // 加载微信小程序
  8. function load() {
  9. checkUpdate();
  10. getSubscribeTemplate();
  11. }
  12. // 微信小程序静默授权登陆
  13. const login = async () => {
  14. return new Promise(async (resolve, reject) => {
  15. // 1. 获得微信 code
  16. const codeResult = await uni.login();
  17. if (codeResult.errMsg !== 'login:ok') {
  18. return resolve(false);
  19. }
  20. // 2. 社交登录
  21. const loginResult = await AuthUtil.socialLogin(socialType, codeResult.code, 'default');
  22. if (loginResult.code === 0) {
  23. setOpenid(loginResult.data.openid);
  24. return resolve(true);
  25. } else {
  26. return resolve(false);
  27. }
  28. });
  29. };
  30. // 微信小程序手机号授权登陆
  31. const mobileLogin = async (e) => {
  32. return new Promise(async (resolve, reject) => {
  33. if (e.errMsg !== 'getPhoneNumber:ok') {
  34. return resolve(false);
  35. }
  36. // 1. 获得微信 code
  37. const codeResult = await uni.login();
  38. if (codeResult.errMsg !== 'login:ok') {
  39. return resolve(false);
  40. }
  41. // 2. 一键登录
  42. const loginResult = await AuthUtil.weixinMiniAppLogin(e.code, codeResult.code, 'default');
  43. if (loginResult.code === 0) {
  44. setOpenid(loginResult.data.openid);
  45. return resolve(true);
  46. } else {
  47. return resolve(false);
  48. }
  49. // TODO 非繁人:shareInfo: uni.getStorageSync('shareLog') || {},
  50. });
  51. };
  52. // 微信小程序绑定
  53. const bind = () => {
  54. return new Promise(async (resolve, reject) => {
  55. // 1. 获得微信 code
  56. const codeResult = await uni.login();
  57. if (codeResult.errMsg !== 'login:ok') {
  58. return resolve(false);
  59. }
  60. // 2. 绑定账号
  61. const bindResult = await SocialApi.socialBind(socialType, codeResult.code, 'default');
  62. if (bindResult.code === 0) {
  63. setOpenid(bindResult.data);
  64. return resolve(true);
  65. } else {
  66. return resolve(false);
  67. }
  68. });
  69. };
  70. // 微信小程序解除绑定
  71. const unbind = async (openid) => {
  72. const { code } = await SocialApi.socialUnbind(socialType, openid);
  73. return code === 0;
  74. };
  75. // 绑定用户手机号
  76. const bindUserPhoneNumber = (e) => {
  77. return new Promise(async (resolve, reject) => {
  78. const { code } = await UserApi.updateUserMobileByWeixin(e.code);
  79. if (code === 0) {
  80. resolve(true);
  81. }
  82. resolve(false);
  83. });
  84. };
  85. // 设置 openid 到本地存储,目前只有 pay 支付时会使用
  86. function setOpenid(openid) {
  87. uni.setStorageSync('openid', openid);
  88. }
  89. // 获得 openid
  90. async function getOpenid(force = false) {
  91. let openid = uni.getStorageSync('openid');
  92. if (!openid && force) {
  93. const info = await getInfo();
  94. if (info && info.openid) {
  95. openid = info.openid;
  96. setOpenid(openid);
  97. }
  98. }
  99. return openid;
  100. }
  101. // 获得社交信息
  102. async function getInfo() {
  103. const { code, data } = await SocialApi.getSocialUser(socialType);
  104. if (code !== 0) {
  105. return undefined;
  106. }
  107. return data;
  108. }
  109. // ========== 非登录相关的逻辑 ==========
  110. // 小程序更新
  111. const checkUpdate = async (silence = true) => {
  112. if (uni.canIUse('getUpdateManager')) {
  113. const updateManager = uni.getUpdateManager();
  114. updateManager.onCheckForUpdate(function (res) {
  115. // 请求完新版本信息的回调
  116. if (res.hasUpdate) {
  117. updateManager.onUpdateReady(function () {
  118. uni.showModal({
  119. title: '更新提示',
  120. content: '新版本已经准备好,是否重启应用?',
  121. success: function (res) {
  122. if (res.confirm) {
  123. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  124. updateManager.applyUpdate();
  125. }
  126. },
  127. });
  128. });
  129. updateManager.onUpdateFailed(function () {
  130. // 新的版本下载失败
  131. // uni.showModal({
  132. // title: '已经有新版本了哟~',
  133. // content: '新版本已经上线啦,请您删除当前小程序,重新搜索打开~',
  134. // });
  135. });
  136. } else {
  137. if (!silence) {
  138. uni.showModal({
  139. title: '当前为最新版本',
  140. showCancel: false,
  141. });
  142. }
  143. }
  144. });
  145. }
  146. };
  147. // 获取订阅消息模板
  148. async function getSubscribeTemplate() {
  149. const { error, data } = await third.wechat.subscribeTemplate();
  150. if (error === 0) {
  151. subscribeEventList = data;
  152. }
  153. }
  154. // 订阅消息
  155. function subscribeMessage(event) {
  156. let tmplIds = [];
  157. if (typeof event === 'string') {
  158. tmplIds.push(subscribeEventList[event]);
  159. }
  160. if (typeof event === 'object') {
  161. event.forEach((item) => {
  162. if (typeof subscribeEventList[item] !== 'undefined') tmplIds.push(subscribeEventList[item]);
  163. });
  164. }
  165. if (tmplIds.length === 0) return;
  166. uni.requestSubscribeMessage({
  167. tmplIds,
  168. fail: (err) => {
  169. console.log(err);
  170. },
  171. });
  172. }
  173. export default {
  174. load,
  175. login,
  176. bind,
  177. unbind,
  178. bindUserPhoneNumber,
  179. mobileLogin,
  180. getInfo,
  181. getOpenid,
  182. subscribeMessage,
  183. };