mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* complete get_primary_url fn * complete clear_network_interfaces fn * formatting * complete remove_address fn * get_system_smtp wip * complete get_system_smtp and set_system_smtp * add SetSystemSmtpParams struct * add set_system_smtp subcommand * Remove 'Copy' implementation from `HostAddress` Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> * Refactor `get_host_primary` fn and clone resulting `HostAddress` Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> * misc fixes and debug info * seed hosts with a tor address --------- Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: Aiden McClelland <me@drbonez.dev>
134 lines
3.4 KiB
Rust
134 lines
3.4 KiB
Rust
use std::borrow::Borrow;
|
|
use std::str::FromStr;
|
|
|
|
use regex::Regex;
|
|
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
|
use yasi::InternedString;
|
|
|
|
mod action;
|
|
mod health_check;
|
|
mod host;
|
|
mod image;
|
|
mod invalid_id;
|
|
mod package;
|
|
mod service_interface;
|
|
mod volume;
|
|
|
|
pub use action::ActionId;
|
|
pub use health_check::HealthCheckId;
|
|
pub use host::HostId;
|
|
pub use image::ImageId;
|
|
pub use invalid_id::InvalidId;
|
|
pub use package::{PackageId, SYSTEM_PACKAGE_ID};
|
|
pub use service_interface::ServiceInterfaceId;
|
|
pub use volume::VolumeId;
|
|
|
|
lazy_static::lazy_static! {
|
|
static ref ID_REGEX: Regex = Regex::new("^[a-z]+(-[a-z]+)*$").unwrap();
|
|
pub static ref SYSTEM_ID: Id = Id(InternedString::intern("x_system"));
|
|
}
|
|
|
|
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
|
pub struct Id(InternedString);
|
|
impl std::fmt::Debug for Id {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
self.0.fmt(f)
|
|
}
|
|
}
|
|
impl TryFrom<InternedString> for Id {
|
|
type Error = InvalidId;
|
|
fn try_from(value: InternedString) -> Result<Self, Self::Error> {
|
|
if ID_REGEX.is_match(&value) {
|
|
Ok(Id(value))
|
|
} else {
|
|
Err(InvalidId)
|
|
}
|
|
}
|
|
}
|
|
impl TryFrom<String> for Id {
|
|
type Error = InvalidId;
|
|
fn try_from(value: String) -> Result<Self, Self::Error> {
|
|
if ID_REGEX.is_match(&value) {
|
|
Ok(Id(InternedString::intern(value)))
|
|
} else {
|
|
Err(InvalidId)
|
|
}
|
|
}
|
|
}
|
|
impl TryFrom<&str> for Id {
|
|
type Error = InvalidId;
|
|
fn try_from(value: &str) -> Result<Self, Self::Error> {
|
|
if ID_REGEX.is_match(value) {
|
|
Ok(Id(InternedString::intern(value)))
|
|
} else {
|
|
Err(InvalidId)
|
|
}
|
|
}
|
|
}
|
|
impl FromStr for Id {
|
|
type Err = InvalidId;
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
Self::try_from(s)
|
|
}
|
|
}
|
|
impl From<Id> for InternedString {
|
|
fn from(value: Id) -> Self {
|
|
value.0
|
|
}
|
|
}
|
|
impl std::ops::Deref for Id {
|
|
type Target = str;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
impl std::fmt::Display for Id {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "{}", &*self.0)
|
|
}
|
|
}
|
|
impl AsRef<str> for Id {
|
|
fn as_ref(&self) -> &str {
|
|
&self.0
|
|
}
|
|
}
|
|
impl Borrow<str> for Id {
|
|
fn borrow(&self) -> &str {
|
|
self.0.as_ref()
|
|
}
|
|
}
|
|
impl<'de> Deserialize<'de> for Id {
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
let unchecked: InternedString = Deserialize::deserialize(deserializer)?;
|
|
Id::try_from(unchecked).map_err(serde::de::Error::custom)
|
|
}
|
|
}
|
|
impl Serialize for Id {
|
|
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
|
|
where
|
|
Ser: Serializer,
|
|
{
|
|
serializer.serialize_str(self)
|
|
}
|
|
}
|
|
impl<'q> sqlx::Encode<'q, sqlx::Postgres> for Id {
|
|
fn encode_by_ref(
|
|
&self,
|
|
buf: &mut <sqlx::Postgres as sqlx::database::HasArguments<'q>>::ArgumentBuffer,
|
|
) -> sqlx::encode::IsNull {
|
|
<&str as sqlx::Encode<'q, sqlx::Postgres>>::encode_by_ref(&&**self, buf)
|
|
}
|
|
}
|
|
impl sqlx::Type<sqlx::Postgres> for Id {
|
|
fn type_info() -> sqlx::postgres::PgTypeInfo {
|
|
<&str as sqlx::Type<sqlx::Postgres>>::type_info()
|
|
}
|
|
|
|
fn compatible(ty: &sqlx::postgres::PgTypeInfo) -> bool {
|
|
<&str as sqlx::Type<sqlx::Postgres>>::compatible(ty)
|
|
}
|
|
}
|