mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
217 lines
5.6 KiB
Rust
217 lines
5.6 KiB
Rust
use std::borrow::Borrow;
|
|
use std::path::{Path, PathBuf};
|
|
use std::str::FromStr;
|
|
|
|
use patch_db::HasModel;
|
|
use serde::{Deserialize, Serialize, Serializer};
|
|
use url::Url;
|
|
|
|
use crate::action::{ActionImplementation, Actions};
|
|
use crate::backup::BackupActions;
|
|
use crate::config::action::ConfigActions;
|
|
use crate::dependencies::Dependencies;
|
|
use crate::id::{Id, InvalidId, SYSTEM_ID};
|
|
use crate::migration::Migrations;
|
|
use crate::net::interface::Interfaces;
|
|
use crate::status::health_check::HealthChecks;
|
|
use crate::util::Version;
|
|
use crate::volume::Volumes;
|
|
|
|
pub const SYSTEM_PACKAGE_ID: PackageId<&'static str> = PackageId(SYSTEM_ID);
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
pub struct PackageId<S: AsRef<str> = String>(Id<S>);
|
|
impl<'a> PackageId<&'a str> {
|
|
pub fn owned(&self) -> PackageId {
|
|
PackageId(self.0.owned())
|
|
}
|
|
}
|
|
impl FromStr for PackageId {
|
|
type Err = InvalidId;
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
Ok(PackageId(Id::try_from(s.to_owned())?))
|
|
}
|
|
}
|
|
impl From<PackageId> for String {
|
|
fn from(value: PackageId) -> Self {
|
|
value.0.into()
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> From<Id<S>> for PackageId<S> {
|
|
fn from(id: Id<S>) -> Self {
|
|
PackageId(id)
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> std::ops::Deref for PackageId<S> {
|
|
type Target = S;
|
|
fn deref(&self) -> &Self::Target {
|
|
&*self.0
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> AsRef<PackageId<S>> for PackageId<S> {
|
|
fn as_ref(&self) -> &PackageId<S> {
|
|
self
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> std::fmt::Display for PackageId<S> {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "{}", &self.0)
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> AsRef<str> for PackageId<S> {
|
|
fn as_ref(&self) -> &str {
|
|
self.0.as_ref()
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> Borrow<str> for PackageId<S> {
|
|
fn borrow(&self) -> &str {
|
|
self.0.as_ref()
|
|
}
|
|
}
|
|
impl<S: AsRef<str>> AsRef<Path> for PackageId<S> {
|
|
fn as_ref(&self) -> &Path {
|
|
self.0.as_ref().as_ref()
|
|
}
|
|
}
|
|
impl<'de, S> Deserialize<'de> for PackageId<S>
|
|
where
|
|
S: AsRef<str>,
|
|
Id<S>: Deserialize<'de>,
|
|
{
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
where
|
|
D: serde::de::Deserializer<'de>,
|
|
{
|
|
Ok(PackageId(Deserialize::deserialize(deserializer)?))
|
|
}
|
|
}
|
|
impl<S> Serialize for PackageId<S>
|
|
where
|
|
S: AsRef<str>,
|
|
{
|
|
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
|
|
where
|
|
Ser: Serializer,
|
|
{
|
|
Serialize::serialize(&self.0, serializer)
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize, HasModel)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Manifest {
|
|
pub id: PackageId,
|
|
pub title: String,
|
|
pub version: Version,
|
|
pub description: Description,
|
|
#[serde(default)]
|
|
pub assets: Assets,
|
|
#[serde(default)]
|
|
pub build: Option<Vec<String>>,
|
|
pub release_notes: String,
|
|
pub license: String, // type of license
|
|
pub wrapper_repo: Url,
|
|
pub upstream_repo: Url,
|
|
pub support_site: Option<Url>,
|
|
pub marketing_site: Option<Url>,
|
|
pub donation_url: Option<Url>,
|
|
#[serde(default)]
|
|
pub alerts: Alerts,
|
|
#[model]
|
|
pub main: ActionImplementation,
|
|
pub health_checks: HealthChecks,
|
|
#[model]
|
|
pub config: Option<ConfigActions>,
|
|
#[model]
|
|
pub properties: Option<ActionImplementation>,
|
|
#[model]
|
|
pub volumes: Volumes,
|
|
// #[serde(default = "current_version")]
|
|
pub min_os_version: Version,
|
|
// #[serde(default)]
|
|
pub interfaces: Interfaces,
|
|
// #[serde(default)]
|
|
#[model]
|
|
pub backup: BackupActions,
|
|
#[serde(default)]
|
|
#[model]
|
|
pub migrations: Migrations,
|
|
#[serde(default)]
|
|
pub actions: Actions,
|
|
// #[serde(default)]
|
|
// pub permissions: Permissions,
|
|
#[serde(default)]
|
|
#[model]
|
|
pub dependencies: Dependencies,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Assets {
|
|
#[serde(default)]
|
|
pub license: Option<PathBuf>,
|
|
#[serde(default)]
|
|
pub instructions: Option<PathBuf>,
|
|
#[serde(default)]
|
|
pub icon: Option<PathBuf>,
|
|
#[serde(default)]
|
|
pub docker_images: Option<PathBuf>,
|
|
#[serde(default)]
|
|
pub assets: Option<PathBuf>,
|
|
}
|
|
impl Assets {
|
|
pub fn license_path(&self) -> &Path {
|
|
self.license
|
|
.as_ref()
|
|
.map(|a| a.as_path())
|
|
.unwrap_or(Path::new("LICENSE.md"))
|
|
}
|
|
pub fn instructions_path(&self) -> &Path {
|
|
self.instructions
|
|
.as_ref()
|
|
.map(|a| a.as_path())
|
|
.unwrap_or(Path::new("INSTRUCTIONS.md"))
|
|
}
|
|
pub fn icon_path(&self) -> &Path {
|
|
self.icon
|
|
.as_ref()
|
|
.map(|a| a.as_path())
|
|
.unwrap_or(Path::new("icon.png"))
|
|
}
|
|
pub fn icon_type(&self) -> &str {
|
|
self.icon
|
|
.as_ref()
|
|
.and_then(|icon| icon.extension())
|
|
.and_then(|ext| ext.to_str())
|
|
.unwrap_or("png")
|
|
}
|
|
pub fn docker_images_path(&self) -> &Path {
|
|
self.docker_images
|
|
.as_ref()
|
|
.map(|a| a.as_path())
|
|
.unwrap_or(Path::new("image.tar"))
|
|
}
|
|
pub fn assets_path(&self) -> &Path {
|
|
self.assets
|
|
.as_ref()
|
|
.map(|a| a.as_path())
|
|
.unwrap_or(Path::new("assets"))
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
pub struct Description {
|
|
pub short: String,
|
|
pub long: String,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Alerts {
|
|
pub install: Option<String>,
|
|
pub uninstall: Option<String>,
|
|
pub restore: Option<String>,
|
|
pub start: Option<String>,
|
|
pub stop: Option<String>,
|
|
}
|