jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: tools.ozone.safelink.addRule
//
// 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;
use jacquard_common::types::string::Did;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::tools_ozone::safelink::ActionType;
use crate::tools_ozone::safelink::Event;
use crate::tools_ozone::safelink::PatternType;
use crate::tools_ozone::safelink::ReasonType;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct AddRule<'a> {
    #[serde(borrow)]
    pub action: ActionType<'a>,
    ///Optional comment about the decision
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub comment: Option<CowStr<'a>>,
    ///Author DID. Only respected when using admin auth
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub created_by: Option<Did<'a>>,
    #[serde(borrow)]
    pub pattern: PatternType<'a>,
    #[serde(borrow)]
    pub reason: ReasonType<'a>,
    ///The URL or domain to apply the rule to
    #[serde(borrow)]
    pub url: CowStr<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct AddRuleOutput<'a> {
    #[serde(flatten)]
    #[serde(borrow)]
    pub value: Event<'a>,
}


#[open_union]
#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic,
    IntoStatic
)]

#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum AddRuleError<'a> {
    /// The provided URL is invalid
    #[serde(rename = "InvalidUrl")]
    InvalidUrl(Option<CowStr<'a>>),
    /// A rule for this URL/domain already exists
    #[serde(rename = "RuleAlreadyExists")]
    RuleAlreadyExists(Option<CowStr<'a>>),
}

impl core::fmt::Display for AddRuleError<'_> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::InvalidUrl(msg) => {
                write!(f, "InvalidUrl")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::RuleAlreadyExists(msg) => {
                write!(f, "RuleAlreadyExists")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// Response type for tools.ozone.safelink.addRule
pub struct AddRuleResponse;
impl jacquard_common::xrpc::XrpcResp for AddRuleResponse {
    const NSID: &'static str = "tools.ozone.safelink.addRule";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = AddRuleOutput<'de>;
    type Err<'de> = AddRuleError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for AddRule<'a> {
    const NSID: &'static str = "tools.ozone.safelink.addRule";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = AddRuleResponse;
}

/// Endpoint type for tools.ozone.safelink.addRule
pub struct AddRuleRequest;
impl jacquard_common::xrpc::XrpcEndpoint for AddRuleRequest {
    const PATH: &'static str = "/xrpc/tools.ozone.safelink.addRule";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = AddRule<'de>;
    type Response = AddRuleResponse;
}

pub mod add_rule_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 Url;
        type Action;
        type Reason;
        type Pattern;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Url = Unset;
        type Action = Unset;
        type Reason = Unset;
        type Pattern = Unset;
    }
    ///State transition - sets the `url` field to Set
    pub struct SetUrl<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetUrl<S> {}
    impl<S: State> State for SetUrl<S> {
        type Url = Set<members::url>;
        type Action = S::Action;
        type Reason = S::Reason;
        type Pattern = S::Pattern;
    }
    ///State transition - sets the `action` field to Set
    pub struct SetAction<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetAction<S> {}
    impl<S: State> State for SetAction<S> {
        type Url = S::Url;
        type Action = Set<members::action>;
        type Reason = S::Reason;
        type Pattern = S::Pattern;
    }
    ///State transition - sets the `reason` field to Set
    pub struct SetReason<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetReason<S> {}
    impl<S: State> State for SetReason<S> {
        type Url = S::Url;
        type Action = S::Action;
        type Reason = Set<members::reason>;
        type Pattern = S::Pattern;
    }
    ///State transition - sets the `pattern` field to Set
    pub struct SetPattern<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetPattern<S> {}
    impl<S: State> State for SetPattern<S> {
        type Url = S::Url;
        type Action = S::Action;
        type Reason = S::Reason;
        type Pattern = Set<members::pattern>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `url` field
        pub struct url(());
        ///Marker type for the `action` field
        pub struct action(());
        ///Marker type for the `reason` field
        pub struct reason(());
        ///Marker type for the `pattern` field
        pub struct pattern(());
    }
}

/// Builder for constructing an instance of this type
pub struct AddRuleBuilder<'a, S: add_rule_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<ActionType<'a>>,
        Option<CowStr<'a>>,
        Option<Did<'a>>,
        Option<PatternType<'a>>,
        Option<ReasonType<'a>>,
        Option<CowStr<'a>>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> AddRule<'a> {
    /// Create a new builder for this type
    pub fn new() -> AddRuleBuilder<'a, add_rule_state::Empty> {
        AddRuleBuilder::new()
    }
}

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

impl<'a, S> AddRuleBuilder<'a, S>
where
    S: add_rule_state::State,
    S::Action: add_rule_state::IsUnset,
{
    /// Set the `action` field (required)
    pub fn action(
        mut self,
        value: impl Into<ActionType<'a>>,
    ) -> AddRuleBuilder<'a, add_rule_state::SetAction<S>> {
        self._fields.0 = Option::Some(value.into());
        AddRuleBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: add_rule_state::State> AddRuleBuilder<'a, S> {
    /// Set the `comment` field (optional)
    pub fn comment(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `comment` field to an Option value (optional)
    pub fn maybe_comment(mut self, value: Option<CowStr<'a>>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<'a, S: add_rule_state::State> AddRuleBuilder<'a, S> {
    /// Set the `createdBy` field (optional)
    pub fn created_by(mut self, value: impl Into<Option<Did<'a>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `createdBy` field to an Option value (optional)
    pub fn maybe_created_by(mut self, value: Option<Did<'a>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S> AddRuleBuilder<'a, S>
where
    S: add_rule_state::State,
    S::Pattern: add_rule_state::IsUnset,
{
    /// Set the `pattern` field (required)
    pub fn pattern(
        mut self,
        value: impl Into<PatternType<'a>>,
    ) -> AddRuleBuilder<'a, add_rule_state::SetPattern<S>> {
        self._fields.3 = Option::Some(value.into());
        AddRuleBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> AddRuleBuilder<'a, S>
where
    S: add_rule_state::State,
    S::Reason: add_rule_state::IsUnset,
{
    /// Set the `reason` field (required)
    pub fn reason(
        mut self,
        value: impl Into<ReasonType<'a>>,
    ) -> AddRuleBuilder<'a, add_rule_state::SetReason<S>> {
        self._fields.4 = Option::Some(value.into());
        AddRuleBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> AddRuleBuilder<'a, S>
where
    S: add_rule_state::State,
    S::Url: add_rule_state::IsUnset,
{
    /// Set the `url` field (required)
    pub fn url(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> AddRuleBuilder<'a, add_rule_state::SetUrl<S>> {
        self._fields.5 = Option::Some(value.into());
        AddRuleBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> AddRuleBuilder<'a, S>
where
    S: add_rule_state::State,
    S::Url: add_rule_state::IsSet,
    S::Action: add_rule_state::IsSet,
    S::Reason: add_rule_state::IsSet,
    S::Pattern: add_rule_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> AddRule<'a> {
        AddRule {
            action: self._fields.0.unwrap(),
            comment: self._fields.1,
            created_by: self._fields.2,
            pattern: self._fields.3.unwrap(),
            reason: self._fields.4.unwrap(),
            url: self._fields.5.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>,
        >,
    ) -> AddRule<'a> {
        AddRule {
            action: self._fields.0.unwrap(),
            comment: self._fields.1,
            created_by: self._fields.2,
            pattern: self._fields.3.unwrap(),
            reason: self._fields.4.unwrap(),
            url: self._fields.5.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}