lemmy/crates/routes/src/nodeinfo.rs

106 lines
2.8 KiB
Rust
Raw Normal View History

2021-12-14 06:30:37 -07:00
use actix_web::{error::ErrorBadRequest, *};
use anyhow::anyhow;
use lemmy_api_common::utils::blocking;
use lemmy_db_views::structs::SiteView;
use lemmy_utils::{error::LemmyError, version};
use lemmy_websocket::LemmyContext;
2020-05-16 08:04:08 -06:00
use serde::{Deserialize, Serialize};
use url::Url;
2019-11-14 19:08:25 -07:00
pub fn config(cfg: &mut web::ServiceConfig) {
cfg
.route("/nodeinfo/2.0.json", web::get().to(node_info))
.route("/.well-known/nodeinfo", web::get().to(node_info_well_known));
}
async fn node_info_well_known(
context: web::Data<LemmyContext>,
2021-12-14 06:30:37 -07:00
) -> Result<HttpResponse, LemmyError> {
2020-01-19 04:32:02 -07:00
let node_info = NodeInfoWellKnown {
links: vec![NodeInfoWellKnownLinks {
2020-04-08 06:37:05 -06:00
rel: Url::parse("http://nodeinfo.diaspora.software/ns/schema/2.0")?,
href: Url::parse(&format!(
"{}/nodeinfo/2.0.json",
&context.settings().get_protocol_and_hostname(),
2020-04-08 06:37:05 -06:00
))?,
}],
2020-01-19 04:32:02 -07:00
};
2020-04-08 06:37:05 -06:00
Ok(HttpResponse::Ok().json(node_info))
2019-11-14 19:08:25 -07:00
}
async fn node_info(context: web::Data<LemmyContext>) -> Result<HttpResponse, Error> {
2022-03-08 05:52:33 -07:00
let site_view = blocking(context.pool(), SiteView::read_local)
.await?
.map_err(|_| ErrorBadRequest(LemmyError::from(anyhow!("not_found"))))?;
let protocols = if site_view.local_site.federation_enabled {
vec!["activitypub".to_string()]
} else {
vec![]
};
let json = NodeInfo {
version: "2.0".to_string(),
software: NodeInfoSoftware {
name: "lemmy".to_string(),
version: version::VERSION.to_string(),
},
protocols,
usage: NodeInfoUsage {
users: NodeInfoUsers {
total: site_view.counts.users,
active_halfyear: site_view.counts.users_active_half_year,
active_month: site_view.counts.users_active_month,
},
local_posts: site_view.counts.posts,
local_comments: site_view.counts.comments,
},
open_registrations: site_view.local_site.open_registration,
};
Ok(HttpResponse::Ok().json(json))
2019-11-14 19:08:25 -07:00
}
2020-01-19 04:32:02 -07:00
#[derive(Serialize, Deserialize, Debug)]
struct NodeInfoWellKnown {
pub links: Vec<NodeInfoWellKnownLinks>,
2020-01-19 04:32:02 -07:00
}
#[derive(Serialize, Deserialize, Debug)]
struct NodeInfoWellKnownLinks {
2020-04-08 06:37:05 -06:00
pub rel: Url,
pub href: Url,
2020-01-19 04:32:02 -07:00
}
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
struct NodeInfo {
pub version: String,
pub software: NodeInfoSoftware,
pub protocols: Vec<String>,
pub usage: NodeInfoUsage,
pub open_registrations: bool,
2020-01-19 04:32:02 -07:00
}
#[derive(Serialize, Deserialize, Debug)]
struct NodeInfoSoftware {
pub name: String,
pub version: String,
2020-01-19 04:32:02 -07:00
}
#[derive(Serialize, Deserialize, Debug)]
2020-01-19 04:32:02 -07:00
#[serde(rename_all = "camelCase")]
struct NodeInfoUsage {
pub users: NodeInfoUsers,
pub local_posts: i64,
pub local_comments: i64,
2020-01-19 04:32:02 -07:00
}
#[derive(Serialize, Deserialize, Debug)]
2021-01-29 11:48:59 -07:00
#[serde(rename_all = "camelCase")]
struct NodeInfoUsers {
pub total: i64,
pub active_halfyear: i64,
pub active_month: i64,
2020-01-19 04:32:02 -07:00
}