forked from otter-sec/anchor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
348 lines (312 loc) · 11.7 KB
/
Copy pathlib.rs
File metadata and controls
348 lines (312 loc) · 11.7 KB
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
use anyhow::{anyhow, Result};
use once_cell::sync::Lazy;
use reqwest::header::USER_AGENT;
use semver::Version;
use serde::{de, Deserialize};
use std::fs;
use std::io::Write;
use std::path::PathBuf;
use std::process::Stdio;
/// Storage directory for AVM, ~/.avm
pub static AVM_HOME: Lazy<PathBuf> = Lazy::new(|| {
cfg_if::cfg_if! {
if #[cfg(test)] {
let dir = tempfile::tempdir().expect("Could not create temporary directory");
dir.path().join(".avm")
} else {
let mut user_home = dirs::home_dir().expect("Could not find home directory");
user_home.push(".avm");
user_home
}
}
});
/// Path to the current version file ~/.avm/.version
pub fn current_version_file_path() -> PathBuf {
let mut current_version_file_path = AVM_HOME.to_path_buf();
current_version_file_path.push(".version");
current_version_file_path
}
/// Read the current version from the version file
pub fn current_version() -> Result<Version> {
let v = fs::read_to_string(current_version_file_path().as_path())
.map_err(|e| anyhow!("Could not read version file: {}", e))?;
Version::parse(v.trim_end_matches('\n').to_string().as_str())
.map_err(|e| anyhow!("Could not parse version file: {}", e))
}
/// Path to the binary for the given version
pub fn version_binary_path(version: &Version) -> PathBuf {
let mut version_path = AVM_HOME.join("bin");
version_path.push(format!("anchor-{version}"));
version_path
}
/// Update the current version to a new version
pub fn use_version(opt_version: Option<Version>) -> Result<()> {
let version = match opt_version {
Some(version) => version,
None => read_anchorversion_file()?,
};
let installed_versions = read_installed_versions();
// Make sure the requested version is installed
if !installed_versions.contains(&version) {
if let Ok(current) = current_version() {
println!("Version {version} is not installed, staying on version {current}.");
} else {
println!("Version {version} is not installed, no current version.");
}
return Err(anyhow!(
"You need to run 'avm install {}' to install it before using it.",
version
));
}
let mut current_version_file = fs::File::create(current_version_file_path().as_path())?;
current_version_file.write_all(version.to_string().as_bytes())?;
println!("Now using anchor version {}.", current_version()?);
Ok(())
}
/// Update to the latest version
pub fn update() -> Result<()> {
// Find last stable version
let version = &get_latest_version();
install_version(version, false)
}
/// Install a version of anchor-cli
pub fn install_version(version: &Version, force: bool) -> Result<()> {
// If version is already installed we ignore the request.
let installed_versions = read_installed_versions();
if installed_versions.contains(version) && !force {
println!("Version {version} is already installed");
return Ok(());
}
let exit = std::process::Command::new("cargo")
.args([
"install",
"--git",
"https://github.com/coral-xyz/anchor",
"--tag",
&format!("v{}", &version),
"anchor-cli",
"--locked",
"--root",
AVM_HOME.to_str().unwrap(),
])
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
.output()
.map_err(|e| {
anyhow::format_err!("Cargo install for {} failed: {}", version, e.to_string())
})?;
if !exit.status.success() {
return Err(anyhow!(
"Failed to install {}, is it a valid version?",
version
));
}
fs::rename(
AVM_HOME.join("bin").join("anchor"),
AVM_HOME.join("bin").join(format!("anchor-{version}")),
)?;
// If .version file is empty or not parseable, write the newly installed version to it
if current_version().is_err() {
let mut current_version_file = fs::File::create(current_version_file_path().as_path())?;
current_version_file.write_all(version.to_string().as_bytes())?;
}
use_version(Some(version.clone()))
}
/// Remove an installed version of anchor-cli
pub fn uninstall_version(version: &Version) -> Result<()> {
let version_path = AVM_HOME.join("bin").join(format!("anchor-{version}"));
if !version_path.exists() {
return Err(anyhow!("anchor-cli {} is not installed", version));
}
if version == ¤t_version().unwrap() {
return Err(anyhow!("anchor-cli {} is currently in use", version));
}
fs::remove_file(version_path.as_path())?;
Ok(())
}
/// Read version from .anchorversion
pub fn read_anchorversion_file() -> Result<Version> {
fs::read_to_string(".anchorversion")
.map_err(|e| anyhow!(".anchorversion file not found: {e}"))
.map(|content| Version::parse(content.trim()))?
.map_err(|e| anyhow!("Unable to parse version: {e}"))
}
/// Ensure the users home directory is setup with the paths required by AVM.
pub fn ensure_paths() {
let home_dir = AVM_HOME.to_path_buf();
if !home_dir.as_path().exists() {
fs::create_dir_all(home_dir.clone()).expect("Could not create .avm directory");
}
let bin_dir = home_dir.join("bin");
if !bin_dir.as_path().exists() {
fs::create_dir_all(bin_dir).expect("Could not create .avm/bin directory");
}
if !current_version_file_path().exists() {
fs::File::create(current_version_file_path()).expect("Could not create .version file");
}
}
/// Retrieve a list of installable versions of anchor-cli using the GitHub API and tags on the Anchor
/// repository.
pub fn fetch_versions() -> Vec<semver::Version> {
#[derive(Deserialize)]
struct Release {
#[serde(rename = "name", deserialize_with = "version_deserializer")]
version: semver::Version,
}
fn version_deserializer<'de, D>(deserializer: D) -> Result<semver::Version, D::Error>
where
D: de::Deserializer<'de>,
{
let s: &str = de::Deserialize::deserialize(deserializer)?;
Version::parse(s.trim_start_matches('v')).map_err(de::Error::custom)
}
let client = reqwest::blocking::Client::new();
let versions: Vec<Release> = client
.get("https://api.github.com/repos/coral-xyz/anchor/tags")
.header(USER_AGENT, "avm https://github.com/coral-xyz/anchor")
.send()
.unwrap()
.json()
.unwrap();
versions.into_iter().map(|r| r.version).collect()
}
/// Print available versions and flags indicating installed, current and latest
pub fn list_versions() -> Result<()> {
let installed_versions = read_installed_versions();
let mut available_versions = fetch_versions();
// Reverse version list so latest versions are printed last
available_versions.reverse();
available_versions.iter().enumerate().for_each(|(i, v)| {
print!("{v}");
let mut flags = vec![];
if i == available_versions.len() - 1 {
flags.push("latest");
}
if installed_versions.contains(v) {
flags.push("installed");
}
if current_version().is_ok() && current_version().unwrap() == v.clone() {
flags.push("current");
}
if flags.is_empty() {
println!();
} else {
println!("\t({})", flags.join(", "));
}
});
Ok(())
}
pub fn get_latest_version() -> semver::Version {
let available_versions = fetch_versions();
available_versions.first().unwrap().clone()
}
/// Read the installed anchor-cli versions by reading the binaries in the AVM_HOME/bin directory.
pub fn read_installed_versions() -> Vec<semver::Version> {
let home_dir = AVM_HOME.to_path_buf();
let mut versions = vec![];
for file in fs::read_dir(home_dir.join("bin")).unwrap() {
let file_name = file.unwrap().file_name();
// Match only things that look like anchor-*
if file_name.to_str().unwrap().starts_with("anchor-") {
let version = file_name
.to_str()
.unwrap()
.trim_start_matches("anchor-")
.parse::<semver::Version>()
.unwrap();
versions.push(version);
}
}
versions
}
#[cfg(test)]
mod tests {
use crate::*;
use semver::Version;
use std::env;
use std::fs;
use std::io::Write;
#[test]
fn test_read_anchorversion() {
ensure_paths();
let mut dir = env::current_dir().unwrap();
dir.push(".anchorversion");
let mut file_created = fs::File::create(&dir).unwrap();
let test_version = "0.26.0";
file_created.write(test_version.as_bytes()).unwrap();
let version = read_anchorversion_file();
match version {
Ok(v) => {
assert_eq!(v.to_string(), test_version);
}
Err(_e) => {
assert!(false);
}
}
fs::remove_file(&dir).unwrap();
}
#[test]
fn test_ensure_paths() {
ensure_paths();
assert!(AVM_HOME.exists());
let bin_dir = AVM_HOME.join("bin");
assert!(bin_dir.exists());
let current_version_file = AVM_HOME.join(".version");
assert!(current_version_file.exists());
}
#[test]
fn test_current_version_file_path() {
ensure_paths();
assert!(current_version_file_path().exists());
}
#[test]
fn test_version_binary_path() {
assert!(
version_binary_path(&Version::parse("0.18.2").unwrap())
== AVM_HOME.join("bin/anchor-0.18.2")
);
}
#[test]
fn test_current_version() {
ensure_paths();
let mut current_version_file =
fs::File::create(current_version_file_path().as_path()).unwrap();
current_version_file.write_all("0.18.2".as_bytes()).unwrap();
// Sync the file to disk before the read in current_version() to
// mitigate the read not seeing the written version bytes.
current_version_file.sync_all().unwrap();
assert!(current_version().unwrap() == Version::parse("0.18.2").unwrap());
}
#[test]
#[should_panic(expected = "anchor-cli 0.18.1 is not installed")]
fn test_uninstall_non_installed_version() {
uninstall_version(&Version::parse("0.18.1").unwrap()).unwrap();
}
#[test]
#[should_panic(expected = "anchor-cli 0.18.2 is currently in use")]
fn test_uninstalled_in_use_version() {
ensure_paths();
let version = Version::parse("0.18.2").unwrap();
let mut current_version_file =
fs::File::create(current_version_file_path().as_path()).unwrap();
current_version_file.write_all("0.18.2".as_bytes()).unwrap();
// Sync the file to disk before the read in current_version() to
// mitigate the read not seeing the written version bytes.
current_version_file.sync_all().unwrap();
// Create a fake binary for anchor-0.18.2 in the bin directory
fs::File::create(version_binary_path(&version)).unwrap();
uninstall_version(&version).unwrap();
}
#[test]
fn test_read_installed_versions() {
ensure_paths();
let version = Version::parse("0.18.2").unwrap();
// Create a fake binary for anchor-0.18.2 in the bin directory
fs::File::create(version_binary_path(&version)).unwrap();
let expected = vec![version];
assert!(read_installed_versions() == expected);
// Should ignore this file because its not anchor- prefixed
fs::File::create(AVM_HOME.join("bin").join("garbage").as_path()).unwrap();
assert!(read_installed_versions() == expected);
}
}