lemmy/crates/routes/src/nodeinfo.rs

106 lines
2.9 KiB
Rust
Raw Normal View History

use actix_web::{error::ErrorBadRequest, web, Error, HttpResponse, Result};
use anyhow::anyhow;
use lemmy_api_common::context::LemmyContext;
use lemmy_db_schema::source::local_site::RegistrationMode;
use lemmy_db_views::structs::SiteView;
use lemmy_utils::{error::LemmyError, version};
2020-05-16 14:04:08 +00:00
use serde::{Deserialize, Serialize};
use url::Url;
2019-11-15 02:08:25 +00: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 13:30:37 +00:00
) -> Result<HttpResponse, LemmyError> {
2020-01-19 11:32:02 +00:00
let node_info = NodeInfoWellKnown {
links: vec![NodeInfoWellKnownLinks {
2020-04-08 12:37:05 +00: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 12:37:05 +00:00
))?,
}],
2020-01-19 11:32:02 +00:00
};
2020-04-08 12:37:05 +00:00
Ok(HttpResponse::Ok().json(node_info))
2019-11-15 02:08:25 +00:00
}
async fn node_info(context: web::Data<LemmyContext>) -> Result<HttpResponse, Error> {
2022-11-09 10:05:00 +00:00
let site_view = SiteView::read_local(context.pool())
.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 open_registrations = site_view.local_site.registration_mode == RegistrationMode::Open;
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,
};
Ok(HttpResponse::Ok().json(json))
2019-11-15 02:08:25 +00:00
}
2020-01-19 11:32:02 +00:00
#[derive(Serialize, Deserialize, Debug)]
struct NodeInfoWellKnown {
pub links: Vec<NodeInfoWellKnownLinks>,
2020-01-19 11:32:02 +00:00
}
#[derive(Serialize, Deserialize, Debug)]
struct NodeInfoWellKnownLinks {
2020-04-08 12:37:05 +00:00
pub rel: Url,
pub href: Url,
2020-01-19 11:32:02 +00: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 11:32:02 +00:00
}
#[derive(Serialize, Deserialize, Debug)]
struct NodeInfoSoftware {
pub name: String,
pub version: String,
2020-01-19 11:32:02 +00:00
}
#[derive(Serialize, Deserialize, Debug)]
2020-01-19 11:32:02 +00:00
#[serde(rename_all = "camelCase")]
struct NodeInfoUsage {
pub users: NodeInfoUsers,
pub local_posts: i64,
pub local_comments: i64,
2020-01-19 11:32:02 +00:00
}
#[derive(Serialize, Deserialize, Debug)]
2021-01-29 18:48:59 +00:00
#[serde(rename_all = "camelCase")]
struct NodeInfoUsers {
pub total: i64,
pub active_halfyear: i64,
pub active_month: i64,
2020-01-19 11:32:02 +00:00
}