2022-11-19 04:33:54 +00:00
|
|
|
use actix_web::{error::ErrorBadRequest, web, Error, HttpResponse, Result};
|
2020-08-01 14:04:42 +00:00
|
|
|
use anyhow::anyhow;
|
2022-11-28 14:29:33 +00:00
|
|
|
use lemmy_api_common::context::LemmyContext;
|
2023-01-05 01:42:30 +00:00
|
|
|
use lemmy_db_schema::source::local_site::RegistrationMode;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::SiteView;
|
2022-06-02 14:33:41 +00:00
|
|
|
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
|
|
|
|
2019-12-31 12:55:33 +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));
|
|
|
|
}
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
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 {
|
2021-11-21 17:10:39 +00:00
|
|
|
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!(
|
2020-09-25 15:33:00 +00:00
|
|
|
"{}/nodeinfo/2.0.json",
|
2021-09-22 15:57:09 +00:00
|
|
|
&context.settings().get_protocol_and_hostname(),
|
2020-04-08 12:37:05 +00:00
|
|
|
))?,
|
2021-11-21 17:10:39 +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
|
|
|
}
|
|
|
|
|
2020-08-18 13:43:50 +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
|
2020-08-01 14:04:42 +00:00
|
|
|
.map_err(|_| ErrorBadRequest(LemmyError::from(anyhow!("not_found"))))?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let protocols = if site_view.local_site.federation_enabled {
|
2023-02-18 14:36:12 +00:00
|
|
|
Some(vec!["activitypub".to_string()])
|
2020-07-01 12:54:29 +00:00
|
|
|
} else {
|
2023-02-18 14:36:12 +00:00
|
|
|
None
|
2020-07-01 12:54:29 +00:00
|
|
|
};
|
2023-02-18 14:36:12 +00:00
|
|
|
let open_registrations = Some(site_view.local_site.registration_mode == RegistrationMode::Open);
|
2020-07-01 12:54:29 +00:00
|
|
|
let json = NodeInfo {
|
2023-02-18 14:36:12 +00:00
|
|
|
version: Some("2.0".to_string()),
|
|
|
|
software: Some(NodeInfoSoftware {
|
|
|
|
name: Some("lemmy".to_string()),
|
|
|
|
version: Some(version::VERSION.to_string()),
|
|
|
|
}),
|
2020-07-01 12:54:29 +00:00
|
|
|
protocols,
|
2023-02-18 14:36:12 +00:00
|
|
|
usage: Some(NodeInfoUsage {
|
|
|
|
users: Some(NodeInfoUsers {
|
|
|
|
total: Some(site_view.counts.users),
|
|
|
|
active_halfyear: Some(site_view.counts.users_active_half_year),
|
|
|
|
active_month: Some(site_view.counts.users_active_month),
|
|
|
|
}),
|
|
|
|
local_posts: Some(site_view.counts.posts),
|
|
|
|
local_comments: Some(site_view.counts.comments),
|
|
|
|
}),
|
2023-01-05 01:42:30 +00:00
|
|
|
open_registrations,
|
2020-07-01 12:54:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(HttpResponse::Ok().json(json))
|
2019-11-15 02:08:25 +00:00
|
|
|
}
|
2020-01-19 11:32:02 +00:00
|
|
|
|
2020-03-18 15:08:08 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct NodeInfoWellKnown {
|
2021-11-21 17:10:39 +00:00
|
|
|
pub links: Vec<NodeInfoWellKnownLinks>,
|
2020-01-19 11:32:02 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 15:08:08 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
2020-11-16 15:44:04 +00:00
|
|
|
struct NodeInfoWellKnownLinks {
|
2020-04-08 12:37:05 +00:00
|
|
|
pub rel: Url,
|
|
|
|
pub href: Url,
|
2020-01-19 11:32:02 +00:00
|
|
|
}
|
|
|
|
|
2023-02-18 14:36:12 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Default)]
|
|
|
|
#[serde(rename_all = "camelCase", default)]
|
|
|
|
pub struct NodeInfo {
|
|
|
|
pub version: Option<String>,
|
|
|
|
pub software: Option<NodeInfoSoftware>,
|
|
|
|
pub protocols: Option<Vec<String>>,
|
|
|
|
pub usage: Option<NodeInfoUsage>,
|
|
|
|
pub open_registrations: Option<bool>,
|
2020-01-19 11:32:02 +00:00
|
|
|
}
|
|
|
|
|
2023-02-18 14:36:12 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Default)]
|
|
|
|
#[serde(default)]
|
|
|
|
pub struct NodeInfoSoftware {
|
|
|
|
pub name: Option<String>,
|
|
|
|
pub version: Option<String>,
|
2020-01-19 11:32:02 +00:00
|
|
|
}
|
|
|
|
|
2023-02-18 14:36:12 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Default)]
|
|
|
|
#[serde(rename_all = "camelCase", default)]
|
|
|
|
pub struct NodeInfoUsage {
|
|
|
|
pub users: Option<NodeInfoUsers>,
|
|
|
|
pub local_posts: Option<i64>,
|
|
|
|
pub local_comments: Option<i64>,
|
2020-01-19 11:32:02 +00:00
|
|
|
}
|
|
|
|
|
2023-02-18 14:36:12 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, Default)]
|
|
|
|
#[serde(rename_all = "camelCase", default)]
|
|
|
|
pub struct NodeInfoUsers {
|
|
|
|
pub total: Option<i64>,
|
|
|
|
pub active_halfyear: Option<i64>,
|
|
|
|
pub active_month: Option<i64>,
|
2020-01-19 11:32:02 +00:00
|
|
|
}
|