mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-04 10:11:21 +00:00
Nutomic
5859502a2a
* Fix missing private key for signed fetch (fixes #4451) * clippy * instance actor name and webfinger * better webfinger handling * upgrade lib * update test asset
48 lines
1.5 KiB
Rust
48 lines
1.5 KiB
Rust
use crate::{
|
|
objects::instance::ApubSite,
|
|
protocol::{objects::LanguageTag, ImageObject, Source},
|
|
};
|
|
use activitypub_federation::{
|
|
fetch::object_id::ObjectId,
|
|
kinds::actor::ApplicationType,
|
|
protocol::{helpers::deserialize_skip_error, public_key::PublicKey, values::MediaTypeHtml},
|
|
};
|
|
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_with::skip_serializing_none;
|
|
use url::Url;
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct Instance {
|
|
#[serde(rename = "type")]
|
|
pub(crate) kind: ApplicationType,
|
|
pub(crate) id: ObjectId<ApubSite>,
|
|
/// site name
|
|
pub(crate) name: String,
|
|
/// instance domain, necessary for mastodon authorized fetch
|
|
pub(crate) preferred_username: String,
|
|
pub(crate) inbox: Url,
|
|
/// mandatory field in activitypub, lemmy currently serves an empty outbox
|
|
pub(crate) outbox: Url,
|
|
pub(crate) public_key: PublicKey,
|
|
|
|
// sidebar
|
|
pub(crate) content: Option<String>,
|
|
#[serde(deserialize_with = "deserialize_skip_error", default)]
|
|
pub(crate) source: Option<Source>,
|
|
// short instance description
|
|
pub(crate) summary: Option<String>,
|
|
pub(crate) media_type: Option<MediaTypeHtml>,
|
|
/// instance icon
|
|
pub(crate) icon: Option<ImageObject>,
|
|
/// instance banner
|
|
pub(crate) image: Option<ImageObject>,
|
|
#[serde(default)]
|
|
pub(crate) language: Vec<LanguageTag>,
|
|
/// nonstandard field
|
|
pub(crate) content_warning: Option<String>,
|
|
pub(crate) published: DateTime<Utc>,
|
|
pub(crate) updated: Option<DateTime<Utc>>,
|
|
}
|