-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
215 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
// MIT License | ||
// | ||
// Copyright (c) 2023 Astral Software Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
|
||
use std::fmt::Write; | ||
|
||
use anyhow::Result; | ||
use axoupdater::{AxoUpdater, AxoupdateError, UpdateRequest}; | ||
use owo_colors::OwoColorize; | ||
use tracing::debug; | ||
|
||
use crate::cli::ExitStatus; | ||
use crate::printer::Printer; | ||
|
||
/// Attempt to update the pre-commit-rs binary. | ||
pub(crate) async fn self_update( | ||
version: Option<String>, | ||
token: Option<String>, | ||
printer: Printer, | ||
) -> Result<ExitStatus> { | ||
let mut updater = AxoUpdater::new_for("pre-commit-rs"); | ||
updater.disable_installer_output(); | ||
|
||
if let Some(ref token) = token { | ||
updater.set_github_token(token); | ||
} | ||
|
||
// Load the "install receipt" for the current binary. If the receipt is not found, then | ||
// pre-commit-rs was likely installed via a package manager. | ||
let Ok(updater) = updater.load_receipt() else { | ||
debug!("no receipt found; assuming pre-commit-rs was installed via a package manager"); | ||
writeln!( | ||
printer.stderr(), | ||
"{}", | ||
format_args!( | ||
concat!( | ||
"{}{} Self-update is only available for pre-commit-rs binaries installed via the standalone installation scripts.", | ||
"\n", | ||
"\n", | ||
"If you installed pre-commit-rs with pip, brew, or another package manager, update pre-commit-rs with `pip install --upgrade`, `brew upgrade`, or similar." | ||
), | ||
"warning".yellow().bold(), | ||
":".bold() | ||
) | ||
)?; | ||
return Ok(ExitStatus::Error); | ||
}; | ||
|
||
// Ensure the receipt is for the current binary. If it's not, then the user likely has multiple | ||
// pre-commit-rs binaries installed, and the current binary was _not_ installed via the standalone | ||
// installation scripts. | ||
if !updater.check_receipt_is_for_this_executable()? { | ||
debug!( | ||
"receipt is not for this executable; assuming pre-commit-rs was installed via a package manager" | ||
); | ||
writeln!( | ||
printer.stderr(), | ||
"{}", | ||
format_args!( | ||
concat!( | ||
"{}{} Self-update is only available for pre-commit-rs binaries installed via the standalone installation scripts.", | ||
"\n", | ||
"\n", | ||
"If you installed pre-commit-rs with pip, brew, or another package manager, update pre-commit-rs with `pip install --upgrade`, `brew upgrade`, or similar." | ||
), | ||
"warning".yellow().bold(), | ||
":".bold() | ||
) | ||
)?; | ||
return Ok(ExitStatus::Error); | ||
} | ||
|
||
writeln!( | ||
printer.stderr(), | ||
"{}", | ||
format_args!( | ||
"{}{} Checking for updates...", | ||
"info".cyan().bold(), | ||
":".bold() | ||
) | ||
)?; | ||
|
||
let update_request = if let Some(version) = version { | ||
UpdateRequest::SpecificTag(version) | ||
} else { | ||
UpdateRequest::Latest | ||
}; | ||
|
||
updater.configure_version_specifier(update_request); | ||
|
||
// Run the updater. This involves a network request, since we need to determine the latest | ||
// available version of pre-commit-rs. | ||
match updater.run().await { | ||
Ok(Some(result)) => { | ||
let version_information = if let Some(old_version) = result.old_version { | ||
format!( | ||
"from {} to {}", | ||
format!("v{old_version}").bold().white(), | ||
format!("v{}", result.new_version).bold().white(), | ||
) | ||
} else { | ||
format!("to {}", format!("v{}", result.new_version).bold().white()) | ||
}; | ||
|
||
writeln!( | ||
printer.stderr(), | ||
"{}", | ||
format_args!( | ||
"{}{} Upgraded pre-commit-rs {}! {}", | ||
"success".green().bold(), | ||
":".bold(), | ||
version_information, | ||
format!( | ||
"https://github.com/j178/pre-commit-rs/releases/tag/{}", | ||
result.new_version_tag | ||
) | ||
.cyan() | ||
) | ||
)?; | ||
} | ||
Ok(None) => { | ||
writeln!( | ||
printer.stderr(), | ||
"{}", | ||
format_args!( | ||
"{}{} You're on the latest version of pre-commit-rs ({})", | ||
"success".green().bold(), | ||
":".bold(), | ||
format!("v{}", env!("CARGO_PKG_VERSION")).bold().white() | ||
) | ||
)?; | ||
} | ||
Err(err) => { | ||
return if let AxoupdateError::Reqwest(err) = err { | ||
if err.status() == Some(http::StatusCode::FORBIDDEN) && token.is_none() { | ||
writeln!( | ||
printer.stderr(), | ||
"{}", | ||
format_args!( | ||
"{}{} GitHub API rate limit exceeded. Please provide a GitHub token via the {} option.", | ||
"error".red().bold(), | ||
":".bold(), | ||
"`--token`".green().bold() | ||
) | ||
)?; | ||
Ok(ExitStatus::Error) | ||
} else { | ||
Err(err.into()) | ||
} | ||
} else { | ||
Err(err.into()) | ||
}; | ||
} | ||
} | ||
|
||
Ok(ExitStatus::Success) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters