2018-02-10 01:00:55 +01:00
|
|
|
///
|
|
|
|
/// JWT Handling
|
|
|
|
///
|
|
|
|
|
|
|
|
use util::read_file;
|
2018-03-07 18:41:34 +01:00
|
|
|
use chrono::Duration;
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
use jwt;
|
|
|
|
use serde::ser::Serialize;
|
|
|
|
|
|
|
|
use CONFIG;
|
|
|
|
|
|
|
|
const JWT_ALGORITHM: jwt::Algorithm = jwt::Algorithm::RS256;
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
pub static ref DEFAULT_VALIDITY: Duration = Duration::hours(2);
|
2018-07-12 21:46:50 +02:00
|
|
|
pub static ref JWT_ISSUER: String = CONFIG.domain.clone();
|
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
static ref JWT_HEADER: jwt::Header = jwt::Header::new(JWT_ALGORITHM);
|
|
|
|
|
|
|
|
static ref PRIVATE_RSA_KEY: Vec<u8> = match read_file(&CONFIG.private_rsa_key) {
|
|
|
|
Ok(key) => key,
|
|
|
|
Err(e) => panic!("Error loading private RSA Key from {}\n Error: {}", CONFIG.private_rsa_key, e)
|
|
|
|
};
|
|
|
|
|
|
|
|
static ref PUBLIC_RSA_KEY: Vec<u8> = match read_file(&CONFIG.public_rsa_key) {
|
|
|
|
Ok(key) => key,
|
|
|
|
Err(e) => panic!("Error loading public RSA Key from {}\n Error: {}", CONFIG.public_rsa_key, e)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn encode_jwt<T: Serialize>(claims: &T) -> String {
|
|
|
|
match jwt::encode(&JWT_HEADER, claims, &PRIVATE_RSA_KEY) {
|
2018-06-11 15:44:37 +02:00
|
|
|
Ok(token) => token,
|
2018-02-10 01:00:55 +01:00
|
|
|
Err(e) => panic!("Error encoding jwt {}", e)
|
2018-06-11 15:44:37 +02:00
|
|
|
}
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn decode_jwt(token: &str) -> Result<JWTClaims, String> {
|
|
|
|
let validation = jwt::Validation {
|
|
|
|
leeway: 30, // 30 seconds
|
|
|
|
validate_exp: true,
|
|
|
|
validate_iat: true,
|
|
|
|
validate_nbf: true,
|
|
|
|
aud: None,
|
2018-07-12 21:46:50 +02:00
|
|
|
iss: Some(JWT_ISSUER.clone()),
|
2018-02-10 01:00:55 +01:00
|
|
|
sub: None,
|
|
|
|
algorithms: vec![JWT_ALGORITHM],
|
|
|
|
};
|
|
|
|
|
|
|
|
match jwt::decode(token, &PUBLIC_RSA_KEY, &validation) {
|
|
|
|
Ok(decoded) => Ok(decoded.claims),
|
|
|
|
Err(msg) => {
|
|
|
|
println!("Error validating jwt - {:#?}", msg);
|
|
|
|
Err(msg.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct JWTClaims {
|
|
|
|
// Not before
|
|
|
|
pub nbf: i64,
|
|
|
|
// Expiration time
|
|
|
|
pub exp: i64,
|
|
|
|
// Issuer
|
|
|
|
pub iss: String,
|
|
|
|
// Subject
|
|
|
|
pub sub: String,
|
|
|
|
|
|
|
|
pub premium: bool,
|
|
|
|
pub name: String,
|
|
|
|
pub email: String,
|
|
|
|
pub email_verified: bool,
|
|
|
|
|
2018-04-24 22:01:55 +02:00
|
|
|
pub orgowner: Vec<String>,
|
|
|
|
pub orgadmin: Vec<String>,
|
|
|
|
pub orguser: Vec<String>,
|
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
// user security_stamp
|
|
|
|
pub sstamp: String,
|
|
|
|
// device uuid
|
|
|
|
pub device: String,
|
|
|
|
// [ "api", "offline_access" ]
|
|
|
|
pub scope: Vec<String>,
|
|
|
|
// [ "Application" ]
|
|
|
|
pub amr: Vec<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Bearer token authentication
|
|
|
|
///
|
|
|
|
|
|
|
|
use rocket::Outcome;
|
|
|
|
use rocket::request::{self, Request, FromRequest};
|
|
|
|
|
|
|
|
use db::DbConn;
|
2018-07-16 11:23:45 +02:00
|
|
|
use db::models::{User, UserOrganization, UserOrgType, UserOrgStatus, Device};
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
pub struct Headers {
|
2018-02-15 01:49:36 +01:00
|
|
|
pub host: String,
|
2018-02-10 01:00:55 +01:00
|
|
|
pub device: Device,
|
|
|
|
pub user: User,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'r> FromRequest<'a, 'r> for Headers {
|
|
|
|
type Error = &'static str;
|
|
|
|
|
|
|
|
fn from_request(request: &'a Request<'r>) -> request::Outcome<Self, Self::Error> {
|
|
|
|
let headers = request.headers();
|
|
|
|
|
2018-02-15 01:49:36 +01:00
|
|
|
// Get host
|
2018-07-12 23:28:01 +02:00
|
|
|
let host = if CONFIG.domain_set {
|
|
|
|
CONFIG.domain.clone()
|
|
|
|
} else if let Some(referer) = headers.get_one("Referer") {
|
|
|
|
referer.to_string()
|
|
|
|
} else {
|
|
|
|
// Try to guess from the headers
|
|
|
|
use std::env;
|
|
|
|
|
|
|
|
let protocol = if let Some(proto) = headers.get_one("X-Forwarded-Proto") {
|
|
|
|
proto
|
|
|
|
} else if env::var("ROCKET_TLS").is_ok() {
|
|
|
|
"https"
|
|
|
|
} else {
|
|
|
|
"http"
|
|
|
|
};
|
|
|
|
|
2018-07-13 00:33:28 +02:00
|
|
|
let host = if let Some(host) = headers.get_one("X-Forwarded-Host") {
|
|
|
|
host
|
|
|
|
} else if let Some(host) = headers.get_one("Host") {
|
2018-07-12 23:28:01 +02:00
|
|
|
host
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
};
|
|
|
|
|
|
|
|
format!("{}://{}", protocol, host)
|
2018-02-15 01:49:36 +01:00
|
|
|
};
|
|
|
|
|
2018-02-15 00:53:11 +01:00
|
|
|
// Get access_token
|
2018-02-10 01:00:55 +01:00
|
|
|
let access_token: &str = match request.headers().get_one("Authorization") {
|
|
|
|
Some(a) => {
|
2018-02-15 19:05:57 +01:00
|
|
|
match a.rsplit("Bearer ").next() {
|
|
|
|
Some(split) => split,
|
|
|
|
None => err_handler!("No access token provided")
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
None => err_handler!("No access token provided")
|
|
|
|
};
|
|
|
|
|
2018-02-15 00:53:11 +01:00
|
|
|
// Check JWT token is valid and get device and user from it
|
2018-02-10 01:00:55 +01:00
|
|
|
let claims: JWTClaims = match decode_jwt(access_token) {
|
|
|
|
Ok(claims) => claims,
|
2018-02-23 00:38:54 +01:00
|
|
|
Err(_) => err_handler!("Invalid claim")
|
2018-02-10 01:00:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
let device_uuid = claims.device;
|
|
|
|
let user_uuid = claims.sub;
|
|
|
|
|
|
|
|
let conn = match request.guard::<DbConn>() {
|
|
|
|
Outcome::Success(conn) => conn,
|
|
|
|
_ => err_handler!("Error getting DB")
|
|
|
|
};
|
|
|
|
|
|
|
|
let device = match Device::find_by_uuid(&device_uuid, &conn) {
|
|
|
|
Some(device) => device,
|
|
|
|
None => err_handler!("Invalid device id")
|
|
|
|
};
|
|
|
|
|
|
|
|
let user = match User::find_by_uuid(&user_uuid, &conn) {
|
|
|
|
Some(user) => user,
|
|
|
|
None => err_handler!("Device has no user associated")
|
|
|
|
};
|
|
|
|
|
|
|
|
if user.security_stamp != claims.sstamp {
|
|
|
|
err_handler!("Invalid security stamp")
|
|
|
|
}
|
|
|
|
|
2018-02-15 19:05:57 +01:00
|
|
|
Outcome::Success(Headers { host, device, user })
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|
2018-05-30 14:28:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct OrgHeaders {
|
|
|
|
pub host: String,
|
|
|
|
pub device: Device,
|
|
|
|
pub user: User,
|
|
|
|
pub org_user_type: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'r> FromRequest<'a, 'r> for OrgHeaders {
|
|
|
|
type Error = &'static str;
|
|
|
|
|
|
|
|
fn from_request(request: &'a Request<'r>) -> request::Outcome<Self, Self::Error> {
|
|
|
|
match request.guard::<Headers>() {
|
|
|
|
Outcome::Forward(f) => Outcome::Forward(f),
|
|
|
|
Outcome::Failure(f) => Outcome::Failure(f),
|
|
|
|
Outcome::Success(headers) => {
|
|
|
|
// org_id is expected to be the first dynamic param
|
|
|
|
match request.get_param::<String>(0) {
|
|
|
|
Err(_) => err_handler!("Error getting the organization id"),
|
|
|
|
Ok(org_id) => {
|
|
|
|
let conn = match request.guard::<DbConn>() {
|
|
|
|
Outcome::Success(conn) => conn,
|
|
|
|
_ => err_handler!("Error getting DB")
|
|
|
|
};
|
|
|
|
|
|
|
|
let org_user = match UserOrganization::find_by_user_and_org(&headers.user.uuid, &org_id, &conn) {
|
2018-07-16 11:23:45 +02:00
|
|
|
Some(user) => {
|
|
|
|
if user.status == UserOrgStatus::Confirmed as i32 {
|
|
|
|
user
|
|
|
|
} else {
|
|
|
|
err_handler!("The current user isn't confirmed member of the organization")
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 14:28:31 +02:00
|
|
|
None => err_handler!("The current user isn't member of the organization")
|
|
|
|
};
|
|
|
|
|
|
|
|
Outcome::Success(Self{
|
|
|
|
host: headers.host,
|
|
|
|
device: headers.device,
|
|
|
|
user: headers.user,
|
|
|
|
org_user_type: org_user.type_,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct AdminHeaders {
|
|
|
|
pub host: String,
|
|
|
|
pub device: Device,
|
|
|
|
pub user: User,
|
|
|
|
pub org_user_type: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'r> FromRequest<'a, 'r> for AdminHeaders {
|
|
|
|
type Error = &'static str;
|
|
|
|
|
|
|
|
fn from_request(request: &'a Request<'r>) -> request::Outcome<Self, Self::Error> {
|
|
|
|
match request.guard::<OrgHeaders>() {
|
|
|
|
Outcome::Forward(f) => Outcome::Forward(f),
|
|
|
|
Outcome::Failure(f) => Outcome::Failure(f),
|
|
|
|
Outcome::Success(headers) => {
|
|
|
|
if headers.org_user_type > UserOrgType::Admin as i32 {
|
|
|
|
err_handler!("You need to be Admin or Owner to call this endpoint")
|
|
|
|
} else {
|
|
|
|
Outcome::Success(Self{
|
|
|
|
host: headers.host,
|
|
|
|
device: headers.device,
|
|
|
|
user: headers.user,
|
|
|
|
org_user_type: headers.org_user_type,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct OwnerHeaders {
|
|
|
|
pub host: String,
|
|
|
|
pub device: Device,
|
|
|
|
pub user: User,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'r> FromRequest<'a, 'r> for OwnerHeaders {
|
|
|
|
type Error = &'static str;
|
|
|
|
|
|
|
|
fn from_request(request: &'a Request<'r>) -> request::Outcome<Self, Self::Error> {
|
|
|
|
match request.guard::<OrgHeaders>() {
|
|
|
|
Outcome::Forward(f) => Outcome::Forward(f),
|
|
|
|
Outcome::Failure(f) => Outcome::Failure(f),
|
|
|
|
Outcome::Success(headers) => {
|
|
|
|
if headers.org_user_type > UserOrgType::Owner as i32 {
|
|
|
|
err_handler!("You need to be Owner to call this endpoint")
|
|
|
|
} else {
|
|
|
|
Outcome::Success(Self{
|
|
|
|
host: headers.host,
|
|
|
|
device: headers.device,
|
|
|
|
user: headers.user,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-10 01:00:55 +01:00
|
|
|
}
|