2018-12-18 01:53:21 +01:00
|
|
|
mod admin;
|
2020-05-03 17:24:51 +02:00
|
|
|
pub mod core;
|
2018-02-10 01:00:55 +01:00
|
|
|
mod icons;
|
|
|
|
mod identity;
|
2018-08-24 19:02:34 +02:00
|
|
|
mod notifications;
|
2018-12-30 23:34:31 +01:00
|
|
|
mod web;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2021-11-07 18:53:39 +01:00
|
|
|
use rocket::serde::json::Json;
|
2018-10-10 20:40:39 +02:00
|
|
|
use serde_json::Value;
|
2018-02-17 20:47:13 +01:00
|
|
|
|
2020-07-14 18:00:09 +02:00
|
|
|
pub use crate::api::{
|
2022-11-27 00:00:01 +01:00
|
|
|
admin::catchers as admin_catchers,
|
2020-07-14 18:00:09 +02:00
|
|
|
admin::routes as admin_routes,
|
2022-09-25 10:55:55 +02:00
|
|
|
core::catchers as core_catchers,
|
2021-04-03 05:16:49 +02:00
|
|
|
core::purge_sends,
|
2021-04-03 05:52:15 +02:00
|
|
|
core::purge_trashed_ciphers,
|
2020-07-14 18:00:09 +02:00
|
|
|
core::routes as core_routes,
|
2021-10-25 10:36:05 +02:00
|
|
|
core::two_factor::send_incomplete_2fa_notifications,
|
2021-03-24 20:15:55 +01:00
|
|
|
core::{emergency_notification_reminder_job, emergency_request_timeout_job},
|
2022-11-20 19:15:45 +01:00
|
|
|
core::{event_cleanup_job, events_routes as core_events_routes},
|
2020-07-14 18:00:09 +02:00
|
|
|
icons::routes as icons_routes,
|
|
|
|
identity::routes as identity_routes,
|
|
|
|
notifications::routes as notifications_routes,
|
|
|
|
notifications::{start_notification_server, Notify, UpdateType},
|
2022-09-25 04:02:16 +02:00
|
|
|
web::catchers as web_catchers,
|
2020-07-14 18:00:09 +02:00
|
|
|
web::routes as web_routes,
|
2022-10-06 11:59:47 +02:00
|
|
|
web::static_files,
|
2020-07-14 18:00:09 +02:00
|
|
|
};
|
|
|
|
use crate::util;
|
|
|
|
|
2018-02-23 00:38:54 +01:00
|
|
|
// Type aliases for API methods results
|
2018-12-19 21:52:53 +01:00
|
|
|
type ApiResult<T> = Result<T, crate::error::Error>;
|
|
|
|
pub type JsonResult = ApiResult<Json<Value>>;
|
|
|
|
pub type EmptyResult = ApiResult<()>;
|
2018-02-23 00:38:54 +01:00
|
|
|
|
2018-06-01 00:18:50 +02:00
|
|
|
type JsonUpcase<T> = Json<util::UpCase<T>>;
|
2019-01-25 17:43:51 +01:00
|
|
|
type JsonUpcaseVec<T> = Json<Vec<util::UpCase<T>>>;
|
2022-10-20 15:31:53 +02:00
|
|
|
type JsonVec<T> = Json<Vec<T>>;
|
2018-06-01 00:18:50 +02:00
|
|
|
|
2018-02-23 00:38:54 +01:00
|
|
|
// Common structs representing JSON data received
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct PasswordData {
|
2018-12-30 23:34:31 +01:00
|
|
|
MasterPasswordHash: String,
|
2018-02-23 00:38:54 +01:00
|
|
|
}
|
2018-05-04 19:25:50 +02:00
|
|
|
|
2018-07-13 12:28:35 +02:00
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
2018-05-04 19:25:50 +02:00
|
|
|
#[serde(untagged)]
|
|
|
|
enum NumberOrString {
|
|
|
|
Number(i32),
|
|
|
|
String(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NumberOrString {
|
2018-06-11 15:44:37 +02:00
|
|
|
fn into_string(self) -> String {
|
2018-05-04 19:25:50 +02:00
|
|
|
match self {
|
|
|
|
NumberOrString::Number(n) => n.to_string(),
|
2018-12-30 23:34:31 +01:00
|
|
|
NumberOrString::String(s) => s,
|
2018-05-04 19:25:50 +02:00
|
|
|
}
|
|
|
|
}
|
2018-05-26 23:04:23 +02:00
|
|
|
|
2021-06-19 22:02:03 +02:00
|
|
|
#[allow(clippy::wrong_self_convention)]
|
2021-06-07 23:34:00 +02:00
|
|
|
fn into_i32(&self) -> ApiResult<i32> {
|
2019-02-14 02:03:37 +01:00
|
|
|
use std::num::ParseIntError as PIE;
|
2018-05-26 23:04:23 +02:00
|
|
|
match self {
|
2021-06-07 23:34:00 +02:00
|
|
|
NumberOrString::Number(n) => Ok(*n),
|
2021-04-06 22:54:42 +02:00
|
|
|
NumberOrString::String(s) => {
|
|
|
|
s.parse().map_err(|e: PIE| crate::Error::new("Can't convert to number", e.to_string()))
|
|
|
|
}
|
2018-12-30 23:34:31 +01:00
|
|
|
}
|
2018-05-26 23:04:23 +02:00
|
|
|
}
|
2018-05-04 19:25:50 +02:00
|
|
|
}
|