#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, Handle};
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct CreateSession<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub allow_takendown: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub auth_factor_token: Option<S>,
pub identifier: S,
pub password: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct CreateSessionOutput<S: BosStr = DefaultStr> {
pub access_jwt: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub active: Option<bool>,
pub did: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub did_doc: Option<Data<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub email: Option<S>,
#[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>,
pub handle: Handle<S>,
pub refresh_jwt: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub status: Option<CreateSessionOutputStatus<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum CreateSessionOutputStatus<S: BosStr = DefaultStr> {
Takendown,
Suspended,
Deactivated,
Other(S),
}
impl<S: BosStr> CreateSessionOutputStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Takendown => "takendown",
Self::Suspended => "suspended",
Self::Deactivated => "deactivated",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"takendown" => Self::Takendown,
"suspended" => Self::Suspended,
"deactivated" => Self::Deactivated,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for CreateSessionOutputStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for CreateSessionOutputStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for CreateSessionOutputStatus<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for CreateSessionOutputStatus<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for CreateSessionOutputStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for CreateSessionOutputStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = CreateSessionOutputStatus<S::Output>;
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())
}
}
}
}
#[derive(
Serialize, Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum CreateSessionError {
#[serde(rename = "AccountTakedown")]
AccountTakedown(Option<SmolStr>),
#[serde(rename = "AuthFactorTokenRequired")]
AuthFactorTokenRequired(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
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::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
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<S: BosStr> = CreateSessionOutput<S>;
type Err = CreateSessionError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateSession<S> {
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<S: BosStr> = CreateSession<S>;
type Response = CreateSessionResponse;
}