forked from railsware/upterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAliases.ts
35 lines (29 loc) · 1.13 KB
/
Aliases.ts
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
import {executeCommandWithShellConfig} from "./PTY";
import {memoize} from "./Decorators";
export default class Aliases {
static async find(alias: string): Promise<string> {
return (await this.all())[alias];
}
@memoize()
static async all(): Promise<Dictionary<string>> {
const lines = await executeCommandWithShellConfig("alias");
return lines.reduce(
(accumulator: Dictionary<string>, aliasLine: string) => {
let [short, long] = aliasLine.split("=");
if (short && long) {
const nameCapture = /(alias )?(.*)/.exec(short);
const valueCapture = /'?([^']*)'?/.exec(long);
if (nameCapture && valueCapture) {
accumulator[nameCapture[2]] = valueCapture[1];
} else {
throw `Alias line is incorrect: ${aliasLine}`;
}
} else {
throw `Can't parse alias line: ${aliasLine}`;
}
return accumulator;
},
<Dictionary<string>>{}
);
}
}