mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 11:20:55 +01:00
Squashed commit of the following: commit5767042964
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Thu Jan 16 18:28:52 2025 +0100 fix(engines): correct engine detection on unix The `current_exe` function doesn't return the symlinked path on Unix, so the engine detection was failing there. This commit fixes that by using the 0th argument of the program to get the path of the executable on Unix. commitb51c9d9571
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Wed Jan 15 22:43:50 2025 +0100 refactor: print deprecated warning on CLI side Prints the deprecated warning on the CLI side which means it'll have a more consistent look with the rest of the CLI output. commit5ace844035
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Wed Jan 15 22:21:36 2025 +0100 feat: add alias validation Ensures aliases don't contain characters which could cause issues. They are now also forbidden from being the same as an engine name to avoid issues. commita33302aff9
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Wed Jan 15 21:23:40 2025 +0100 refactor: apply clippy lints commit2d534a534d
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Wed Jan 15 21:22:14 2025 +0100 feat(engines): print incompatibility warning for dependencies Adds a warning message when a dependency depends on an incompatible engine. commit4946a19f8b
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Wed Jan 15 18:33:38 2025 +0100 feat(engines): create linkers at install time Additionally fixes engines being executed as scripts, and fixes downloading pesde from GitHub. commite3177eeb75
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Tue Jan 14 14:33:26 2025 +0100 fix(engines): store & link engines correctly Fixes issues with how engines were stored which resulted in errors. Also makes outdated linkers get updated. commit037ead66bb
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Mon Jan 13 12:26:19 2025 +0100 docs: remove prerequisites commitddb496ff7d
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Mon Jan 13 12:25:53 2025 +0100 ci: remove tar builds commite9f0c25554
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Mon Jan 13 12:25:11 2025 +0100 chore(docs): update astro and starlight commitfc349e6f21
Author: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Sun Jan 12 23:12:27 2025 +0100 feat: add engines Adds the initial implementation of the engines feature. Not tested yet. Requires documentation and more work for non-pesde engines to be usable.
97 lines
2.8 KiB
Rust
97 lines
2.8 KiB
Rust
use crate::AuthConfig;
|
|
use gix::bstr::BStr;
|
|
use semver::Version;
|
|
use serde::{Deserialize, Deserializer, Serializer};
|
|
use sha2::{Digest, Sha256};
|
|
use std::collections::{BTreeMap, HashSet};
|
|
|
|
pub fn authenticate_conn(
|
|
conn: &mut gix::remote::Connection<
|
|
'_,
|
|
'_,
|
|
Box<dyn gix::protocol::transport::client::Transport + Send>,
|
|
>,
|
|
auth_config: &AuthConfig,
|
|
) {
|
|
if let Some(iden) = auth_config.git_credentials().cloned() {
|
|
conn.set_credentials(move |action| match action {
|
|
gix::credentials::helper::Action::Get(ctx) => {
|
|
Ok(Some(gix::credentials::protocol::Outcome {
|
|
identity: iden.clone(),
|
|
next: gix::credentials::helper::NextAction::from(ctx),
|
|
}))
|
|
}
|
|
gix::credentials::helper::Action::Store(_) => Ok(None),
|
|
gix::credentials::helper::Action::Erase(_) => Ok(None),
|
|
});
|
|
}
|
|
}
|
|
|
|
pub fn serialize_gix_url<S: Serializer>(url: &gix::Url, serializer: S) -> Result<S::Ok, S::Error> {
|
|
serializer.serialize_str(&url.to_bstring().to_string())
|
|
}
|
|
|
|
pub fn deserialize_gix_url<'de, D: Deserializer<'de>>(
|
|
deserializer: D,
|
|
) -> Result<gix::Url, D::Error> {
|
|
let s = String::deserialize(deserializer)?;
|
|
gix::Url::from_bytes(BStr::new(&s)).map_err(serde::de::Error::custom)
|
|
}
|
|
|
|
pub fn deserialize_gix_url_map<'de, D: Deserializer<'de>>(
|
|
deserializer: D,
|
|
) -> Result<BTreeMap<String, gix::Url>, D::Error> {
|
|
BTreeMap::<String, String>::deserialize(deserializer)?
|
|
.into_iter()
|
|
.map(|(k, v)| {
|
|
gix::Url::from_bytes(BStr::new(&v))
|
|
.map(|v| (k, v))
|
|
.map_err(serde::de::Error::custom)
|
|
})
|
|
.collect()
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub fn deserialize_gix_url_vec<'de, D: Deserializer<'de>>(
|
|
deserializer: D,
|
|
) -> Result<Vec<gix::Url>, D::Error> {
|
|
Vec::<String>::deserialize(deserializer)?
|
|
.into_iter()
|
|
.map(|v| gix::Url::from_bytes(BStr::new(&v)).map_err(serde::de::Error::custom))
|
|
.collect()
|
|
}
|
|
|
|
pub fn deserialize_gix_url_hashset<'de, D: Deserializer<'de>>(
|
|
deserializer: D,
|
|
) -> Result<HashSet<gix::Url>, D::Error> {
|
|
HashSet::<String>::deserialize(deserializer)?
|
|
.into_iter()
|
|
.map(|v| gix::Url::from_bytes(BStr::new(&v)).map_err(serde::de::Error::custom))
|
|
.collect()
|
|
}
|
|
|
|
pub fn deserialize_git_like_url<'de, D: Deserializer<'de>>(
|
|
deserializer: D,
|
|
) -> Result<gix::Url, D::Error> {
|
|
let s = String::deserialize(deserializer)?;
|
|
if s.contains(':') {
|
|
gix::Url::from_bytes(BStr::new(&s)).map_err(serde::de::Error::custom)
|
|
} else {
|
|
gix::Url::from_bytes(BStr::new(format!("https://github.com/{s}").as_bytes()))
|
|
.map_err(serde::de::Error::custom)
|
|
}
|
|
}
|
|
|
|
pub fn hash<S: AsRef<[u8]>>(struc: S) -> String {
|
|
format!("{:x}", Sha256::digest(struc.as_ref()))
|
|
}
|
|
|
|
pub fn is_default<T: Default + Eq>(t: &T) -> bool {
|
|
t == &T::default()
|
|
}
|
|
|
|
pub fn no_build_metadata(version: &Version) -> Version {
|
|
let mut version = version.clone();
|
|
version.build = semver::BuildMetadata::EMPTY;
|
|
version
|
|
}
|