]> Untitled Git - lemmy.git/blob - src/routes/nodeinfo.rs
e6c5e6c423a3aacf9714dd87605ab0d49256adf4
[lemmy.git] / src / routes / nodeinfo.rs
1 use actix_web::{body::Body, error::ErrorBadRequest, *};
2 use anyhow::anyhow;
3 use lemmy_api::version;
4 use lemmy_db_views::site_view::SiteView;
5 use lemmy_structs::blocking;
6 use lemmy_utils::{settings::Settings, LemmyError};
7 use lemmy_websocket::LemmyContext;
8 use serde::{Deserialize, Serialize};
9 use url::Url;
10
11 pub fn config(cfg: &mut web::ServiceConfig) {
12   cfg
13     .route("/nodeinfo/2.0.json", web::get().to(node_info))
14     .route("/.well-known/nodeinfo", web::get().to(node_info_well_known));
15 }
16
17 async fn node_info_well_known() -> Result<HttpResponse<Body>, LemmyError> {
18   let node_info = NodeInfoWellKnown {
19     links: NodeInfoWellKnownLinks {
20       rel: Url::parse("http://nodeinfo.diaspora.software/ns/schema/2.0")?,
21       href: Url::parse(&format!(
22         "{}/nodeinfo/2.0.json",
23         Settings::get().get_protocol_and_hostname()
24       ))?,
25     },
26   };
27   Ok(HttpResponse::Ok().json(node_info))
28 }
29
30 async fn node_info(context: web::Data<LemmyContext>) -> Result<HttpResponse, Error> {
31   let site_view = blocking(context.pool(), SiteView::read)
32     .await?
33     .map_err(|_| ErrorBadRequest(LemmyError::from(anyhow!("not_found"))))?;
34
35   let protocols = if Settings::get().federation.enabled {
36     vec!["activitypub".to_string()]
37   } else {
38     vec![]
39   };
40
41   let json = NodeInfo {
42     version: "2.0".to_string(),
43     software: NodeInfoSoftware {
44       name: "lemmy".to_string(),
45       version: version::VERSION.to_string(),
46     },
47     protocols,
48     usage: NodeInfoUsage {
49       // TODO get these again
50       users: NodeInfoUsers { total: 0 },
51       local_posts: 0,
52       local_comments: 0,
53       open_registrations: site_view.site.open_registration,
54     },
55   };
56
57   Ok(HttpResponse::Ok().json(json))
58 }
59
60 #[derive(Serialize, Deserialize, Debug)]
61 struct NodeInfoWellKnown {
62   pub links: NodeInfoWellKnownLinks,
63 }
64
65 #[derive(Serialize, Deserialize, Debug)]
66 struct NodeInfoWellKnownLinks {
67   pub rel: Url,
68   pub href: Url,
69 }
70
71 #[derive(Serialize, Deserialize, Debug)]
72 struct NodeInfo {
73   pub version: String,
74   pub software: NodeInfoSoftware,
75   pub protocols: Vec<String>,
76   pub usage: NodeInfoUsage,
77 }
78
79 #[derive(Serialize, Deserialize, Debug)]
80 struct NodeInfoSoftware {
81   pub name: String,
82   pub version: String,
83 }
84
85 #[derive(Serialize, Deserialize, Debug)]
86 #[serde(rename_all = "camelCase")]
87 struct NodeInfoUsage {
88   pub users: NodeInfoUsers,
89   pub local_posts: i64,
90   pub local_comments: i64,
91   pub open_registrations: bool,
92 }
93
94 #[derive(Serialize, Deserialize, Debug)]
95 struct NodeInfoUsers {
96   pub total: i64,
97 }