2021-04-10 03:18:32 +02:00
|
|
|
import {lstatSync, readdirSync} from "fs";
|
2021-04-22 03:30:46 +02:00
|
|
|
import * as https from "https";
|
2021-04-10 03:18:32 +02:00
|
|
|
|
|
|
|
export default class ScriptUtils {
|
|
|
|
public static readDirRecSync(path): string[] {
|
|
|
|
const result = []
|
|
|
|
for (const entry of readdirSync(path)) {
|
|
|
|
const fullEntry = path + "/" + entry
|
|
|
|
const stats = lstatSync(fullEntry)
|
|
|
|
if (stats.isDirectory()) {
|
|
|
|
// Subdirectory
|
|
|
|
// @ts-ignore
|
|
|
|
result.push(...ScriptUtils.readDirRecSync(fullEntry))
|
|
|
|
} else {
|
|
|
|
result.push(fullEntry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2021-04-22 03:30:46 +02:00
|
|
|
|
2021-05-14 02:25:30 +02:00
|
|
|
public static DownloadJSON(url) : Promise<any>{
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
https.get(url, (res) => {
|
|
|
|
const parts : string[] = []
|
|
|
|
res.setEncoding('utf8');
|
|
|
|
res.on('data', function (chunk) {
|
|
|
|
// @ts-ignore
|
|
|
|
parts.push(chunk)
|
|
|
|
});
|
2021-04-22 03:30:46 +02:00
|
|
|
|
2021-05-14 02:25:30 +02:00
|
|
|
res.addListener('end', function () {
|
|
|
|
const result = parts.join("")
|
|
|
|
try{
|
|
|
|
resolve(JSON.parse(result))
|
|
|
|
}catch (e){
|
|
|
|
reject(e)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
2021-04-22 03:30:46 +02:00
|
|
|
})
|
2021-05-14 02:25:30 +02:00
|
|
|
|
2021-04-22 03:30:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static sleep(ms) {
|
2021-05-14 02:25:30 +02:00
|
|
|
if(ms <= 0){
|
|
|
|
process.stdout.write("\r \r")
|
|
|
|
return;
|
|
|
|
}
|
2021-04-22 03:30:46 +02:00
|
|
|
return new Promise((resolve) => {
|
2021-05-14 02:25:30 +02:00
|
|
|
process.stdout.write("\r Sleeping for "+(ms/1000)+"s \r")
|
|
|
|
setTimeout(resolve, 1000);
|
|
|
|
}).then(() => ScriptUtils.sleep(ms - 1000));
|
2021-04-22 03:30:46 +02:00
|
|
|
}
|
|
|
|
|
2021-04-10 03:18:32 +02:00
|
|
|
|
|
|
|
}
|