-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathgetAccessToken.ts
59 lines (48 loc) · 1.5 KB
/
getAccessToken.ts
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
import cloud from '@lafjs/cloud'
import axios from 'axios';
import { getAppSecret } from "@/getAppSecret"
const db = cloud.database();
export async function getAccessToken() {
const { MP_APPID, MP_SECRET } = await getAppSecret(false);
// 读取数据库
const record = (await db.collection('setting').doc("accessToken").get()).data;
if (record && Math.floor(Date.now() / 1000) < record.expiredAt) {
// 未超时,直接返回
console.log("未超时,直接返回", record);
return record.accessToken;
}
// 重新获取
const result = await axios.get('https://api.weixin.qq.com/cgi-bin/token', {
params: {
appid: MP_APPID,
secret: MP_SECRET,
grant_type: 'client_credential'
}
});
if (result.data.errcode) { // 获取失败
console.log("Access Token 获取失败 ", result.data);
return result.data;
}
// 更新数据库
const data = {
accessToken: result.data.access_token,
expiredAt: Math.floor(Date.now() / 1000) + result.data.expires_in
};
if (record) {
console.log("更新数据库记录", data);
await db.collection('setting').doc("accessToken").update(data);
}
else {
console.log("创建数据库记录", data);
await db.collection('setting').doc("accessToken").set(data);
}
return data.accessToken;
}
export default async function (ctx: FunctionContext) {
const { body } = ctx
if (body && body.deploy_test === true) {
// 进行部署检查
return "v1.1";
}
return await getAccessToken();
}