Replaced git library with calls to git binary
This commit is contained in:
parent
a6dfe600e2
commit
a340997e68
@ -2,6 +2,5 @@
|
|||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="" vcs="Git" />
|
<mapping directory="" vcs="Git" />
|
||||||
<mapping directory="$PROJECT_DIR$/repo" vcs="Git" />
|
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
186
Cargo.lock
generated
186
Cargo.lock
generated
@ -2,27 +2,12 @@
|
|||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
version = 3
|
version = 3
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "autocfg"
|
|
||||||
version = "1.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitflags"
|
name = "bitflags"
|
||||||
version = "1.3.2"
|
version = "1.3.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "cc"
|
|
||||||
version = "1.0.78"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
|
|
||||||
dependencies = [
|
|
||||||
"jobserver",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cfg-if"
|
name = "cfg-if"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
@ -60,7 +45,6 @@ version = "0.1.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"dialoguer",
|
"dialoguer",
|
||||||
"fs_extra",
|
"fs_extra",
|
||||||
"git2",
|
|
||||||
"indicatif",
|
"indicatif",
|
||||||
"serde",
|
"serde",
|
||||||
"strum",
|
"strum",
|
||||||
@ -82,52 +66,18 @@ dependencies = [
|
|||||||
"instant",
|
"instant",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "form_urlencoded"
|
|
||||||
version = "1.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
|
||||||
dependencies = [
|
|
||||||
"percent-encoding",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fs_extra"
|
name = "fs_extra"
|
||||||
version = "1.2.0"
|
version = "1.2.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
|
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "git2"
|
|
||||||
version = "0.16.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "be36bc9e0546df253c0cc41fd0af34f5e92845ad8509462ec76672fac6997f5b"
|
|
||||||
dependencies = [
|
|
||||||
"bitflags",
|
|
||||||
"libc",
|
|
||||||
"libgit2-sys",
|
|
||||||
"log",
|
|
||||||
"openssl-probe",
|
|
||||||
"openssl-sys",
|
|
||||||
"url",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "heck"
|
name = "heck"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "idna"
|
|
||||||
version = "0.3.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
|
||||||
dependencies = [
|
|
||||||
"unicode-bidi",
|
|
||||||
"unicode-normalization",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "indicatif"
|
name = "indicatif"
|
||||||
version = "0.17.3"
|
version = "0.17.3"
|
||||||
@ -149,15 +99,6 @@ dependencies = [
|
|||||||
"cfg-if",
|
"cfg-if",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "jobserver"
|
|
||||||
version = "0.1.25"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lazy_static"
|
name = "lazy_static"
|
||||||
version = "1.4.0"
|
version = "1.4.0"
|
||||||
@ -170,92 +111,12 @@ version = "0.2.139"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
|
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libgit2-sys"
|
|
||||||
version = "0.14.1+1.5.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "4a07fb2692bc3593bda59de45a502bb3071659f2c515e28c71e728306b038e17"
|
|
||||||
dependencies = [
|
|
||||||
"cc",
|
|
||||||
"libc",
|
|
||||||
"libssh2-sys",
|
|
||||||
"libz-sys",
|
|
||||||
"openssl-sys",
|
|
||||||
"pkg-config",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libssh2-sys"
|
|
||||||
version = "0.2.23"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca"
|
|
||||||
dependencies = [
|
|
||||||
"cc",
|
|
||||||
"libc",
|
|
||||||
"libz-sys",
|
|
||||||
"openssl-sys",
|
|
||||||
"pkg-config",
|
|
||||||
"vcpkg",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libz-sys"
|
|
||||||
version = "1.1.8"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
|
|
||||||
dependencies = [
|
|
||||||
"cc",
|
|
||||||
"libc",
|
|
||||||
"pkg-config",
|
|
||||||
"vcpkg",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "log"
|
|
||||||
version = "0.4.17"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "number_prefix"
|
name = "number_prefix"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "openssl-probe"
|
|
||||||
version = "0.1.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "openssl-sys"
|
|
||||||
version = "0.9.80"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
|
|
||||||
dependencies = [
|
|
||||||
"autocfg",
|
|
||||||
"cc",
|
|
||||||
"libc",
|
|
||||||
"pkg-config",
|
|
||||||
"vcpkg",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "percent-encoding"
|
|
||||||
version = "2.2.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "pkg-config"
|
|
||||||
version = "0.3.26"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "portable-atomic"
|
name = "portable-atomic"
|
||||||
version = "0.3.19"
|
version = "0.3.19"
|
||||||
@ -377,21 +238,6 @@ dependencies = [
|
|||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "tinyvec"
|
|
||||||
version = "1.6.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
||||||
dependencies = [
|
|
||||||
"tinyvec_macros",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "tinyvec_macros"
|
|
||||||
version = "0.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "toml"
|
name = "toml"
|
||||||
version = "0.5.11"
|
version = "0.5.11"
|
||||||
@ -401,50 +247,18 @@ dependencies = [
|
|||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "unicode-bidi"
|
|
||||||
version = "0.3.9"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "0046be40136ef78dc325e0edefccf84ccddacd0afcc1ca54103fa3c61bbdab1d"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-ident"
|
name = "unicode-ident"
|
||||||
version = "1.0.6"
|
version = "1.0.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
|
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "unicode-normalization"
|
|
||||||
version = "0.1.22"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
|
||||||
dependencies = [
|
|
||||||
"tinyvec",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-width"
|
name = "unicode-width"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "url"
|
|
||||||
version = "2.3.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
|
||||||
dependencies = [
|
|
||||||
"form_urlencoded",
|
|
||||||
"idna",
|
|
||||||
"percent-encoding",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "vcpkg"
|
|
||||||
version = "0.2.15"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "winapi"
|
name = "winapi"
|
||||||
version = "0.3.9"
|
version = "0.3.9"
|
||||||
|
@ -8,7 +8,6 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
dialoguer = "0.10.3"
|
dialoguer = "0.10.3"
|
||||||
indicatif = "0.17.3"
|
indicatif = "0.17.3"
|
||||||
git2 = "0.16.0"
|
|
||||||
strum = { version = "0.24.1", features = ["derive"] }
|
strum = { version = "0.24.1", features = ["derive"] }
|
||||||
serde = { version = "1.0.152", features = ["derive"] }
|
serde = { version = "1.0.152", features = ["derive"] }
|
||||||
toml = "0.5.10"
|
toml = "0.5.10"
|
||||||
|
24
src/main.rs
24
src/main.rs
@ -10,6 +10,7 @@ use strum::{EnumIter, IntoEnumIterator};
|
|||||||
enum MainMenu {
|
enum MainMenu {
|
||||||
Install,
|
Install,
|
||||||
Collect,
|
Collect,
|
||||||
|
Pull,
|
||||||
Diff,
|
Diff,
|
||||||
Upload,
|
Upload,
|
||||||
Quit
|
Quit
|
||||||
@ -18,8 +19,9 @@ enum MainMenu {
|
|||||||
impl ToString for MainMenu {
|
impl ToString for MainMenu {
|
||||||
fn to_string(&self) -> String {
|
fn to_string(&self) -> String {
|
||||||
match self {
|
match self {
|
||||||
MainMenu::Install => "Pull and install files",
|
MainMenu::Install => "Install files",
|
||||||
MainMenu::Collect => "Collect files",
|
MainMenu::Collect => "Collect files",
|
||||||
|
MainMenu::Pull => "Pull from git",
|
||||||
MainMenu::Diff => "View git diff",
|
MainMenu::Diff => "View git diff",
|
||||||
MainMenu::Upload => "(Commit) and push to git",
|
MainMenu::Upload => "(Commit) and push to git",
|
||||||
MainMenu::Quit => "Exit"
|
MainMenu::Quit => "Exit"
|
||||||
@ -28,14 +30,10 @@ impl ToString for MainMenu {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let repo = match repository::open_repo() {
|
if !repository::open_repo() {
|
||||||
Ok(v) => v,
|
|
||||||
Err(err) => {
|
|
||||||
println!("Failed to open/clone repo!");
|
println!("Failed to open/clone repo!");
|
||||||
println!("{}", err);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
||||||
if !std::path::Path::new("repo/mod.toml").exists() {
|
if !std::path::Path::new("repo/mod.toml").exists() {
|
||||||
println!("'mod.toml' doesn't exist!");
|
println!("'mod.toml' doesn't exist!");
|
||||||
@ -54,17 +52,11 @@ fn main() {
|
|||||||
'main_loop: loop {
|
'main_loop: loop {
|
||||||
let res = prompt::select(Some("What do you want to do?"), MainMenu::iter().collect());
|
let res = prompt::select(Some("What do you want to do?"), MainMenu::iter().collect());
|
||||||
match res {
|
match res {
|
||||||
MainMenu::Install => {
|
MainMenu::Install => operations::install(&mods),
|
||||||
if let Err(err) = repository::pull_repo(&repo) {
|
|
||||||
println!("Failed to pull repo!");
|
|
||||||
println!("{}", err);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
operations::install(&mods);
|
|
||||||
},
|
|
||||||
MainMenu::Collect => operations::collect(&mods),
|
MainMenu::Collect => operations::collect(&mods),
|
||||||
MainMenu::Diff => { std::process::Command::new("git").arg("diff").current_dir("repo").spawn().unwrap().wait().unwrap(); },
|
MainMenu::Pull => repository::pull_repo(),
|
||||||
MainMenu::Upload => operations::upload(&repo),
|
MainMenu::Diff => repository::diff(),
|
||||||
|
MainMenu::Upload => operations::upload(),
|
||||||
MainMenu::Quit => break 'main_loop
|
MainMenu::Quit => break 'main_loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -104,10 +104,15 @@ pub fn collect(config: &ModToml) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn upload(repo: &git2::Repository) {
|
pub fn upload() {
|
||||||
if !crate::repository::is_clean(repo) {
|
if !crate::repository::is_clean() {
|
||||||
let msg = crate::prompt::input("Commit message");
|
let msg = crate::prompt::input("Commit message");
|
||||||
crate::repository::commit_changes(repo, msg);
|
if !crate::repository::commit_changes(&msg) {
|
||||||
|
println!("Failed to commit");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !crate::repository::push_repo() {
|
||||||
|
println!("Failed to push to origin");
|
||||||
}
|
}
|
||||||
crate::repository::push_repo(repo).expect("Failed to push to origin");
|
|
||||||
}
|
}
|
||||||
|
@ -1,131 +1,90 @@
|
|||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use git2::Repository;
|
use std::process::{Command, ExitStatus};
|
||||||
|
use std::io::Result;
|
||||||
|
|
||||||
fn generate_callbacks(use_ssh_agent: bool, pb: &mut indicatif::ProgressBar) -> git2::RemoteCallbacks {
|
trait HadSuccess {
|
||||||
let mut callbacks = git2::RemoteCallbacks::new();
|
fn success(self) -> bool;
|
||||||
|
|
||||||
if use_ssh_agent {
|
|
||||||
callbacks.credentials(|_, username, _| git2::Cred::ssh_key_from_agent(username.unwrap()));
|
|
||||||
} else {
|
|
||||||
callbacks.credentials(|_, username, _| git2::Cred::ssh_key(
|
|
||||||
username.unwrap(),
|
|
||||||
None,
|
|
||||||
Path::new(&format!("{}/.ssh/id_rsa", std::env::var("HOME").unwrap_or_default())),
|
|
||||||
None
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
callbacks.transfer_progress(|progress| {
|
impl HadSuccess for Result<ExitStatus> {
|
||||||
if progress.total_deltas() == 0 {
|
fn success(self) -> bool {
|
||||||
pb.set_length(progress.total_objects().max(1) as u64);
|
self.map_or(false, |status| status.success())
|
||||||
pb.set_position(progress.received_objects() as u64);
|
|
||||||
pb.set_message("Receiving objects");
|
|
||||||
} else {
|
|
||||||
pb.set_length(progress.total_deltas().max(1) as u64);
|
|
||||||
pb.set_position(progress.total_objects() as u64);
|
|
||||||
pb.set_message("Resolving deltas");
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl HadSuccess for &mut Command {
|
||||||
|
fn success(self) -> bool {
|
||||||
|
self.status().success()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! git {
|
||||||
|
() => { Command::new("git").current_dir(Path::new("repo")) };
|
||||||
|
([], $arg:expr) => { git!().arg($arg) };
|
||||||
|
([], $arg:expr, $($args:expr),+) => { git!([], $($args),+).arg($arg) };
|
||||||
|
([$first:expr $(, $rest:expr)*], $($reversed:expr),*) => { git!([$($rest),*], $first $(, $reversed)*) };
|
||||||
|
($($args:expr),+) => { git!([$($args),+],) };
|
||||||
|
}
|
||||||
|
|
||||||
|
fn check_or_set_config(key: &str, value: &str) -> bool {
|
||||||
|
if let Ok(status) = git!("config", "--local", "--get", key).status() {
|
||||||
|
if status.success() {
|
||||||
true
|
true
|
||||||
});
|
} else if status.code().unwrap_or(2) == 1 {
|
||||||
callbacks.push_transfer_progress(|cur, tot, _| {
|
git!("config", "--local", key, value).success()
|
||||||
pb.set_length(tot.max(1) as u64);
|
} else {
|
||||||
pb.set_position(cur as u64);
|
false
|
||||||
});
|
}
|
||||||
|
} else {
|
||||||
callbacks
|
false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn _clone_repo(callbacks: git2::RemoteCallbacks) -> Result<Repository, git2::Error> {
|
fn check_config() -> bool {
|
||||||
let mut fo = git2::FetchOptions::new();
|
check_or_set_config("user.name", "Mutzi")
|
||||||
fo.remote_callbacks(callbacks);
|
&& check_or_set_config("user.email", "root@mattv.de")
|
||||||
|
|
||||||
let mut builder = git2::build::RepoBuilder::new();
|
|
||||||
builder.fetch_options(fo);
|
|
||||||
|
|
||||||
builder.clone(
|
|
||||||
"git@ssh.gitlab.mattv.de:root/dotfiles.git",
|
|
||||||
Path::new("repo")
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn clone_repo() -> Result<Repository, git2::Error> {
|
fn clone_repo() -> bool {
|
||||||
println!("Cloning repo...");
|
println!("Cloning repo...");
|
||||||
let mut pb = indicatif::ProgressBar::new(1);
|
if !Path::new("repo").exists() { std::fs::create_dir("repo").unwrap(); }
|
||||||
pb.set_style(indicatif::ProgressStyle::with_template("{spinner} [{wide_bar}] {pos:>7}/{len:7} {msg}").unwrap().progress_chars("#>-"));
|
git!("clone", "git@ssh.gitlab.mattv.de:root/dotfiles.git", ".").success()
|
||||||
_clone_repo(generate_callbacks(true, &mut pb))
|
&& check_config()
|
||||||
.or_else(|_| _clone_repo(generate_callbacks(false, &mut pb)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn _pull_repo(repo: &Repository, callbacks: git2::RemoteCallbacks) -> Result<(), git2::Error> {
|
pub fn pull_repo() {
|
||||||
let mut fo = git2::FetchOptions::new();
|
|
||||||
fo.remote_callbacks(callbacks);
|
|
||||||
|
|
||||||
let mut co = git2::build::CheckoutBuilder::new();
|
|
||||||
co.force();
|
|
||||||
|
|
||||||
repo.find_remote("origin").unwrap().fetch(&["main"], Some(&mut fo), None)?;
|
|
||||||
|
|
||||||
let mut commits = vec![];
|
|
||||||
repo.fetchhead_foreach(|name, url, oid, was_merge| if was_merge { commits.push(repo.annotated_commit_from_fetchhead(name, &String::from_utf8_lossy(url), oid)); true} else { true })?;
|
|
||||||
let commits = commits.into_iter().collect::<Result<Vec<_>, git2::Error>>()?;
|
|
||||||
if commits.is_empty() {
|
|
||||||
panic!("Failed to get heads from origin!");
|
|
||||||
}
|
|
||||||
|
|
||||||
repo.merge(commits.iter().collect::<Vec<_>>().as_slice(), None, Some(&mut co))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn pull_repo(repo: &Repository) -> Result<(), git2::Error> {
|
|
||||||
println!("Pulling repo...");
|
println!("Pulling repo...");
|
||||||
let mut pb = indicatif::ProgressBar::new(1);
|
git!("pull").success();
|
||||||
pb.set_style(indicatif::ProgressStyle::with_template("{spinner} [{wide_bar}] {pos:>7}/{len:7} {msg}").unwrap().progress_chars("#>-"));
|
|
||||||
_pull_repo(repo, generate_callbacks(true, &mut pb))
|
|
||||||
.or_else(|_| _pull_repo(repo, generate_callbacks(false, &mut pb)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn _push_repo(repo: &Repository, callbacks: git2::RemoteCallbacks) -> Result<(), git2::Error> {
|
pub fn push_repo() -> bool {
|
||||||
let mut pu = git2::PushOptions::new();
|
|
||||||
pu.remote_callbacks(callbacks);
|
|
||||||
|
|
||||||
let mut remote = repo.find_remote("origin").unwrap();
|
|
||||||
|
|
||||||
remote.push::<&str>(&["refs/heads/main:refs/heads/main"], Some(&mut pu))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn push_repo(repo: &Repository) -> Result<(), git2::Error> {
|
|
||||||
println!("Pushing repo...");
|
println!("Pushing repo...");
|
||||||
let mut pb = indicatif::ProgressBar::new(1);
|
git!("push").success()
|
||||||
pb.set_style(indicatif::ProgressStyle::with_template("{spinner} [{wide_bar}] {bytes}/{total_bytes} {msg}").unwrap().progress_chars("#>-"));
|
|
||||||
_push_repo(repo, generate_callbacks(true, &mut pb))
|
|
||||||
.or_else(|_| _push_repo(repo, generate_callbacks(false, &mut pb)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn open_repo() -> Result<Repository, String> {
|
pub fn open_repo() -> bool {
|
||||||
Repository::open("repo")
|
Path::new("repo/.git").exists() || clone_repo()
|
||||||
.or_else(|_| clone_repo())
|
|
||||||
.map_err(|e| e.message().to_string())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn is_clean(repo: &Repository) -> bool {
|
pub fn is_clean() -> bool {
|
||||||
let mut so = git2::StatusOptions::new();
|
if let Ok(output) = git!("status", "--porcelain").output() {
|
||||||
so.show(git2::StatusShow::IndexAndWorkdir);
|
if output.status.success() {
|
||||||
so.include_untracked(true);
|
output.stdout.is_empty()
|
||||||
so.include_ignored(false);
|
} else {
|
||||||
so.include_unmodified(false);
|
println!("Failed to get status:\n{}", String::from_utf8(output.stderr).unwrap());
|
||||||
|
false
|
||||||
repo.statuses(Some(&mut so)).map_or(false, |s| s.is_empty())
|
}
|
||||||
|
} else {
|
||||||
|
println!("Failed to get status");
|
||||||
|
false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn commit_changes(repo: &Repository, msg: String) {
|
pub fn commit_changes(msg: &str) -> bool {
|
||||||
let sig = git2::Signature::now("Mutzi", "root@mattv.de").unwrap();
|
git!("add", ".").success()
|
||||||
|
&& git!("commit", "-m", msg).success()
|
||||||
let mut index = repo.index().unwrap();
|
}
|
||||||
index.add_all(["*"], git2::IndexAddOption::DEFAULT, None).unwrap();
|
|
||||||
|
pub fn diff() {
|
||||||
let tree_id = index.write_tree().unwrap();
|
git!("diff").success();
|
||||||
let tree = repo.find_tree(tree_id).unwrap();
|
|
||||||
let parent_id = repo.refname_to_id("HEAD").unwrap();
|
|
||||||
let parent = repo.find_commit(parent_id).unwrap();
|
|
||||||
|
|
||||||
repo.commit(Some("HEAD"), &sig, &sig, msg.as_str(), &tree, &[&parent]).unwrap();
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user