forked from jmug/stoatchat
* feat: create base of push daemon Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * Add outbound senders * Make web_push send to rabbit instead (temp stuff) * feat: stability and friend requests * make vapid fr stuff not suck * swap naming of queue * move pushd into daemons folder * fix cargo file for move into daemons folder * feat: probably working fcm push notifs * comment out fcm webpush stuff since the config keys dont exist * fix fcm, name queues according to their prod status and configure routing keys * add pushd to docker * mix: Remove old code, add stuff to pushd * fix: lockfile * feat: update rocket to 5.0.1 * fix: fix queues and ack bugs * Move rabbit messsage processing into ack queue * chore: update readme * chore: optimizations for ack database hits * pushd flowchart * misc: update flowchart * exit dependancy hell * add rocket_impl flag to authifier * make the tests file of delta actually compile * fix: don't silence every push message * fix: don't silence all messages * add debug logging for sending data to rabbit from message events * validate mentions at a server membership level * put back that import that was actually important * minor fix to lockfile * update delta authifier * feat: proper permissions for push notifications * add unit test for mention sanitization * remove local file dependancy on authifier * update ports to proper defaults * fixTM the node bindings * Theoretically configure docker releases for pushd Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * declare exchange in pushd and delta * fix createbuckets script Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: reference db implementation Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: remove finally redundant code Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: changes Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: other changes Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: make channel name return result Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> --------- Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com>
158 lines
4.7 KiB
Rust
158 lines
4.7 KiB
Rust
use revolt_config::config;
|
|
use revolt_result::Result;
|
|
use rocket::serde::json::Json;
|
|
use serde::Serialize;
|
|
|
|
/// # hCaptcha Configuration
|
|
#[derive(Serialize, JsonSchema, Debug)]
|
|
pub struct CaptchaFeature {
|
|
/// Whether captcha is enabled
|
|
pub enabled: bool,
|
|
/// Client key used for solving captcha
|
|
pub key: String,
|
|
}
|
|
|
|
/// # Generic Service Configuration
|
|
#[derive(Serialize, JsonSchema, Debug)]
|
|
pub struct Feature {
|
|
/// Whether the service is enabled
|
|
pub enabled: bool,
|
|
/// URL pointing to the service
|
|
pub url: String,
|
|
}
|
|
|
|
/// # Voice Server Configuration
|
|
#[derive(Serialize, JsonSchema, Debug)]
|
|
pub struct VoiceFeature {
|
|
/// Whether voice is enabled
|
|
pub enabled: bool,
|
|
/// URL pointing to the voice API
|
|
pub url: String,
|
|
/// URL pointing to the voice WebSocket server
|
|
pub ws: String,
|
|
}
|
|
|
|
/// # Feature Configuration
|
|
#[derive(Serialize, JsonSchema, Debug)]
|
|
pub struct RevoltFeatures {
|
|
/// hCaptcha configuration
|
|
pub captcha: CaptchaFeature,
|
|
/// Whether email verification is enabled
|
|
pub email: bool,
|
|
/// Whether this server is invite only
|
|
pub invite_only: bool,
|
|
/// File server service configuration
|
|
pub autumn: Feature,
|
|
/// Proxy service configuration
|
|
pub january: Feature,
|
|
/// Voice server configuration
|
|
pub voso: VoiceFeature,
|
|
}
|
|
|
|
/// # Build Information
|
|
#[derive(Serialize, JsonSchema, Debug)]
|
|
pub struct BuildInformation {
|
|
/// Commit Hash
|
|
pub commit_sha: String,
|
|
/// Commit Timestamp
|
|
pub commit_timestamp: String,
|
|
/// Git Semver
|
|
pub semver: String,
|
|
/// Git Origin URL
|
|
pub origin_url: String,
|
|
/// Build Timestamp
|
|
pub timestamp: String,
|
|
}
|
|
|
|
/// # Server Configuration
|
|
#[derive(Serialize, JsonSchema, Debug)]
|
|
pub struct RevoltConfig {
|
|
/// Revolt API Version
|
|
pub revolt: String,
|
|
/// Features enabled on this Revolt node
|
|
pub features: RevoltFeatures,
|
|
/// WebSocket URL
|
|
pub ws: String,
|
|
/// URL pointing to the client serving this node
|
|
pub app: String,
|
|
/// Web Push VAPID public key
|
|
pub vapid: String,
|
|
/// Build information
|
|
pub build: BuildInformation,
|
|
}
|
|
|
|
/// # Query Node
|
|
///
|
|
/// Fetch the server configuration for this Revolt instance.
|
|
#[openapi(tag = "Core")]
|
|
#[get("/")]
|
|
pub async fn root() -> Result<Json<RevoltConfig>> {
|
|
let config = config().await;
|
|
|
|
Ok(Json(RevoltConfig {
|
|
revolt: env!("CARGO_PKG_VERSION").to_string(),
|
|
features: RevoltFeatures {
|
|
captcha: CaptchaFeature {
|
|
enabled: !config.api.security.captcha.hcaptcha_key.is_empty(),
|
|
key: config.api.security.captcha.hcaptcha_sitekey,
|
|
},
|
|
email: !config.api.smtp.host.is_empty(),
|
|
invite_only: config.api.registration.invite_only,
|
|
autumn: Feature {
|
|
enabled: !config.hosts.autumn.is_empty(),
|
|
url: config.hosts.autumn,
|
|
},
|
|
january: Feature {
|
|
enabled: !config.hosts.january.is_empty(),
|
|
url: config.hosts.january,
|
|
},
|
|
voso: VoiceFeature {
|
|
enabled: !config.hosts.voso_legacy.is_empty(),
|
|
url: config.hosts.voso_legacy,
|
|
ws: config.hosts.voso_legacy_ws,
|
|
},
|
|
},
|
|
ws: config.hosts.events,
|
|
app: config.hosts.app,
|
|
vapid: config.pushd.vapid.public_key,
|
|
build: BuildInformation {
|
|
commit_sha: option_env!("VERGEN_GIT_SHA")
|
|
.unwrap_or_else(|| "<failed to generate>")
|
|
.to_string(),
|
|
commit_timestamp: option_env!("VERGEN_GIT_COMMIT_TIMESTAMP")
|
|
.unwrap_or_else(|| "<failed to generate>")
|
|
.to_string(),
|
|
semver: option_env!("VERGEN_GIT_SEMVER")
|
|
.unwrap_or_else(|| "<failed to generate>")
|
|
.to_string(),
|
|
origin_url: option_env!("GIT_ORIGIN_URL")
|
|
.unwrap_or_else(|| "<failed to generate>")
|
|
.to_string(),
|
|
timestamp: option_env!("VERGEN_BUILD_TIMESTAMP")
|
|
.unwrap_or_else(|| "<failed to generate>")
|
|
.to_string(),
|
|
},
|
|
}))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[cfg(feature = "FIXME: THIS TEST CAUSES cargo test TO SEG FAULT, I HAVE NO CLUE HOW")]
|
|
mod test {
|
|
use crate::rocket;
|
|
use rocket::http::Status;
|
|
|
|
#[rocket::async_test]
|
|
async fn hello_world() {
|
|
let harness = crate::util::test::TestHarness::new().await;
|
|
let response = harness.client.get("/").dispatch().await;
|
|
assert_eq!(response.status(), Status::Ok);
|
|
}
|
|
|
|
#[rocket::async_test]
|
|
async fn hello_world_concurrent() {
|
|
let harness = crate::util::test::TestHarness::new().await;
|
|
let response = harness.client.get("/").dispatch().await;
|
|
assert_eq!(response.status(), Status::Ok);
|
|
}
|
|
}
|