Implement Client::auth_uri

This commit is contained in:
Curtis McEnroe 2015-12-21 22:50:41 -05:00
parent 0496dbc8fd
commit a7710660c1
1 changed files with 27 additions and 0 deletions

View File

@ -3,6 +3,7 @@
use std::marker::PhantomData;
use hyper;
use url::{self, form_urlencoded, Url};
use provider::Provider;
@ -45,4 +46,30 @@ impl<P: Provider> Client<P> {
provider: PhantomData,
}
}
/// Returns an authorization endpoint URI to direct the user to.
///
/// See [RFC 6749, section 3.1](http://tools.ietf.org/html/rfc6749#section-3.1).
pub fn auth_uri(&self, scope: Option<&str>, state: Option<&str>) -> Result<String, url::ParseError>
{
let mut uri = try!(Url::parse(P::auth_uri()));
let mut query_pairs = vec![
("response_type", "code"),
("client_id", &self.client_id),
];
if let Some(ref redirect_uri) = self.redirect_uri {
query_pairs.push(("redirect_uri", redirect_uri));
}
if let Some(scope) = scope {
query_pairs.push(("scope", scope));
}
if let Some(state) = state {
query_pairs.push(("state", state));
}
uri.set_query_from_pairs(query_pairs.iter());
Ok(uri.serialize())
}
}