#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::{Did, Handle};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct CreateSession<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
pub allow_takendown: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub auth_factor_token: Option<CowStr<'a>>,
#[serde(borrow)]
pub identifier: CowStr<'a>,
#[serde(borrow)]
pub password: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateSessionOutput<'a> {
#[serde(borrow)]
pub access_jwt: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub active: Option<bool>,
#[serde(borrow)]
pub did: Did<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub did_doc: Option<Data<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub email: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub email_auth_factor: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub email_confirmed: Option<bool>,
#[serde(borrow)]
pub handle: Handle<'a>,
#[serde(borrow)]
pub refresh_jwt: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub status: Option<CreateSessionOutputStatus<'a>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum CreateSessionOutputStatus<'a> {
Takendown,
Suspended,
Deactivated,
Other(CowStr<'a>),
}
impl<'a> CreateSessionOutputStatus<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Takendown => "takendown",
Self::Suspended => "suspended",
Self::Deactivated => "deactivated",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for CreateSessionOutputStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"takendown" => Self::Takendown,
"suspended" => Self::Suspended,
"deactivated" => Self::Deactivated,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for CreateSessionOutputStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"takendown" => Self::Takendown,
"suspended" => Self::Suspended,
"deactivated" => Self::Deactivated,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for CreateSessionOutputStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for CreateSessionOutputStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for CreateSessionOutputStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for CreateSessionOutputStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for CreateSessionOutputStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for CreateSessionOutputStatus<'_> {
type Output = CreateSessionOutputStatus<'static>;
fn into_static(self) -> Self::Output {
match self {
CreateSessionOutputStatus::Takendown => CreateSessionOutputStatus::Takendown,
CreateSessionOutputStatus::Suspended => CreateSessionOutputStatus::Suspended,
CreateSessionOutputStatus::Deactivated => {
CreateSessionOutputStatus::Deactivated
}
CreateSessionOutputStatus::Other(v) => {
CreateSessionOutputStatus::Other(v.into_static())
}
}
}
}
#[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 CreateSessionError<'a> {
#[serde(rename = "AccountTakedown")]
AccountTakedown(Option<CowStr<'a>>),
#[serde(rename = "AuthFactorTokenRequired")]
AuthFactorTokenRequired(Option<CowStr<'a>>),
}
impl core::fmt::Display for CreateSessionError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::AccountTakedown(msg) => {
write!(f, "AccountTakedown")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::AuthFactorTokenRequired(msg) => {
write!(f, "AuthFactorTokenRequired")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct CreateSessionResponse;
impl jacquard_common::xrpc::XrpcResp for CreateSessionResponse {
const NSID: &'static str = "com.atproto.server.createSession";
const ENCODING: &'static str = "application/json";
type Output<'de> = CreateSessionOutput<'de>;
type Err<'de> = CreateSessionError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for CreateSession<'a> {
const NSID: &'static str = "com.atproto.server.createSession";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateSessionResponse;
}
pub struct CreateSessionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateSessionRequest {
const PATH: &'static str = "/xrpc/com.atproto.server.createSession";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = CreateSession<'de>;
type Response = CreateSessionResponse;
}