mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* refactor networking and account * add interfaces from manifest automatically * use nistp256 to satisfy firefox * use ed25519 if available * fix ip signing * fix SQL error * update prettytable to fix segfault * fix migration * fix migration * bump welcome-ack * add redirect if connecting to https over http * misc rebase fixes * fix compression * bump rustc version
39 lines
1.0 KiB
Rust
39 lines
1.0 KiB
Rust
use std::fmt::Debug;
|
|
use std::str::FromStr;
|
|
|
|
use serde::{Deserialize, Deserializer, Serialize};
|
|
|
|
use crate::{Id, InvalidId, PackageId, Version};
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize)]
|
|
pub struct ImageId(Id);
|
|
impl std::fmt::Display for ImageId {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "{}", &self.0)
|
|
}
|
|
}
|
|
impl ImageId {
|
|
pub fn for_package(&self, pkg_id: &PackageId, pkg_version: Option<&Version>) -> String {
|
|
format!(
|
|
"start9/{}/{}:{}",
|
|
pkg_id,
|
|
self.0,
|
|
pkg_version.map(|v| { v.as_str() }).unwrap_or("latest")
|
|
)
|
|
}
|
|
}
|
|
impl FromStr for ImageId {
|
|
type Err = InvalidId;
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
Ok(ImageId(Id::try_from(s.to_owned())?))
|
|
}
|
|
}
|
|
impl<'de> Deserialize<'de> for ImageId {
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
Ok(ImageId(Deserialize::deserialize(deserializer)?))
|
|
}
|
|
}
|