#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::place_wisp::settings;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct CustomHeader<'a> {
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub path: Option<CowStr<'a>>,
#[serde(borrow)]
pub value: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "place.wisp.settings", tag = "$type")]
pub struct Settings<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_settings_clean_urls")]
pub clean_urls: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub custom404: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_settings_directory_listing")]
pub directory_listing: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub headers: Option<Vec<settings::CustomHeader<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub index_files: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub spa_mode: Option<CowStr<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SettingsGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Settings<'a>,
}
impl<'a> Settings<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, SettingsRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
impl<'a> LexiconSchema for CustomHeader<'a> {
fn nsid() -> &'static str {
"place.wisp.settings"
}
fn def_name() -> &'static str {
"customHeader"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_wisp_settings()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 100usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.path {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("path"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.value;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("value"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SettingsRecord;
impl XrpcResp for SettingsRecord {
const NSID: &'static str = "place.wisp.settings";
const ENCODING: &'static str = "application/json";
type Output<'de> = SettingsGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<SettingsGetRecordOutput<'_>> for Settings<'_> {
fn from(output: SettingsGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Settings<'_> {
const NSID: &'static str = "place.wisp.settings";
type Record = SettingsRecord;
}
impl Collection for SettingsRecord {
const NSID: &'static str = "place.wisp.settings";
type Record = SettingsRecord;
}
impl<'a> LexiconSchema for Settings<'a> {
fn nsid() -> &'static str {
"place.wisp.settings"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_wisp_settings()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.custom404 {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("custom404"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.headers {
#[allow(unused_comparisons)]
if value.len() > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("headers"),
max: 50usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.index_files {
#[allow(unused_comparisons)]
if value.len() > 10usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("index_files"),
max: 10usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.spa_mode {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("spa_mode"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn lexicon_doc_place_wisp_settings() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("place.wisp.settings"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("customHeader"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("Custom HTTP header configuration"),
),
required: Some(
vec![SmolStr::new_static("name"), SmolStr::new_static("value")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"HTTP header name (e.g., 'Cache-Control', 'X-Frame-Options')",
),
),
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("path"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional glob pattern to apply this header to specific paths (e.g., '*.html', '/assets/*'). If not specified, applies to all paths.",
),
),
max_length: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("HTTP header value")),
max_length: Some(1000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Configuration settings for a static site hosted on wisp.place",
),
),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cleanUrls"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("custom404"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Custom 404 error page file path. Incompatible with directoryListing and spaMode.",
),
),
max_length: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("directoryListing"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("headers"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Custom HTTP headers to set on responses",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#customHeader"),
..Default::default()
}),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexFiles"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Ordered list of files to try when serving a directory. Defaults to ['index.html'] if not specified.",
),
),
items: LexArrayItem::String(LexString {
max_length: Some(255usize),
..Default::default()
}),
max_length: Some(10usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("spaMode"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"File to serve for all routes (e.g., 'index.html'). When set, enables SPA mode where all non-file requests are routed to this file. Incompatible with directoryListing and custom404.",
),
),
max_length: Some(500usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn _default_settings_clean_urls() -> Option<bool> {
Some(false)
}
fn _default_settings_directory_listing() -> Option<bool> {
Some(false)
}
impl Default for Settings<'_> {
fn default() -> Self {
Self {
clean_urls: Some(false),
custom404: None,
directory_listing: Some(false),
headers: None,
index_files: None,
spa_mode: None,
extra_data: Default::default(),
}
}
}
pub mod settings_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct SettingsBuilder<'a, S: settings_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<bool>,
Option<CowStr<'a>>,
Option<bool>,
Option<Vec<settings::CustomHeader<'a>>>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Settings<'a> {
pub fn new() -> SettingsBuilder<'a, settings_state::Empty> {
SettingsBuilder::new()
}
}
impl<'a> SettingsBuilder<'a, settings_state::Empty> {
pub fn new() -> Self {
SettingsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn clean_urls(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_clean_urls(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn custom404(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_custom404(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn directory_listing(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_directory_listing(mut self, value: Option<bool>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn headers(
mut self,
value: impl Into<Option<Vec<settings::CustomHeader<'a>>>>,
) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_headers(
mut self,
value: Option<Vec<settings::CustomHeader<'a>>>,
) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn index_files(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_index_files(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn spa_mode(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_spa_mode(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> SettingsBuilder<'a, S>
where
S: settings_state::State,
{
pub fn build(self) -> Settings<'a> {
Settings {
clean_urls: self._fields.0.or_else(|| Some(false)),
custom404: self._fields.1,
directory_listing: self._fields.2.or_else(|| Some(false)),
headers: self._fields.3,
index_files: self._fields.4,
spa_mode: self._fields.5,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Settings<'a> {
Settings {
clean_urls: self._fields.0.or_else(|| Some(false)),
custom404: self._fields.1,
directory_listing: self._fields.2.or_else(|| Some(false)),
headers: self._fields.3,
index_files: self._fields.4,
spa_mode: self._fields.5,
extra_data: Some(extra_data),
}
}
}