2018-07-12 19:46:50 +00:00
|
|
|
pub(crate) mod core;
|
2018-12-18 00:53:21 +00:00
|
|
|
mod admin;
|
2018-02-10 00:00:55 +00:00
|
|
|
mod icons;
|
|
|
|
mod identity;
|
|
|
|
mod web;
|
2018-08-24 17:02:34 +00:00
|
|
|
mod notifications;
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
pub use self::core::routes as core_routes;
|
2018-12-18 00:53:21 +00:00
|
|
|
pub use self::admin::routes as admin_routes;
|
2018-02-10 00:00:55 +00:00
|
|
|
pub use self::icons::routes as icons_routes;
|
|
|
|
pub use self::identity::routes as identity_routes;
|
|
|
|
pub use self::web::routes as web_routes;
|
2018-08-24 17:02:34 +00:00
|
|
|
pub use self::notifications::routes as notifications_routes;
|
2018-08-30 15:43:46 +00:00
|
|
|
pub use self::notifications::{start_notification_server, WebSocketUsers, UpdateType};
|
2018-02-17 19:47:13 +00:00
|
|
|
|
2018-10-10 18:40:39 +00:00
|
|
|
use rocket_contrib::json::Json;
|
|
|
|
use serde_json::Value;
|
2018-02-17 19:47:13 +00:00
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
// Type aliases for API methods results
|
2018-12-19 20:52:53 +00:00
|
|
|
type ApiResult<T> = Result<T, crate::error::Error>;
|
|
|
|
pub type JsonResult = ApiResult<Json<Value>>;
|
|
|
|
pub type EmptyResult = ApiResult<()>;
|
2018-02-22 23:38:54 +00:00
|
|
|
|
2018-12-07 01:05:45 +00:00
|
|
|
use crate::util;
|
2018-05-31 22:18:50 +00:00
|
|
|
type JsonUpcase<T> = Json<util::UpCase<T>>;
|
|
|
|
|
2018-02-22 23:38:54 +00:00
|
|
|
// Common structs representing JSON data received
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct PasswordData {
|
2018-05-31 22:18:50 +00:00
|
|
|
MasterPasswordHash: String
|
2018-02-22 23:38:54 +00:00
|
|
|
}
|
2018-05-04 17:25:50 +00:00
|
|
|
|
2018-07-13 10:28:35 +00:00
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
2018-05-04 17:25:50 +00:00
|
|
|
#[serde(untagged)]
|
|
|
|
enum NumberOrString {
|
|
|
|
Number(i32),
|
|
|
|
String(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NumberOrString {
|
2018-06-11 13:44:37 +00:00
|
|
|
fn into_string(self) -> String {
|
2018-05-04 17:25:50 +00:00
|
|
|
match self {
|
|
|
|
NumberOrString::Number(n) => n.to_string(),
|
|
|
|
NumberOrString::String(s) => s
|
|
|
|
}
|
|
|
|
}
|
2018-05-26 21:04:23 +00:00
|
|
|
|
2018-06-11 13:44:37 +00:00
|
|
|
fn into_i32(self) -> Option<i32> {
|
2018-05-26 21:04:23 +00:00
|
|
|
match self {
|
|
|
|
NumberOrString::Number(n) => Some(n),
|
|
|
|
NumberOrString::String(s) => s.parse().ok()
|
|
|
|
}
|
|
|
|
}
|
2018-05-04 17:25:50 +00:00
|
|
|
}
|