2022-11-22 07:45:36 +00:00
|
|
|
|
import third from '@/sheep/api/third';
|
|
|
|
|
import $wxsdk from '@/sheep/libs/sdk-h5-weixin';
|
|
|
|
|
import { getRootUrl } from '@/sheep/helper';
|
2023-12-23 02:01:58 +00:00
|
|
|
|
import AuthUtil from '@/sheep/api/member/auth';
|
2023-12-23 14:04:11 +00:00
|
|
|
|
import SocialApi from '@/sheep/api/member/social';
|
2023-12-23 02:01:58 +00:00
|
|
|
|
|
|
|
|
|
const socialType = 31; // 社交类型 - 微信公众号
|
2022-11-22 07:45:36 +00:00
|
|
|
|
|
|
|
|
|
// 加载微信公众号JSSDK
|
|
|
|
|
async function load() {
|
|
|
|
|
$wxsdk.init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 微信公众号登陆
|
2023-12-23 02:01:58 +00:00
|
|
|
|
async function login(code = '', state = '') {
|
2023-12-23 09:53:07 +00:00
|
|
|
|
// 情况一:没有 code 时,去获取 code
|
2022-11-22 07:45:36 +00:00
|
|
|
|
if (!code) {
|
2023-12-23 02:01:58 +00:00
|
|
|
|
const loginUrl = await getLoginUrl();
|
|
|
|
|
if (loginUrl) {
|
2022-11-22 07:45:36 +00:00
|
|
|
|
uni.setStorageSync('returnUrl', location.href);
|
2023-12-23 02:01:58 +00:00
|
|
|
|
window.location = loginUrl;
|
2022-11-22 07:45:36 +00:00
|
|
|
|
}
|
2023-12-23 09:53:07 +00:00
|
|
|
|
// 情况二:有 code 时,使用 code 去自动登录
|
2022-11-22 07:45:36 +00:00
|
|
|
|
} else {
|
2023-12-23 02:01:58 +00:00
|
|
|
|
// 解密 code 发起登陆
|
|
|
|
|
const loginResult = await loginByCode(code, state);
|
|
|
|
|
if (loginResult.code === 0) {
|
2023-12-23 09:53:07 +00:00
|
|
|
|
setOpenid(loginResult.data.openid);
|
2022-11-22 07:45:36 +00:00
|
|
|
|
return loginResult;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 微信公众号绑定
|
|
|
|
|
async function bind(code = '') {
|
|
|
|
|
// 获取绑定地址
|
|
|
|
|
if (code === '') {
|
2023-12-23 02:01:58 +00:00
|
|
|
|
const loginUrl = await getLoginUrl('bind');
|
|
|
|
|
if (loginUrl) {
|
2022-11-22 07:45:36 +00:00
|
|
|
|
uni.setStorageSync('returnUrl', location.href);
|
2023-12-23 02:01:58 +00:00
|
|
|
|
window.location = loginUrl;
|
2022-11-22 07:45:36 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// 解密code发起登陆
|
|
|
|
|
const loginResult = await bindByCode(code);
|
|
|
|
|
if (loginResult.error === 0) {
|
|
|
|
|
return loginResult;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 微信公众号解除绑定
|
2023-12-23 14:04:11 +00:00
|
|
|
|
const unbind = async (openid) => {
|
|
|
|
|
const { code } = await SocialApi.socialUnbind(socialType, openid);
|
|
|
|
|
return code === 0;
|
|
|
|
|
};
|
2022-11-22 07:45:36 +00:00
|
|
|
|
|
|
|
|
|
// 获取公众号登陆地址
|
2023-12-23 02:01:58 +00:00
|
|
|
|
async function getLoginUrl(event = 'login') {
|
|
|
|
|
const page = getRootUrl() + 'pages/index/login';
|
|
|
|
|
const { code, data } = await AuthUtil.socialAuthRedirect(socialType, page);
|
|
|
|
|
if (code !== 0) {
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
|
|
|
|
return data;
|
2022-11-22 07:45:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 此处使用前端发送code在后端解密,防止用户在后端过长时间停留
|
2023-12-23 02:01:58 +00:00
|
|
|
|
function loginByCode(code, state) {
|
|
|
|
|
if (true) {
|
|
|
|
|
return AuthUtil.socialLogin(socialType, code, state);
|
|
|
|
|
}
|
|
|
|
|
// TODO 芋艿:shareLog
|
2022-11-22 07:45:36 +00:00
|
|
|
|
return third.wechat.login({
|
|
|
|
|
platform: 'officialAccount',
|
|
|
|
|
shareInfo: uni.getStorageSync('shareLog') || {},
|
|
|
|
|
payload: encodeURIComponent(
|
|
|
|
|
JSON.stringify({
|
|
|
|
|
code,
|
|
|
|
|
}),
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 此处使用前端发送code在后端解密,防止用户在后端过长时间停留
|
|
|
|
|
function bindByCode(code) {
|
2023-12-21 13:04:19 +00:00
|
|
|
|
debugger
|
2022-11-22 07:45:36 +00:00
|
|
|
|
return third.wechat.bind({
|
|
|
|
|
platform: 'officialAccount',
|
|
|
|
|
payload: encodeURIComponent(
|
|
|
|
|
JSON.stringify({
|
|
|
|
|
code,
|
|
|
|
|
}),
|
|
|
|
|
),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-23 02:01:58 +00:00
|
|
|
|
// 设置 openid 到本地存储,目前只有 pay 支付时会使用
|
|
|
|
|
function setOpenid(openid) {
|
|
|
|
|
uni.setStorageSync('openid', openid);
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-23 14:04:11 +00:00
|
|
|
|
// 获得社交信息
|
|
|
|
|
async function getInfo() {
|
|
|
|
|
const { code, data } = await SocialApi.getSocialUser(socialType);
|
|
|
|
|
if (code !== 0) {
|
|
|
|
|
return undefined;
|
|
|
|
|
}
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-22 07:45:36 +00:00
|
|
|
|
export default {
|
|
|
|
|
load,
|
|
|
|
|
login,
|
|
|
|
|
bind,
|
|
|
|
|
unbind,
|
2023-12-23 14:04:11 +00:00
|
|
|
|
getInfo,
|
2022-11-22 07:45:36 +00:00
|
|
|
|
jssdk: $wxsdk,
|
|
|
|
|
};
|