Compare commits
No commits in common. "949da91cb79c8760e6592f12bf9fa29fbfdef353" and "e72fa092fbd2a67ecfd00ad724b1d4f91609b17b" have entirely different histories.
949da91cb7
...
e72fa092fb
11 changed files with 3 additions and 72 deletions
|
@ -13,10 +13,9 @@
|
|||
<sourceFolder url="file://$MODULE_DIR$/acrate_rdserver/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/acrate_apub_inbox/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/acrate_database/tests" isTestSource="true" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/acrate_astreams/src" isTestSource="false" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
</module>
|
|
@ -1,3 +1,3 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["acrate_database", "acrate_rd", "acrate_nodeinfo", "acrate_rdserver", "acrate_apub_inbox", "acrate_astreams"]
|
||||
members = ["acrate_database", "acrate_rd", "acrate_nodeinfo", "acrate_rdserver", "acrate_apub_inbox"]
|
||||
|
|
|
@ -16,7 +16,6 @@ async fn main() -> anyhow::Result<std::convert::Infallible> {
|
|||
|
||||
log::trace!("Creating Axum router...");
|
||||
let app = axum::Router::new()
|
||||
.route("/inbox", axum::routing::post(route::inbox_handler))
|
||||
.route("/.healthcheck", axum::routing::get(route::healthcheck_handler))
|
||||
.layer(Extension(Arc::new(mj)));
|
||||
log::trace!("Axum router created successfully!");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use axum::http::{Response, StatusCode};
|
||||
use axum::http::StatusCode;
|
||||
use acrate_database::connect::connect_async;
|
||||
|
||||
pub async fn healthcheck_handler() -> Result<StatusCode, StatusCode> {
|
||||
|
@ -12,12 +12,3 @@ pub async fn healthcheck_handler() -> Result<StatusCode, StatusCode> {
|
|||
log::trace!("Healthcheck successful! Everything's fine!");
|
||||
Ok(StatusCode::NO_CONTENT)
|
||||
}
|
||||
|
||||
pub async fn inbox_handler() -> Result<Response<String>, StatusCode> {
|
||||
log::debug!("Handling an inbox request!");
|
||||
|
||||
log::trace!("Creating a blank response...");
|
||||
let mut response = Response::new("".to_string());
|
||||
|
||||
Ok(response)
|
||||
}
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
[package]
|
||||
name = "acrate_astreams"
|
||||
version = "0.3.0"
|
||||
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
||||
edition = "2021"
|
||||
description = "ActivityStreams definitions and utilities"
|
||||
repository = "https://forge.steffo.eu/unimore/tirocinio-canali-steffo-acrate"
|
||||
license = "EUPL-1.2"
|
||||
keywords = ["activitypub", "activitystreams", "federation", "apub", "astreams"]
|
||||
categories = ["web-programming"]
|
||||
|
||||
[dependencies]
|
||||
json-ld = { version = "0.21.1", features = ["serde", "reqwest"] }
|
||||
log = "0.4.22"
|
||||
serde = { version = "1.0.214", features = ["derive"] }
|
||||
serde_json = "1.0.132"
|
||||
thiserror = "2.0.3"
|
|
@ -1,6 +0,0 @@
|
|||
//! Struct definitions for ActivityStreams Core Types.
|
||||
//!
|
||||
//! # Specification
|
||||
//!
|
||||
//! - <https://www.w3.org/TR/activitystreams-vocabulary/#types>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
//! Struct definitions for ActivityStreams Extended Types.
|
||||
//!
|
||||
//! # Specification
|
||||
//!
|
||||
//! - <https://www.w3.org/TR/activitystreams-vocabulary/#extendedtypes>
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
//!
|
||||
//! # Specification
|
||||
//!
|
||||
//! - <https://www.w3.org/TR/activitystreams-vocabulary/>
|
||||
|
||||
pub mod core;
|
||||
pub mod extended;
|
||||
|
||||
pub mod mastodon;
|
||||
pub mod miajetzt;
|
||||
pub mod litepub;
|
|
@ -1,6 +0,0 @@
|
|||
//! Struct definitions for Pleroma and Akkoma's Extension Types.
|
||||
//!
|
||||
//! # Specification
|
||||
//!
|
||||
//! - <https://docs.akkoma.dev/develop/development/ap_extensions/>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
//! Struct definitions for Mastodon's Extension Types.
|
||||
//!
|
||||
//! # Specification
|
||||
//!
|
||||
//! - <https://docs.joinmastodon.org/spec/activitypub/#contexts>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
//! Struct definitions for mia's Extension Types.
|
||||
//!
|
||||
//! # Specification
|
||||
//!
|
||||
//! - <https://ns.mia.jetzt/as/>
|
||||
|
Loading…
Reference in a new issue