lemmy/server/src/nodeinfo.rs

53 lines
1.3 KiB
Rust
Raw Normal View History

2019-11-15 17:10:56 +00:00
use crate::db::establish_connection;
use crate::db::site_view::SiteView;
2019-11-15 02:08:25 +00:00
use crate::version;
2019-11-15 17:10:56 +00:00
use crate::Settings;
use actix_web::body::Body;
2019-11-21 19:27:52 +00:00
use actix_web::HttpResponse;
2019-11-15 17:10:56 +00:00
use serde_json::json;
2019-11-15 02:08:25 +00:00
2019-11-15 17:10:56 +00:00
pub fn node_info_well_known() -> HttpResponse<Body> {
let json = json!({
"links": {
"rel": "http://nodeinfo.diaspora.software/ns/schema/2.0",
"href": format!("https://{}/nodeinfo/2.0.json", Settings::get().hostname),
}
});
2019-11-15 02:08:25 +00:00
2019-11-15 17:10:56 +00:00
return HttpResponse::Ok()
.content_type("application/json")
.body(json.to_string());
2019-11-15 02:08:25 +00:00
}
2019-11-15 17:10:56 +00:00
pub fn node_info() -> HttpResponse<Body> {
let conn = establish_connection();
let site_view = match SiteView::read(&conn) {
Ok(site_view) => site_view,
Err(_e) => return HttpResponse::InternalServerError().finish(),
};
let protocols = if Settings::get().federation_enabled {
vec!["activitypub"]
} else {
vec![]
};
2019-11-15 17:10:56 +00:00
let json = json!({
"version": "2.0",
"software": {
"name": "lemmy",
"version": version::VERSION,
},
"protocols": protocols,
2019-11-15 17:10:56 +00:00
"usage": {
"users": {
"total": site_view.number_of_users
},
2019-11-21 14:51:57 +00:00
"localPosts": site_view.number_of_posts,
"localComments": site_view.number_of_comments,
"openRegistrations": true,
2019-11-15 17:10:56 +00:00
}
});
return HttpResponse::Ok()
.content_type("application/json")
.body(json.to_string());
2019-11-15 02:08:25 +00:00
}