2017-05-10 15:26:48 +00:00
|
|
|
use futures::{Future, BoxFuture};
|
|
|
|
use serde_json;
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
use core::mercury::MercuryError;
|
|
|
|
use core::session::Session;
|
2017-05-10 15:26:48 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, Clone)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Token {
|
|
|
|
pub access_token: String,
|
|
|
|
pub expires_in: u32,
|
|
|
|
pub token_type: String,
|
|
|
|
pub scope: Vec<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_token(session: &Session, client_id: &str, scopes: &str) -> BoxFuture<Token, MercuryError> {
|
|
|
|
let url = format!("hm://keymaster/token/authenticated?client_id={}&scope={}",
|
|
|
|
client_id, scopes);
|
|
|
|
session.mercury().get(url).map(move |response| {
|
|
|
|
let data = response.payload.first().expect("Empty payload");
|
|
|
|
let data = String::from_utf8(data.clone()).unwrap();
|
|
|
|
let token : Token = serde_json::from_str(&data).unwrap();
|
|
|
|
|
|
|
|
token
|
|
|
|
}).boxed()
|
|
|
|
}
|