2018-02-10 01:00:55 +01:00
|
|
|
mod core;
|
|
|
|
mod icons;
|
|
|
|
mod identity;
|
|
|
|
mod web;
|
|
|
|
|
|
|
|
pub use self::core::routes as core_routes;
|
|
|
|
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-02-17 20:47:13 +01:00
|
|
|
|
|
|
|
use rocket::response::status::BadRequest;
|
|
|
|
use rocket_contrib::Json;
|
|
|
|
|
2018-02-23 00:38:54 +01:00
|
|
|
// Type aliases for API methods results
|
2018-02-17 20:47:13 +01:00
|
|
|
type JsonResult = Result<Json, BadRequest<Json>>;
|
|
|
|
type EmptyResult = Result<(), BadRequest<Json>>;
|
2018-02-23 00:38:54 +01:00
|
|
|
|
2018-06-01 00:18:50 +02:00
|
|
|
use util;
|
|
|
|
type JsonUpcase<T> = Json<util::UpCase<T>>;
|
|
|
|
|
2018-02-23 00:38:54 +01:00
|
|
|
// Common structs representing JSON data received
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
struct PasswordData {
|
2018-06-01 00:18:50 +02:00
|
|
|
MasterPasswordHash: String
|
2018-02-23 00:38:54 +01:00
|
|
|
}
|
2018-05-04 19:25:50 +02:00
|
|
|
|
2018-05-26 23:04:23 +02:00
|
|
|
#[derive(Deserialize, Debug)]
|
2018-05-04 19:25:50 +02:00
|
|
|
#[serde(untagged)]
|
|
|
|
enum NumberOrString {
|
|
|
|
Number(i32),
|
|
|
|
String(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NumberOrString {
|
|
|
|
fn to_string(self) -> String {
|
|
|
|
match self {
|
|
|
|
NumberOrString::Number(n) => n.to_string(),
|
|
|
|
NumberOrString::String(s) => s
|
|
|
|
}
|
|
|
|
}
|
2018-05-26 23:04:23 +02:00
|
|
|
|
|
|
|
fn to_i32(self) -> Option<i32> {
|
|
|
|
match self {
|
|
|
|
NumberOrString::Number(n) => Some(n),
|
|
|
|
NumberOrString::String(s) => s.parse().ok()
|
|
|
|
}
|
|
|
|
}
|
2018-05-04 19:25:50 +02:00
|
|
|
}
|