-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathlocal-e2e.js
97 lines (84 loc) · 2.21 KB
/
local-e2e.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
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
/**
* Tencent is pleased to support the open source community by making CloudBaseFramework - 云原生一体化部署工具 available.
*
* Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
*
* Please refer to license text included with this package for license details.
*/
const path = require('path');
const os = require('os');
const https = require('https');
const spawnPromise = require('./spawn');
const link = require('./link');
const listUrl = 'https://tcli.service.tcloudbase.com/templates';
const cwd = os.homedir();
main().catch((e) => {
console.log('执行失败', e);
process.exit(1);
});
async function main() {
await logout();
await login();
await forkTemplate();
await link();
const templates = await getTemplates();
console.log(templates);
for (template of templates.filter(
(template) => !['taro-starter', 'deno', 'dart', 'cms-microapp-vue', 'cms-microapp-react'].includes(template.path)
)) {
await installTemplate(template);
}
}
async function forkTemplate() {
await spawnPromise(`rm -rf ${path.join(cwd, 'cloudbase-templates')}`, {
cwd,
});
await spawnPromise(
'git clone https://github.com/TencentCloudBase/cloudbase-templates/',
{
cwd,
}
);
}
async function logout() {
await spawnPromise(`cloudbase logout`, {
cwd,
});
}
async function login() {
console.log(
'login',
process.env.SecretId.length,
process.env.SecretKey.length
);
await spawnPromise(
`cloudbase login --apiKeyId ${process.env.SecretId} --apiKey ${process.env.SecretKey}`,
{
cwd,
}
);
}
async function getTemplates() {
return new Promise((resolve, reject) => {
https.get(listUrl, (res) => {
let data = '';
res.setEncoding('utf8');
res.on('data', (chunk) => {
data += chunk;
});
res.on('end', () => {
resolve(JSON.parse(data));
});
res.on('error', reject);
});
});
}
async function installTemplate(template) {
console.log(`install template ${template.path} ${template.name}`);
await spawnPromise(
`cloudbase framework deploy -e ${process.env.envId} --verbose`,
{
cwd: path.join(cwd, 'cloudbase-templates', template.path),
}
);
}