2018-05-17 16:58:30 +02:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
|
|
|
|
2018-05-18 21:26:59 +02:00
|
|
|
import { Organization } from 'jslib/models/domain/organization';
|
2018-05-16 17:17:40 +02:00
|
|
|
import { CollectionView } from 'jslib/models/view/collectionView';
|
|
|
|
import { FolderView } from 'jslib/models/view/folderView';
|
|
|
|
|
2018-05-31 15:08:54 +02:00
|
|
|
import { NodeUtils } from 'jslib/misc/nodeUtils';
|
|
|
|
|
2018-05-16 17:17:40 +02:00
|
|
|
export class CliUtils {
|
2019-06-05 03:03:26 +02:00
|
|
|
static writeLn(s: string, finalLine: boolean = false, error: boolean = false) {
|
|
|
|
const stream = error ? process.stderr : process.stdout;
|
2018-08-06 15:38:17 +02:00
|
|
|
if (finalLine && process.platform === 'win32') {
|
2019-06-05 03:03:26 +02:00
|
|
|
stream.write(s);
|
2018-08-06 15:38:17 +02:00
|
|
|
} else {
|
2019-06-05 03:03:26 +02:00
|
|
|
stream.write(s + '\n');
|
2018-08-06 15:38:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static readFile(input: string): Promise<string> {
|
|
|
|
return new Promise<string>((resolve, reject) => {
|
|
|
|
let p: string = null;
|
2018-08-31 03:48:04 +02:00
|
|
|
if (input != null && input !== '') {
|
2018-08-06 15:38:17 +02:00
|
|
|
const osInput = path.join(input);
|
2018-08-06 16:41:52 +02:00
|
|
|
if (osInput.indexOf(path.sep) === -1) {
|
2018-08-06 15:38:17 +02:00
|
|
|
p = path.join(process.cwd(), osInput);
|
|
|
|
} else {
|
|
|
|
p = osInput;
|
|
|
|
}
|
|
|
|
} else {
|
2018-08-06 16:38:32 +02:00
|
|
|
reject('You must specify a file path.');
|
2018-08-06 15:38:17 +02:00
|
|
|
}
|
|
|
|
fs.readFile(p, 'utf8', (err, data) => {
|
|
|
|
if (err != null) {
|
|
|
|
reject(err.message);
|
|
|
|
}
|
|
|
|
resolve(data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-17 19:28:22 +02:00
|
|
|
static saveFile(data: string | Buffer, output: string, defaultFileName: string) {
|
|
|
|
let p: string = null;
|
|
|
|
let mkdir = false;
|
|
|
|
if (output != null && output !== '') {
|
|
|
|
const osOutput = path.join(output);
|
|
|
|
if (osOutput.indexOf(path.sep) === -1) {
|
|
|
|
p = path.join(process.cwd(), osOutput);
|
|
|
|
} else {
|
|
|
|
mkdir = true;
|
|
|
|
if (osOutput.endsWith(path.sep)) {
|
|
|
|
p = path.join(osOutput, defaultFileName);
|
|
|
|
} else {
|
|
|
|
p = osOutput;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
p = path.join(process.cwd(), defaultFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
p = path.resolve(p);
|
|
|
|
if (mkdir) {
|
|
|
|
const dir = p.substring(0, p.lastIndexOf(path.sep));
|
|
|
|
if (!fs.existsSync(dir)) {
|
2018-08-28 05:12:53 +02:00
|
|
|
NodeUtils.mkdirpSync(dir, '700');
|
2018-05-17 19:28:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Promise<string>((resolve, reject) => {
|
|
|
|
fs.writeFile(p, data, 'utf8', (err) => {
|
|
|
|
if (err != null) {
|
|
|
|
reject('Cannot save file to ' + p);
|
|
|
|
}
|
|
|
|
resolve(p);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-17 04:40:48 +02:00
|
|
|
static readStdin(): Promise<string> {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
let input: string = '';
|
|
|
|
|
|
|
|
if (process.stdin.isTTY) {
|
|
|
|
resolve(input);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
process.stdin.setEncoding('utf8');
|
|
|
|
process.stdin.on('readable', () => {
|
|
|
|
while (true) {
|
|
|
|
const chunk = process.stdin.read();
|
|
|
|
if (chunk == null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
input += chunk;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
process.stdin.on('end', () => {
|
|
|
|
resolve(input);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-16 17:17:40 +02:00
|
|
|
static searchFolders(folders: FolderView[], search: string) {
|
|
|
|
search = search.toLowerCase();
|
|
|
|
return folders.filter((f) => {
|
|
|
|
if (f.name != null && f.name.toLowerCase().indexOf(search) > -1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
static searchCollections(collections: CollectionView[], search: string) {
|
|
|
|
search = search.toLowerCase();
|
|
|
|
return collections.filter((c) => {
|
|
|
|
if (c.name != null && c.name.toLowerCase().indexOf(search) > -1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
2018-05-18 21:26:59 +02:00
|
|
|
|
|
|
|
static searchOrganizations(organizations: Organization[], search: string) {
|
|
|
|
search = search.toLowerCase();
|
|
|
|
return organizations.filter((o) => {
|
|
|
|
if (o.name != null && o.name.toLowerCase().indexOf(search) > -1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
2018-05-16 17:17:40 +02:00
|
|
|
}
|