-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstaller.js
437 lines (392 loc) · 11.1 KB
/
installer.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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
const core = require("@actions/core");
const exec = require("@actions/exec");
const hcl = require("js-hcl-parser");
const https = require("https");
const path = require("path");
const process = require("process");
const semver = require("semver");
const semverPrerelease = require("semver/functions/prerelease");
const tc = require("@actions/tool-cache");
const { promises: fsPromises } = require("fs");
const supportedPlatforms = ["linux", "darwin"];
const supportedArchs = ["x64", "arm64"];
const defaultSpcContent = `options "general" {
update_check = false
}`;
function checkPlatform(p = process) {
if (!supportedPlatforms.includes(p.platform)) {
throw new Error(
`turbot/steampipe-action-setup only supports ${supportedPlatforms.join(
" and "
)} on ${supportedArchs.join(" and ")} at this time`
);
}
if (!supportedArchs.includes(p.arch)) {
throw new Error(
`turbot/steampipe-action-setup only supports ${supportedPlatforms.join(
" and "
)} on ${supportedArchs.join(" and ")} at this time`
);
}
}
// TODO: List all releases, not just the first 3 pages
async function getSteampipeVersions() {
const resultJSONs = await get(
"https://api.github.com/repos/turbot/steampipe/releases?per_page=100",
[1, 2, 3]
);
const steampipeVersionListing = [];
resultJSONs.forEach((resultJSON) => {
JSON.parse(resultJSON)
.map((x) => x.tag_name)
.sort()
.forEach((v) => steampipeVersionListing.push(v));
});
return steampipeVersionListing;
}
async function get(url0, pageIdxs) {
function getPage(pageIdx) {
return new Promise((resolve, reject) => {
const url = new URL(url0);
if (pageIdx !== null) {
url.searchParams.append("page", pageIdx);
}
https
.get(
url,
{
headers: { "user-agent": "setup-steampipe" },
},
(res) => {
let data = "";
res.on("data", (chunk) => {
data += chunk;
});
res.on("end", () => {
if (res.statusCode >= 400 && res.statusCode <= 599) {
reject(
new Error(
`Got ${res.statusCode} from ${url}. Exiting with error`
)
);
} else {
resolve(data);
}
});
}
)
.on("error", (err) => {
reject(err);
});
});
}
let ret;
if (pageIdxs[0] === null) {
ret = getPage(null);
} else {
ret = Promise.all(pageIdxs.map((pageIdx) => getPage(pageIdx)));
}
return ret;
}
function getVersionFromSpec(versionSpec, versions) {
let version = "";
versions.sort((a, b) => {
if (semver.gt(a, b)) {
return 1;
}
return -1;
});
if (versionSpec === "latest") {
core.info("Getting latest Steampipe CLI version");
const filtered = versions.filter((version) => {
return !semverPrerelease(version);
});
return filtered[filtered.length - 1];
}
for (let i = versions.length - 1; i >= 0; i--) {
const potential = versions[i];
const satisfied = semver.satisfies(potential, versionSpec);
if (satisfied) {
version = potential;
break;
}
}
if (version) {
core.debug(`Matched Steampipe CLI version: ${version}`);
} else {
core.debug(`No matching Steampipe CLI version found for ${versionSpec}`);
}
return version;
}
async function installSteampipe(steampipeVersion) {
const toolPath = tc.find("steampipe", steampipeVersion, process.arch);
if (toolPath) {
core.info(`Found in cache @ ${toolPath}`);
return toolPath;
} else {
const targets = {
linux: {
x64: "linux_amd64.tar.gz",
arm64: "linux_arm64.tar.gz",
},
darwin: {
x64: "darwin_amd64.zip",
arm64: "darwin_arm64.zip",
},
};
const target = targets[process.platform][process.arch];
const downloadUrl = `https://github.com/turbot/steampipe/releases/download/${steampipeVersion}/steampipe_${target}`;
core.info(`Steampipe download URL: ${downloadUrl.toString()}`);
const steampipeArchivePath = await tc.downloadTool(downloadUrl);
const extractFolder = await (async () => {
if (process.platform === "linux") {
return tc.extractTar(steampipeArchivePath);
} else {
return tc.extractZip(steampipeArchivePath);
}
})();
return await tc.cacheDir(
extractFolder,
"steampipe",
steampipeVersion,
process.arch
);
}
}
async function installSteampipePlugins(plugins, steampipeVersion) {
if (!plugins || plugins.length == 0) {
return Promise.resolve();
}
core.info(`Installing plugins: ${plugins}`);
const args = ["plugin", "install", ...plugins];
// The progress flag is only available >=0.20.0 and helps hide noisy progress
// bars
if (semver.satisfies(steampipeVersion, ">=0.20.0")) {
args.push("--progress=false");
}
await exec.exec("steampipe", args);
}
/*
* steampipe-plugins input related functions
*/
async function configureSteampipePlugins(plugins) {
if (plugins && Object.keys(plugins).length > 0) {
const baseConfigPath = path.join(process.env.HOME, ".steampipe", "config");
await fsPromises.mkdir(baseConfigPath, { recursive: true });
await Promise.all(
Object.keys(plugins).map(async (plugin) => {
const config = getSteampipePluginConfig(plugin, plugins[plugin]);
await fsPromises.writeFile(
path.join(baseConfigPath, getPluginShortName(plugin) + ".json"),
JSON.stringify(config)
);
try {
await fsPromises.unlink(
path.join(baseConfigPath, getPluginShortName(plugin) + ".spc")
);
} catch (e) {
// ignore error
}
})
);
}
}
function getPluginShortName(name) {
return ((n) => n[n.length - 1].split(":")[0])(name.split("/"));
}
function getSteampipePluginConfig(name, config) {
const shortName = getPluginShortName(name);
if (Array.isArray(config)) {
let index = 1;
return {
connection: config.reduce((memo, config) => {
memo[`${shortName}${index++}`] = {
...config,
plugin: name,
};
return memo;
}, {}),
};
}
return {
connection: {
[shortName]: {
...config,
plugin: name,
},
},
};
}
/*
* plugin-connections input related functions
*/
function getPluginsToInstall(connections) {
const configType = getConnConfigType(connections);
let connHclParsed, connJsonParsed, connData;
let pluginsToInstall = [];
switch (configType) {
/*
* Sample JSON connection config:
* {
* "connection": {
* "net": {
* "plugin": "net"
* },
* "net_2": {
* "plugin": "net"
* },
* "hackernews": {
* "plugin": "hackernews"
* }
* }
* }
*/
case "json":
try {
connJsonParsed = JSON.parse(connections);
if (!Object.getOwnPropertyDescriptor(connJsonParsed, "connection")) {
throw new Error(
"Missing 'connection' key in plugin-connections input"
);
}
connData = connJsonParsed["connection"];
pluginsToInstall = Object.keys(connData).map((k) => connData[k].plugin);
} catch (err) {
core.warning("Failed to get plugins to install from JSON config");
throw err;
}
break;
/*
* Sample HCL connection config:
* connection "net" {
* plugin = "net"
* timeout = 3000
* }
* connection "net_2" {
* plugin = "net"
* timeout = 100
* }
* connection "hackernews" {
* plugin = "hackernews"
* }
*/
case "hcl":
try {
connHclParsed = hcl.parse(connections);
connJsonParsed = JSON.parse(connHclParsed);
if (!Object.getOwnPropertyDescriptor(connJsonParsed, "connection")) {
throw new Error(
"Missing 'connection' key in plugin-connections input"
);
}
connData = connJsonParsed["connection"];
/* Sample HCL to JSON connection config:
* [{
* "net": [{
* "plugin": "net",
* "timeout": 3000
* }]
* }, {
* "net_2": [{
* "plugin": "net",
* "timeout": 100
* }]
* }, {
* "hackernews": [{
* "plugin": "hackernews"
* }]
* }]
*/
for (const conn of connData) {
for (const connName in conn) {
const subArray = conn[connName];
for (const connArgs of subArray) {
const plugin = connArgs.plugin;
pluginsToInstall.push(plugin);
}
}
}
} catch (err) {
core.warning("Failed to get plugins to install from HCL config");
throw err;
}
break;
default:
throw new Error("Unknown connection config format");
}
const uniquePluginsToInstall = [...new Set(pluginsToInstall)];
if (uniquePluginsToInstall.length == 0) {
throw new Error("No plugins specified in plugin-connections input");
}
return uniquePluginsToInstall;
}
async function deletePluginConfigs() {
core.info("Deleting all files in ~/.steampipe/config/");
let contents = await fsPromises.readdir(
`${process.env.HOME}/.steampipe/config`
);
for (const entry of contents) {
if (entry !== 'default.spc') {
await fsPromises.unlink(`${process.env.HOME}/.steampipe/config/${entry}`);
}
}
}
async function writePluginConnections(connections) {
let configType = getConnConfigType(connections);
let filePath = `${process.env.HOME}/.steampipe/config/connections`;
let fileExtension;
switch (configType) {
case "json":
fileExtension = ".json";
break;
case "hcl":
fileExtension = ".spc";
break;
default:
throw new Error("Unknown connection config format");
}
filePath += fileExtension;
core.info(`Writing connections into ${filePath}`);
await fsPromises.writeFile(filePath, connections);
}
async function createDefaultSpc() {
let spPath = path.join(`${process.env.HOME}`, ".steampipe")
let dirPath = path.join(spPath, "config")
let filePath = path.join(dirPath, "default.spc");
await fsPromises.mkdir(spPath);
await fsPromises.mkdir(dirPath);
await fsPromises.writeFile(filePath, defaultSpcContent);
}
function getConnConfigType(connections) {
// Check for JSON instead of HCL first since the HCL parse method accepts
// JSON strings
try {
JSON.parse(connections);
return "json";
// Ignore errors so we can check if it's HCL
} catch (err) {
// ignore error
}
try {
hcl.parse(connections);
return "hcl";
// Ignore errors so we can return unknown type
} catch (err) {
// ignore error
}
// Not HCL or JSON
return "unknown";
}
module.exports = {
checkPlatform,
configureSteampipePlugins,
createDefaultSpc,
deletePluginConfigs,
getPluginsToInstall,
getSteampipePluginConfig,
getSteampipeVersions,
getVersionFromSpec,
installSteampipe,
installSteampipePlugins,
writePluginConnections,
};