forked from HarukaMa/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
updater.rs
108 lines (89 loc) · 3.91 KB
/
updater.rs
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
// Copyright (C) 2019-2021 Aleo Systems Inc.
// This file is part of the snarkOS library.
// The snarkOS library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The snarkOS library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the snarkOS library. If not, see <https://www.gnu.org/licenses/>.
use colored::Colorize;
use self_update::{backends::github, version::bump_is_greater, Status};
pub struct Updater;
impl Updater {
const SNARKOS_BIN_NAME: &'static str = "snarkos";
const SNARKOS_REPO_NAME: &'static str = "snarkOS";
const SNARKOS_REPO_OWNER: &'static str = "AleoHQ";
/// Show all available releases for `snarkos`.
pub fn show_available_releases() -> Result<String, UpdaterError> {
let releases = github::ReleaseList::configure()
.repo_owner(Self::SNARKOS_REPO_OWNER)
.repo_name(Self::SNARKOS_REPO_NAME)
.build()?
.fetch()?;
let mut output = "List of available versions\n".to_string();
for release in releases {
output += &format!(" * {}\n", release.version);
}
Ok(output)
}
/// Update `snarkOS` to the specified release.
pub fn update_to_release(show_output: bool, version: Option<String>) -> Result<Status, UpdaterError> {
let mut update_builder = github::Update::configure();
update_builder
.repo_owner(Self::SNARKOS_REPO_OWNER)
.repo_name(Self::SNARKOS_REPO_NAME)
.bin_name(Self::SNARKOS_BIN_NAME)
.current_version(env!("CARGO_PKG_VERSION"))
.show_download_progress(show_output)
.no_confirm(true)
.show_output(show_output);
let status = match version {
None => update_builder.build()?.update()?,
Some(v) => update_builder.target_version_tag(&v).build()?.update()?,
};
Ok(status)
}
/// Check if there is an available update for `aleo` and return the newest release.
pub fn update_available() -> Result<String, UpdaterError> {
let updater = github::Update::configure()
.repo_owner(Self::SNARKOS_REPO_OWNER)
.repo_name(Self::SNARKOS_REPO_NAME)
.bin_name(Self::SNARKOS_BIN_NAME)
.current_version(env!("CARGO_PKG_VERSION"))
.build()?;
let current_version = updater.current_version();
let latest_release = updater.get_latest_release()?;
if bump_is_greater(¤t_version, &latest_release.version)? {
Ok(latest_release.version)
} else {
Err(UpdaterError::OldReleaseVersion(current_version, latest_release.version))
}
}
/// Display the CLI message.
pub fn print_cli() -> String {
if let Ok(latest_version) = Self::update_available() {
let mut output = "🟢 A new version is available! Run".bold().green().to_string();
output += &" `aleo update` ".bold().white();
output += &format!("to update to v{}.", latest_version).bold().green();
output
} else {
String::new()
}
}
}
#[derive(Debug, Error)]
pub enum UpdaterError {
#[error("{}: {}", _0, _1)]
Crate(&'static str, String),
#[error("The current version {} is more recent than the release version {}", _0, _1)]
OldReleaseVersion(String, String),
}
impl From<self_update::errors::Error> for UpdaterError {
fn from(error: self_update::errors::Error) -> Self {
UpdaterError::Crate("self_update", error.to_string())
}
}