mirror of
https://github.com/OMGeeky/yup-oauth2.git
synced 2025-12-29 23:53:35 +01:00
* Return `Result<Token, Box<Error>>` type wherever feasible * increment version to 0.3.5 * remove all usages of depreceated std items
165 lines
6.0 KiB
Rust
165 lines
6.0 KiB
Rust
use common::{FlowType, JsonError};
|
|
|
|
use chrono::UTC;
|
|
use hyper;
|
|
use hyper::header::ContentType;
|
|
use rustc_serialize::json;
|
|
use url::form_urlencoded;
|
|
use super::Token;
|
|
use itertools::Itertools;
|
|
use std::borrow::BorrowMut;
|
|
use std::io::Read;
|
|
use std::iter::IntoIterator;
|
|
|
|
/// Implements the [Outh2 Refresh Token Flow](https://developers.google.com/youtube/v3/guides/authentication#devices).
|
|
///
|
|
/// Refresh an expired access token, as obtained by any other authentication flow.
|
|
/// This flow is useful when your `Token` is expired and allows to obtain a new
|
|
/// and valid access token.
|
|
pub struct RefreshFlow<C> {
|
|
client: C,
|
|
result: RefreshResult,
|
|
}
|
|
|
|
|
|
/// All possible outcomes of the refresh flow
|
|
pub enum RefreshResult {
|
|
/// Indicates connection failure
|
|
Error(hyper::HttpError),
|
|
/// The server did not answer with a new token, providing the server message
|
|
RefreshError(String, Option<String>),
|
|
/// The refresh operation finished successfully, providing a new `Token`
|
|
Success(Token),
|
|
}
|
|
|
|
impl<C> RefreshFlow<C>
|
|
where C: BorrowMut<hyper::Client> {
|
|
|
|
pub fn new(client: C) -> RefreshFlow<C> {
|
|
RefreshFlow {
|
|
client: client,
|
|
result: RefreshResult::Error(hyper::HttpError::HttpStatusError),
|
|
}
|
|
}
|
|
|
|
/// Attempt to refresh the given token, and obtain a new, valid one.
|
|
/// If the `RefreshResult` is `RefreshResult::Error`, you may retry within an interval
|
|
/// of your choice. If it is `RefreshResult:RefreshError`, your refresh token is invalid
|
|
/// or your authorization was revoked. Therefore no further attempt shall be made,
|
|
/// and you will have to re-authorize using the `DeviceFlow`
|
|
///
|
|
/// # Arguments
|
|
/// * `authentication_url` - URL matching the one used in the flow that obtained
|
|
/// your refresh_token in the first place.
|
|
/// * `client_id` & `client_secret` - as obtained when [registering your application](https://developers.google.com/youtube/registering_an_application)
|
|
/// * `refresh_token` - obtained during previous call to `DeviceFlow::poll_token()` or equivalent
|
|
///
|
|
/// # Examples
|
|
/// Please see the crate landing page for an example.
|
|
pub fn refresh_token<'b, I, T>( &mut self,
|
|
flow_type: FlowType,
|
|
client_id: &str,
|
|
client_secret: &str,
|
|
refresh_token: &str,
|
|
scopes: I)
|
|
-> &RefreshResult
|
|
where T: AsRef<str> + Ord,
|
|
I: IntoIterator<Item=&'b T> {
|
|
if let RefreshResult::Success(_) = self.result {
|
|
return &self.result;
|
|
}
|
|
|
|
let req = form_urlencoded::serialize(
|
|
[("client_id", client_id),
|
|
("client_secret", client_secret),
|
|
("refresh_token", refresh_token),
|
|
("grant_type", "refresh_token"),
|
|
("scope", scopes.into_iter()
|
|
.map(|s| s.as_ref())
|
|
.intersperse(" ")
|
|
.collect::<String>()
|
|
.as_ref())]
|
|
.iter().cloned());
|
|
|
|
let json_str =
|
|
match self.client.borrow_mut().post(flow_type.as_ref())
|
|
.header(ContentType("application/x-www-form-urlencoded".parse().unwrap()))
|
|
.body(&*req)
|
|
.send() {
|
|
Err(err) => {
|
|
self.result = RefreshResult::Error(err);
|
|
return &self.result;
|
|
}
|
|
Ok(mut res) => {
|
|
let mut json_str = String::new();
|
|
res.read_to_string(&mut json_str).ok().expect("string decode must work");
|
|
json_str
|
|
}
|
|
};
|
|
|
|
#[derive(RustcDecodable)]
|
|
struct JsonToken {
|
|
access_token: String,
|
|
token_type: String,
|
|
expires_in: i64,
|
|
}
|
|
|
|
match json::decode::<JsonError>(&json_str) {
|
|
Err(_) => {},
|
|
Ok(res) => {
|
|
self.result = RefreshResult::RefreshError(res.error, res.error_description);
|
|
return &self.result;
|
|
}
|
|
}
|
|
|
|
let t: JsonToken = json::decode(&json_str).unwrap();
|
|
self.result = RefreshResult::Success(Token {
|
|
access_token: t.access_token,
|
|
token_type: t.token_type,
|
|
refresh_token: refresh_token.to_string(),
|
|
expires_in: None,
|
|
expires_in_timestamp: Some(UTC::now().timestamp() + t.expires_in),
|
|
});
|
|
|
|
&self.result
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use hyper;
|
|
use std::default::Default;
|
|
use super::*;
|
|
use super::super::FlowType;
|
|
|
|
mock_connector_in_order!(MockGoogleRefresh {
|
|
"HTTP/1.1 200 OK\r\n\
|
|
Server: BOGUS\r\n\
|
|
\r\n\
|
|
{\r\n\
|
|
\"access_token\":\"1/fFAGRNJru1FTz70BzhT3Zg\",\r\n\
|
|
\"expires_in\":3920,\r\n\
|
|
\"token_type\":\"Bearer\"\r\n\
|
|
}"
|
|
});
|
|
|
|
#[test]
|
|
fn refresh_flow() {
|
|
let mut c = hyper::Client::with_connector(<MockGoogleRefresh as Default>::default());
|
|
let mut flow = RefreshFlow::new(
|
|
&mut c);
|
|
|
|
|
|
match *flow.refresh_token(FlowType::Device,
|
|
"bogus", "secret", "bogus_refresh_token", &["scope.url"]) {
|
|
RefreshResult::Success(ref t) => {
|
|
assert_eq!(t.access_token, "1/fFAGRNJru1FTz70BzhT3Zg");
|
|
assert!(!t.expired());
|
|
},
|
|
_ => unreachable!()
|
|
}
|
|
}
|
|
}
|