-
Notifications
You must be signed in to change notification settings - Fork 18
/
binary.ts
219 lines (199 loc) · 5.33 KB
/
binary.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
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
import { exec, execSync, spawn } from "child_process";
const os = require("os");
const path = require("path");
const commandExists = require("command-exists");
const FOUNDRYUP_INSTALLER = 'curl -sSL "https://foundry.paradigm.xyz" | sh';
/**
* @returns the path to the anvil path to use, if `anvil` is in path then this will be returned
*
*/
export async function getAnvilCommand(): Promise<string> {
try {
return commandExists("anvil");
} catch (e) {
const cmd = foundryAnvilBinPath();
await checkCommand(`${cmd} --version`);
return cmd;
}
}
/**
* @returns the path to the cast path to use, if `cast` is in path then this will be returned
*
*/
export async function getCastCommand(): Promise<string> {
try {
return commandExists("cast");
} catch (e) {
const cmd = foundryCastBinPath();
await checkCommand(`${cmd} --version`);
return cmd;
}
}
/**
* @returns the path to the forge path to use, if `forge` is in path then this will be returned
*
*/
export async function getForgeCommand(): Promise<string> {
try {
return commandExists("forge");
} catch (e) {
const cmd = foundryForgeBinPath();
await checkCommand(`${cmd} --version`);
return cmd;
}
}
/**
* @returns the path to the forge path to use, if `forge` is in path then this will be returned
*
*/
export function getForgeCommandSync(): string {
if (commandExists.sync("forge")) {
return "forge";
} else {
const cmd = foundryForgeBinPath();
checkCommandSync(`${cmd} --version`);
return cmd;
}
}
/**
* @returns the path to the foundry directory: `$HOME/.foundry`
*/
export function foundryDir(): string {
return path.join(os.homedir(), ".foundry");
}
/**
* @returns the path to the foundry directory that stores the tool binaries: `$HOME/.foundry/bin`
*/
export function foundryBinDir(): string {
return path.join(foundryDir(), "bin");
}
/**
* @returns the path to the anvil binary in the foundry dir: `$HOME/.foundry/bin/anvil`
*/
export function foundryAnvilBinPath(): string {
return path.join(foundryDir(), "anvil");
}
/**
* @returns the path to the cast binary in the foundry dir: `$HOME/.foundry/bin/cast`
*/
export function foundryCastBinPath(): string {
return path.join(foundryDir(), "cast");
}
/**
* @returns the path to the anvil forge in the foundry dir: `$HOME/.foundry/bin/forge`
*/
export function foundryForgeBinPath(): string {
return path.join(foundryDir(), "forge");
}
/**
* Installs foundryup via subprocess
*/
export async function selfInstall(): Promise<boolean> {
return new Promise((resolve) => {
const process = spawn("/bin/sh", ["-c", FOUNDRYUP_INSTALLER], {
stdio: "inherit",
});
process.on("exit", (code) => {
resolve(code === 0);
});
});
}
/**
* Optional target location `foundryup` accepts
*/
export interface FoundryupTarget {
branch?: string;
commit?: string;
repo?: string;
path?: string;
}
/**
* Executes `foundryup`
*
* @param install whether to install `foundryup` itself
* @param _target additional `foundryup` params
*/
export async function run(
install: boolean = true,
_target: FoundryupTarget = {}
): Promise<boolean> {
if (install) {
if (!(await checkFoundryUp())) {
if (!(await selfInstall())) {
return false;
}
}
}
return checkCommand("foundryup");
}
/**
* Checks if foundryup exists
*
* @return true if `foundryup` exists
*/
export async function checkFoundryUp(): Promise<boolean> {
return checkCommand("foundryup --version");
}
/**
* Checks if anvil exists
*
* @return true if `anvil` exists
*/
export async function checkAnvil(): Promise<boolean> {
return checkCommand("anvil --version");
}
/**
* Checks if cast exists
*
* @return true if `cast` exists
*/
export async function checkCast(): Promise<boolean> {
return checkCommand("cast --version");
}
/**
* Checks if cast exists
*
* @return true if `cast` exists
*/
export async function checkForge(): Promise<boolean> {
return checkCommand("forge --version");
}
/**
* Executes the given command
*
* @param cmd the command to run
* @return returns true if the command succeeded, false otherwise
*/
async function checkCommand(cmd: string): Promise<boolean> {
return new Promise((resolve) => {
const process = exec(cmd);
process.on("exit", (code) => {
if (code !== 0) {
console.error(
"Command failed. Is Foundry not installed? Consider installing via `curl -L https://foundry.paradigm.xyz | bash` and then running `foundryup` on a new terminal. For more context, check the installation instructions in the book: https://book.getfoundry.sh/getting-started/installation.html."
);
}
resolve(code === 0);
});
});
}
/**
* Executes the given command
*
* @param cmd the command to run
* @return returns true if the command succeeded, false otherwise
*/
function checkCommandSync(cmd: string): boolean {
try {
execSync(cmd);
return true;
} catch (error) {
const status = (error as any).status === 0;
if (!status) {
console.error(
"Command failed. Is Foundry not installed? Consider installing via `curl -L https://foundry.paradigm.xyz | bash` and then running `foundryup` on a new terminal. For more context, check the installation instructions in the book: https://book.getfoundry.sh/getting-started/installation.html."
);
}
return status;
}
}