jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: place.stream.live.teleport
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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::{Did, AtUri, Cid, Datetime};
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};
/// Record defining a 'teleport', that is active during a certain time.

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "place.stream.live.teleport", tag = "$type")]
pub struct Teleport<'a> {
    ///The time limit in seconds for the teleport. If not set, the teleport is permanent. Must be at least 60 seconds, and no more than 32,400 seconds (9 hours).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub duration_seconds: Option<i64>,
    ///The time the teleport becomes active.
    pub starts_at: Datetime,
    ///The DID of the streamer to teleport to.
    #[serde(borrow)]
    pub streamer: Did<'a>,
}

/// Typed wrapper for GetRecord response with this collection's record type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TeleportGetRecordOutput<'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: Teleport<'a>,
}

impl<'a> Teleport<'a> {
    pub fn uri(
        uri: impl Into<CowStr<'a>>,
    ) -> Result<RecordUri<'a, TeleportRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
    }
}

/// Marker type for deserializing records from this collection.

#[derive(Debug, Serialize, Deserialize)]
pub struct TeleportRecord;
impl XrpcResp for TeleportRecord {
    const NSID: &'static str = "place.stream.live.teleport";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = TeleportGetRecordOutput<'de>;
    type Err<'de> = RecordError<'de>;
}

impl From<TeleportGetRecordOutput<'_>> for Teleport<'_> {
    fn from(output: TeleportGetRecordOutput<'_>) -> Self {
        use jacquard_common::IntoStatic;
        output.value.into_static()
    }
}

impl Collection for Teleport<'_> {
    const NSID: &'static str = "place.stream.live.teleport";
    type Record = TeleportRecord;
}

impl Collection for TeleportRecord {
    const NSID: &'static str = "place.stream.live.teleport";
    type Record = TeleportRecord;
}

impl<'a> LexiconSchema for Teleport<'a> {
    fn nsid() -> &'static str {
        "place.stream.live.teleport"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_place_stream_live_teleport()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        if let Some(ref value) = self.duration_seconds {
            if *value > 32400i64 {
                return Err(ConstraintError::Maximum {
                    path: ValidationPath::from_field("duration_seconds"),
                    max: 32400i64,
                    actual: *value,
                });
            }
        }
        if let Some(ref value) = self.duration_seconds {
            if *value < 60i64 {
                return Err(ConstraintError::Minimum {
                    path: ValidationPath::from_field("duration_seconds"),
                    min: 60i64,
                    actual: *value,
                });
            }
        }
        Ok(())
    }
}

pub mod teleport_state {

    pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type StartsAt;
        type Streamer;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type StartsAt = Unset;
        type Streamer = Unset;
    }
    ///State transition - sets the `starts_at` field to Set
    pub struct SetStartsAt<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetStartsAt<S> {}
    impl<S: State> State for SetStartsAt<S> {
        type StartsAt = Set<members::starts_at>;
        type Streamer = S::Streamer;
    }
    ///State transition - sets the `streamer` field to Set
    pub struct SetStreamer<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetStreamer<S> {}
    impl<S: State> State for SetStreamer<S> {
        type StartsAt = S::StartsAt;
        type Streamer = Set<members::streamer>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `starts_at` field
        pub struct starts_at(());
        ///Marker type for the `streamer` field
        pub struct streamer(());
    }
}

/// Builder for constructing an instance of this type
pub struct TeleportBuilder<'a, S: teleport_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<i64>, Option<Datetime>, Option<Did<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> Teleport<'a> {
    /// Create a new builder for this type
    pub fn new() -> TeleportBuilder<'a, teleport_state::Empty> {
        TeleportBuilder::new()
    }
}

impl<'a> TeleportBuilder<'a, teleport_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        TeleportBuilder {
            _state: PhantomData,
            _fields: (None, None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: teleport_state::State> TeleportBuilder<'a, S> {
    /// Set the `durationSeconds` field (optional)
    pub fn duration_seconds(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `durationSeconds` field to an Option value (optional)
    pub fn maybe_duration_seconds(mut self, value: Option<i64>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<'a, S> TeleportBuilder<'a, S>
where
    S: teleport_state::State,
    S::StartsAt: teleport_state::IsUnset,
{
    /// Set the `startsAt` field (required)
    pub fn starts_at(
        mut self,
        value: impl Into<Datetime>,
    ) -> TeleportBuilder<'a, teleport_state::SetStartsAt<S>> {
        self._fields.1 = Option::Some(value.into());
        TeleportBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> TeleportBuilder<'a, S>
where
    S: teleport_state::State,
    S::Streamer: teleport_state::IsUnset,
{
    /// Set the `streamer` field (required)
    pub fn streamer(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> TeleportBuilder<'a, teleport_state::SetStreamer<S>> {
        self._fields.2 = Option::Some(value.into());
        TeleportBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> TeleportBuilder<'a, S>
where
    S: teleport_state::State,
    S::StartsAt: teleport_state::IsSet,
    S::Streamer: teleport_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> Teleport<'a> {
        Teleport {
            duration_seconds: self._fields.0,
            starts_at: self._fields.1.unwrap(),
            streamer: self._fields.2.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> Teleport<'a> {
        Teleport {
            duration_seconds: self._fields.0,
            starts_at: self._fields.1.unwrap(),
            streamer: self._fields.2.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_place_stream_live_teleport() -> 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.stream.live.teleport"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(
                        CowStr::new_static(
                            "Record defining a 'teleport', that is active during a certain time.",
                        ),
                    ),
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(
                            vec![
                                SmolStr::new_static("streamer"),
                                SmolStr::new_static("startsAt")
                            ],
                        ),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("durationSeconds"),
                                LexObjectProperty::Integer(LexInteger {
                                    minimum: Some(60i64),
                                    maximum: Some(32400i64),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("startsAt"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static("The time the teleport becomes active."),
                                    ),
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("streamer"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static(
                                            "The DID of the streamer to teleport to.",
                                        ),
                                    ),
                                    format: Some(LexStringFormat::Did),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}