-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path01-session.js
36 lines (30 loc) · 1.12 KB
/
01-session.js
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
const fs = require('fs');
const path = require('path');
// экземпляр Client
const { client } = require('../client');
// принудительное обновление токена (если ранее не было запросов)
const updateConnection = async () => {
if (!client.connection.isTokenExpired()) {
return;
}
await client.connection.update();
}
const run = async () => {
const filePath = path.resolve(__dirname, '../token.json');
let renewTimeout;
client.token.on('change', () => {
const token = client.token.getValue();
fs.writeFileSync(filePath, JSON.stringify(token));
// обновление токена по истечению
const expiresIn = token.expires_in * 1000;
clearTimeout(renewTimeout);
renewTimeout = setTimeout(updateConnection, expiresIn);
});
try {
const json = fs.readFileSync(filePath).toString();
const currentToken = JSON.parse(json);
client.token.setValue(currentToken);
} catch (e) {
// Файл не найден, некорректный JSON-токен
}
}