#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, Handle};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct RefreshSessionOutput<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<RefreshSessionOutputStatus<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 RefreshSessionOutputStatus<S: BosStr = DefaultStr> {
Takendown,
Suspended,
Deactivated,
Other(S),
}
impl<S: BosStr> RefreshSessionOutputStatus<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 RefreshSessionOutputStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for RefreshSessionOutputStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for RefreshSessionOutputStatus<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 RefreshSessionOutputStatus<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 RefreshSessionOutputStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for RefreshSessionOutputStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = RefreshSessionOutputStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
RefreshSessionOutputStatus::Takendown => {
RefreshSessionOutputStatus::Takendown
}
RefreshSessionOutputStatus::Suspended => {
RefreshSessionOutputStatus::Suspended
}
RefreshSessionOutputStatus::Deactivated => {
RefreshSessionOutputStatus::Deactivated
}
RefreshSessionOutputStatus::Other(v) => {
RefreshSessionOutputStatus::Other(v.into_static())
}
}
}
}
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic
)]
#[serde(tag = "error", content = "message")]
pub enum RefreshSessionError {
#[serde(rename = "AccountTakedown")]
AccountTakedown(Option<SmolStr>),
#[serde(rename = "InvalidToken")]
InvalidToken(Option<SmolStr>),
#[serde(rename = "ExpiredToken")]
ExpiredToken(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for RefreshSessionError {
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::InvalidToken(msg) => {
write!(f, "InvalidToken")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::ExpiredToken(msg) => {
write!(f, "ExpiredToken")?;
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(())
}
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct RefreshSession;
pub struct RefreshSessionResponse;
impl jacquard_common::xrpc::XrpcResp for RefreshSessionResponse {
const NSID: &'static str = "com.atproto.server.refreshSession";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = RefreshSessionOutput<S>;
type Err = RefreshSessionError;
}
impl jacquard_common::xrpc::XrpcRequest for RefreshSession {
const NSID: &'static str = "com.atproto.server.refreshSession";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = RefreshSessionResponse;
}
pub struct RefreshSessionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for RefreshSessionRequest {
const PATH: &'static str = "/xrpc/com.atproto.server.refreshSession";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = RefreshSession;
type Response = RefreshSessionResponse;
}