// #![deny(missing_docs)] - TODO: bring this back before publishing 0.5 #[cfg(not(any(feature = "roblox", feature = "lune", feature = "luau")))] compile_error!("at least one of the features `roblox`, `lune`, or `luau` must be enabled"); use crate::lockfile::Lockfile; use std::path::{Path, PathBuf}; pub mod download; pub mod linking; pub mod lockfile; pub mod manifest; pub mod names; pub mod resolver; pub mod scripts; pub mod source; pub(crate) mod util; pub const MANIFEST_FILE_NAME: &str = "pesde.toml"; pub const LOCKFILE_FILE_NAME: &str = "pesde.lock"; pub const DEFAULT_INDEX_NAME: &str = "default"; pub const PACKAGES_CONTAINER_NAME: &str = ".pesde"; pub const MAX_ARCHIVE_SIZE: usize = 4 * 1024 * 1024; #[derive(Debug, Default, Clone)] pub struct AuthConfig { pesde_token: Option, git_credentials: Option, } impl AuthConfig { pub fn new() -> Self { AuthConfig::default() } pub fn pesde_token(&self) -> Option<&str> { self.pesde_token.as_deref() } pub fn git_credentials(&self) -> Option<&gix::sec::identity::Account> { self.git_credentials.as_ref() } pub fn with_pesde_token>(mut self, token: Option) -> Self { self.pesde_token = token.map(|s| s.as_ref().to_string()); self } pub fn with_git_credentials( mut self, git_credentials: Option, ) -> Self { self.git_credentials = git_credentials; self } } #[derive(Debug, Clone)] pub struct Project { path: PathBuf, data_dir: PathBuf, auth_config: AuthConfig, } impl Project { pub fn new, Q: AsRef>( path: P, data_dir: Q, auth_config: AuthConfig, ) -> Self { Project { path: path.as_ref().to_path_buf(), data_dir: data_dir.as_ref().to_path_buf(), auth_config, } } pub fn path(&self) -> &Path { &self.path } pub fn data_dir(&self) -> &Path { &self.data_dir } pub fn auth_config(&self) -> &AuthConfig { &self.auth_config } pub fn read_manifest(&self) -> Result, errors::ManifestReadError> { let bytes = std::fs::read(self.path.join(MANIFEST_FILE_NAME))?; Ok(bytes) } pub fn deser_manifest(&self) -> Result { let string = std::fs::read_to_string(self.path.join(MANIFEST_FILE_NAME))?; Ok(toml::from_str(&string)?) } pub fn write_manifest>(&self, manifest: S) -> Result<(), std::io::Error> { std::fs::write(self.path.join(MANIFEST_FILE_NAME), manifest.as_ref()) } pub fn deser_lockfile(&self) -> Result { let string = std::fs::read_to_string(self.path.join(LOCKFILE_FILE_NAME))?; Ok(toml::from_str(&string)?) } pub fn write_lockfile(&self, lockfile: Lockfile) -> Result<(), errors::LockfileWriteError> { let string = toml::to_string(&lockfile)?; std::fs::write(self.path.join(LOCKFILE_FILE_NAME), string)?; Ok(()) } } pub mod errors { use thiserror::Error; #[derive(Debug, Error)] #[non_exhaustive] pub enum ManifestReadError { #[error("io error reading manifest file")] Io(#[from] std::io::Error), #[error("error deserializing manifest file")] Serde(#[from] toml::de::Error), } #[derive(Debug, Error)] #[non_exhaustive] pub enum LockfileReadError { #[error("io error reading lockfile")] Io(#[from] std::io::Error), #[error("error deserializing lockfile")] Serde(#[from] toml::de::Error), } #[derive(Debug, Error)] #[non_exhaustive] pub enum LockfileWriteError { #[error("io error writing lockfile")] Io(#[from] std::io::Error), #[error("error serializing lockfile")] Serde(#[from] toml::ser::Error), } }