123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /**
- * Wechat v1.1.0
- * @Class Wechat
- * @description shopro-wechat 1.1.0 wehcat第三方登录组件
- * @Author lidongtony
- * @Date 2020-05-20
- * @Email lidongtony@qq.com
- */
- import api from "@/shopro/request/index";
- import $platform from "@/shopro/platform";
- import store from "@/shopro/store";
- import {
- API_URL
- } from "@/env";
- export default {
- eventMap(event) {
- let map = "";
- switch (event) {
- case "login":
- map = "登录中...";
- break;
- case "refresh":
- map = "更新中...";
- break;
- case "bind":
- map = "绑定中...";
- break;
- }
- return map;
- },
- async login() {
- let token = "";
- // #ifdef MP-WEIXIN
- token = await this.wxMiniProgramOauth("login");
- return token;
- // #endif
- // #ifdef H5
- this.wxOfficialAccountOauth("login");
- // #endif
- // #ifdef APP-PLUS
- token = await this.wxOpenPlatformOauth("login");
- return token;
- // #endif
- },
- async refresh() {
- let token = "";
- // #ifdef MP-WEIXIN
- token = await this.wxMiniProgramOauth("refresh");
- return token;
- // #endif
- // #ifdef H5
- this.wxOfficialAccountOauth("refresh");
- // #endif
- // #ifdef APP-PLUS
- token = await this.wxOpenPlatformOauth("refresh");
- return token;
- // #endif
- },
- async bind() {
- let token = "";
- // #ifdef MP-WEIXIN
- token = await this.wxMiniProgramOauth("bind");
- return token;
- // #endif
- // #ifdef H5
- this.wxOfficialAccountOauth("bind");
- // #endif
- // #ifdef APP-PLUS
- token = await this.wxOpenPlatformOauth("bind");
- return token;
- // #endif
- },
- // #ifdef H5
- // 微信公众号网页登录&刷新头像昵称&绑定
- wxOfficialAccountOauth(event = "login") {
- if ($platform.get() !== "wxOfficialAccount") {
- uni.showToast({
- title: "请在微信浏览器中打开",
- icon: "none"
- });
- throw false;
- }
- let host = $platform.host();
- let payloadObject = {
- host: host,
- event,
- token: (event !== "login" && store.getters.isLogin) ? uni.getStorageSync("token") : ""
- };
- let payload = encodeURIComponent(JSON.stringify(payloadObject));
- let redirect_uri = encodeURIComponent(`${API_URL}user/wxOfficialAccountOauth?payload=${payload}`);
- let oauthUrl = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + store.getters.initWechat.appid +
- `&redirect_uri=${redirect_uri}&response_type=code&scope=snsapi_userinfo&state=1`;
- uni.setStorageSync("lastPage", window.location.href);
- window.location = oauthUrl;
- },
- // 微信公众号网页静默登录:临时登录获取OpenId 不入库不绑定用户
- wxOfficialAccountBaseLogin() {
- let state = encodeURIComponent(window.location.href);
- window.location = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + store.getters.initWechat.appid +
- `&redirect_uri=${API_URL}user/wxOfficialAccountBaseLogin&response_type=code&scope=snsapi_base&state=${state}`;
- throw "stop";
- },
- // #endif
- // #ifdef APP-PLUS
- // 微信开放平台登录
- wxOpenPlatformOauth(event = "login") {
- let that = this;
- return new Promise((resolve, reject) => {
- uni.login({
- provider: "weixin",
- success: function(loginRes) {
- if (loginRes.errMsg === "login:ok") {
- let authResult = loginRes.authResult;
- api("user.wxOpenPlatformOauth", {
- authResult,
- event
- }, that.eventMap(event)).then(res => {
- if (res.code === 1) {
- resolve(res.data.token);
- } else {
- resolve(false);
- }
- });
- }
- },
- fail: function(res) {
- uni.showToast({
- title: "登录失败,请稍后再试"
- });
- resolve(false);
- api("common.debug", {
- info: res
- });
- },
- complete: function(res) {}
- });
- });
- },
- // #endif
- // #ifdef MP-WEIXIN
- // 微信小程序静默登录
- async getWxMiniProgramSessionKey(autoLogin = true) {
- let sessionStatus = false;
- let session_key = "";
- return new Promise((resolve, reject) => {
- uni.checkSession({
- success(res) {
- if (res.errMsg === "checkSession:ok") sessionStatus = true;
- },
- complete() {
- if (uni.getStorageSync("session_key") && sessionStatus && !autoLogin) {
- resolve(uni.getStorageSync("session_key"));
- } else {
- uni.login({
- success: function(info) {
- let code = info.code;
- api("user.getWxMiniProgramSessionKey", {
- code: code,
- autoLogin: autoLogin
- }).then(res => {
- if (res.code === 1) {
- uni.setStorageSync("session_key", res
- .data.session_key);
- if (autoLogin) {
- if (res.data.token) {
- resolve(res.data.token);
- } else {
- resolve(false);
- }
- }
- resolve(res.data.session_key);
- } else {
- reject(res.msg);
- }
- });
- }
- });
- }
- }
- });
- });
- },
- // 微信小程序获取用户信息登录
- wxMiniProgramOauth(event = "login") {
- let that = this;
- let session_key = uni.getStorageSync("session_key");
- uni.showLoading({
- title: that.eventMap(event)
- });
- return new Promise((resolve, reject) => {
- uni.getUserProfile({ // 必须手动确认触发
- desc: "完善会员资料", // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
- success: res => {
- if (res.errMsg === "getUserProfile:ok") {
- api("user.wxMiniProgramOauth", {
- event,
- session_key,
- encryptedData: res.encryptedData,
- iv: res.iv,
- signature: res.signature,
- }).then(res => {
- console.log(res)
- if (res.code === 1) {
- resolve(res.data.token);
- } else {
- uni.removeStorageSync("session_key");
- that.getWxMiniProgramSessionKey(false);
- resolve(false);
- }
- });
- }
- },
- complete: res => {
- uni.hideLoading();
- }
- });
- });
- },
- // 小程序更新
- checkMiniProgramUpdate() {
- if (uni.canIUse("getUpdateManager")) {
- const updateManager = uni.getUpdateManager();
- updateManager.onCheckForUpdate(function(res) {
- // 请求完新版本信息的回调
- if (res.hasUpdate) {
- updateManager.onUpdateReady(function() {
- uni.showModal({
- title: "更新提示",
- content: "新版本已经准备好,是否重启应用?",
- success: function(res) {
- if (res.confirm) {
- // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
- updateManager.applyUpdate();
- }
- }
- });
- });
- updateManager.onUpdateFailed(function() {
- // 新的版本下载失败
- uni.showModal({
- title: "已经有新版本了哟~",
- content: "新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~"
- });
- });
- }
- });
- }
- },
- // #endif
- };
|