wangzhibo
4 天以前 10595d8632f959d0954d1939243196f4eed02372
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
import { ref } from "vue";
import { onReady, onShow } from "@dcloudio/uni-app";
import { config } from "/@/config";
import { getUrlParam, storage } from "../utils";
import { service } from "../service";
import { useI18n } from "vue-i18n";
// #ifdef H5
import wx from "weixin-js-sdk";
// #endif
 
export function useWx() {
    const { platform } = uni.getSystemInfoSync();
    const { t } = useI18n();
 
    // 授权码
    const code = ref("");
 
    // 获取授权码
    async function getCode() {
        return new Promise((resolve) => {
            // #ifdef MP-WEIXIN
            uni.login({
                provider: "weixin",
                success: (res) => {
                    code.value = res.code;
                    resolve(res.code);
                },
            });
            // #endif
        });
    }
 
    // 是否微信浏览器
    function isWxBrowser() {
        // #ifdef H5
        const ua: any = window.navigator.userAgent.toLowerCase();
        if (ua.match(/MicroMessenger/i) == "micromessenger") {
            return true;
        } else {
            return false;
        }
        // #endif
 
        // #ifndef H5
        return false;
        // #endif
    }
 
    // 是否安装了微信
    function hasApp() {
        // #ifdef APP
        return plus.runtime.isApplicationExist({ pname: "com.tencent.mm", action: "weixin://" });
        // #endif
 
        // #ifndef APP
        return true;
        // #endif
    }
 
    // 下载微信
    function downloadApp() {
        // #ifdef APP
        if (platform == "android") {
            const Uri: any = plus.android.importClass("android.net.Uri");
            const uri: any = Uri.parse("market://details?id=" + "com.tencent.mm");
            const Intent: any = plus.android.importClass("android.content.Intent");
            const intent: any = new Intent(Intent.ACTION_VIEW, uri);
            const main: any = plus.android.runtimeMainActivity();
            main.startActivity(intent);
        } else {
            plus.runtime.openURL(
                "itms-apps://" + "itunes.apple.com/cn/app/wechat/id414478124?mt=8"
            );
        }
        // #endif
    }
 
    // 微信公众号配置
    const mpConfig = {
        appId: "",
    };
 
    // 获取微信公众号配置
    function getMpConfig() {
        // #ifdef H5
        if (isWxBrowser()) {
            service.user.comm
                .wxMpConfig({
                    url: `${location.origin}${location.pathname}`,
                })
                .then((res) => {
                    wx.config({
                        debug: config.app.wx.debug,
                        jsApiList: ["chooseWXPay"],
                        ...res,
                    });
 
                    Object.assign(mpConfig, res);
                });
        }
        // #endif
    }
 
    // 微信公众号授权
    function mpAuth() {
        const redirect_uri = encodeURIComponent(
            `${location.origin}${location.pathname}#/pages/user/login`
        );
        const response_type = "code";
        const scope = "snsapi_userinfo";
        const state = "STATE";
 
        const url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${mpConfig.appId}&redirect_uri=${redirect_uri}&response_type=${response_type}&scope=${scope}&state=${state}#wechat_redirect`;
 
        location.href = url;
    }
 
    // 微信公众号登录
    async function mpLogin() {
        return new Promise((resolve) => {
            const code = getUrlParam("code");
            const mpCode = storage.get("mpCode");
 
            let url = window.location.href;
            url = url.replace(/(\?[^#]*)#/, "#");
            window.history.replaceState({}, "", url);
 
            if (code != mpCode) {
                storage.set("mpCode", code);
                resolve(code);
            } else {
                resolve(null);
            }
        });
    }
 
    // 微信公众号支付
    async function mpPay(params: wx.IchooseWXPay & { timeStamp: number }): Promise<void> {
        return new Promise((resolve, reject) => {
            if (!isWxBrowser()) {
                return reject({
                    message: t("请在微信浏览器中打开"),
                });
            }
 
            wx.chooseWXPay({
                ...params,
                timestamp: params.timeStamp,
                success() {
                    resolve();
                },
                complete(e: { errMsg: string }) {
                    switch (e.errMsg) {
                        case "chooseWXPay:cancel":
                            reject({ message: t("已取消支付") });
                            break;
 
                        default:
                            reject({ message: t("支付失败") });
                    }
                },
            });
        });
    }
 
    // 微信app登录
    function appLogin(): Promise<string> {
        let all: any;
        let Service: any;
        return new Promise((resolve, reject) => {
            plus.oauth.getServices((Services: any) => {
                all = Services;
                Object.keys(all).some((key) => {
                    if (all[key].id == "weixin") {
                        Service = all[key];
                    }
                });
                Service.authorize(resolve, reject);
            }, reject);
        });
    }
 
    // 微信app支付
    function appPay(orderInfo: {
        appid: string;
        noncestr: string;
        package: string;
        partnerid: string;
        prepayid: string;
        timestamp: string;
        sign: string;
        [key: string]: any;
    }): Promise<void> {
        return new Promise((resolve, reject) => {
            uni.requestPayment({
                provider: "wxpay",
                orderInfo,
                success() {
                    resolve();
                },
                fail() {
                    reject({ message: t("已取消支付") });
                },
            });
        });
    }
 
    // 微信小程序登录
    async function miniLogin(): Promise<{ code: string; [key: string]: any }> {
        return new Promise((resolve, reject) => {
            // 兼容 Mac
            const k = platform === "mac" ? "getUserInfo" : "getUserProfile";
 
            uni[k]({
                lang: "zh_CN",
                desc: t("授权信息仅用于用户登录"),
                success({ iv, encryptedData, signature, rawData }) {
                    function next() {
                        resolve({
                            iv,
                            encryptedData,
                            signature,
                            rawData,
                            code: code.value,
                        });
                    }
 
                    // 检查登录状态是否过期
                    uni.checkSession({
                        success() {
                            next();
                        },
                        fail() {
                            getCode().then(next);
                        },
                    });
                },
                fail(err) {
                    console.error(err);
                    getCode();
 
                    reject({
                        message: t("登录授权失败"),
                    });
                },
            });
        });
    }
 
    // 微信小程序支付
    function miniPay(params: any): Promise<void> {
        return new Promise((resolve, reject) => {
            uni.requestPayment({
                provider: "wxpay",
                ...params,
                success() {
                    resolve();
                },
                fail() {
                    reject({ message: t("已取消支付") });
                },
            });
        });
    }
 
    onShow(() => {
        getCode();
    });
 
    onReady(() => {
        getMpConfig();
    });
 
    return {
        code,
        getCode,
        isWxBrowser,
        hasApp,
        downloadApp,
        mpConfig,
        mpAuth,
        mpLogin,
        mpPay,
        miniLogin,
        miniPay,
        appLogin,
        appPay,
    };
}