mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-10 16:24:45 +00:00
70 lines
2.1 KiB
Rust
70 lines
2.1 KiB
Rust
use crate::{utils, Error, Result};
|
|
|
|
pub const COUNTER: &str = "c";
|
|
|
|
pub struct Globals {
|
|
pub(super) globals: sled::Tree,
|
|
keypair: ruma::signatures::Ed25519KeyPair,
|
|
reqwest_client: reqwest::Client,
|
|
server_name: String,
|
|
registration_disabled: bool,
|
|
}
|
|
|
|
impl Globals {
|
|
pub fn load(globals: sled::Tree, config: &rocket::Config) -> Result<Self> {
|
|
let keypair = ruma::signatures::Ed25519KeyPair::new(
|
|
&*globals
|
|
.update_and_fetch("keypair", utils::generate_keypair)?
|
|
.expect("utils::generate_keypair always returns Some"),
|
|
"key1".to_owned(),
|
|
)
|
|
.map_err(|_| Error::BadDatabase("Private or public keys are invalid."))?;
|
|
|
|
Ok(Self {
|
|
globals,
|
|
keypair,
|
|
reqwest_client: reqwest::Client::new(),
|
|
server_name: config
|
|
.get_str("server_name")
|
|
.unwrap_or("localhost")
|
|
.to_owned(),
|
|
registration_disabled: config.get_bool("registration_disabled").unwrap_or(false),
|
|
})
|
|
}
|
|
|
|
/// Returns this server's keypair.
|
|
pub fn keypair(&self) -> &ruma::signatures::Ed25519KeyPair {
|
|
&self.keypair
|
|
}
|
|
|
|
/// Returns a reqwest client which can be used to send requests.
|
|
pub fn reqwest_client(&self) -> &reqwest::Client {
|
|
&self.reqwest_client
|
|
}
|
|
|
|
pub fn next_count(&self) -> Result<u64> {
|
|
Ok(utils::u64_from_bytes(
|
|
&self
|
|
.globals
|
|
.update_and_fetch(COUNTER, utils::increment)?
|
|
.expect("utils::increment will always put in a value"),
|
|
)
|
|
.map_err(|_| Error::BadDatabase("Count has invalid bytes."))?)
|
|
}
|
|
|
|
pub fn current_count(&self) -> Result<u64> {
|
|
self.globals.get(COUNTER)?.map_or(Ok(0_u64), |bytes| {
|
|
Ok(utils::u64_from_bytes(&bytes)
|
|
.map_err(|_| Error::BadDatabase("Count has invalid bytes."))?)
|
|
})
|
|
}
|
|
|
|
pub fn server_name(&self) -> &str {
|
|
&self.server_name
|
|
}
|
|
|
|
pub fn registration_disabled(&self) -> bool {
|
|
self.registration_disabled
|
|
}
|
|
}
|