librespot/core/src/apresolve.rs

89 lines
2.9 KiB
Rust
Raw Normal View History

const AP_FALLBACK: &'static str = "ap.spotify.com:443";
2018-02-11 11:37:08 +00:00
const APRESOLVE_ENDPOINT: &'static str = "http://apresolve.spotify.com/";
2018-03-23 15:52:24 +00:00
use futures::{Future, Stream};
use hyper::client::HttpConnector;
use hyper::{self, Client, Method, Request, Uri};
use hyper_proxy::{Intercept, Proxy, ProxyConnector};
2016-07-06 01:29:38 +00:00
use serde_json;
2018-02-11 11:37:08 +00:00
use std::str::FromStr;
use tokio_core::reactor::Handle;
2018-02-11 11:37:08 +00:00
error_chain!{}
2017-01-19 22:45:24 +00:00
2016-07-06 01:29:38 +00:00
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct APResolveData {
2018-02-11 11:37:08 +00:00
ap_list: Vec<String>,
}
2018-03-23 15:52:24 +00:00
fn apresolve(handle: &Handle, proxy: &Option<String>) -> Box<Future<Item = String, Error = Error>> {
let url = Uri::from_str(APRESOLVE_ENDPOINT).expect("invalid AP resolve URL");
2018-03-23 15:52:24 +00:00
let use_proxy = proxy.is_some();
2018-03-23 15:52:24 +00:00
let mut req = Request::new(Method::Get, url.clone());
let response = match proxy {
&Some(ref val) => {
let proxy_url = Uri::from_str(&val).expect("invalid http proxy");
let proxy = Proxy::new(Intercept::All, proxy_url);
let connector = HttpConnector::new(4, handle);
let proxy_connector = ProxyConnector::from_proxy_unsecured(connector, proxy);
if let Some(headers) = proxy_connector.http_headers(&url) {
req.headers_mut().extend(headers.iter());
req.set_proxy(true);
}
let client = Client::configure().connector(proxy_connector).build(handle);
client.request(req)
}
_ => {
let client = Client::new(handle);
client.request(req)
}
};
let body = response.and_then(|response| {
response.body().fold(Vec::new(), |mut acc, chunk| {
acc.extend_from_slice(chunk.as_ref());
Ok::<_, hyper::Error>(acc)
})
});
let body = body.then(|result| result.chain_err(|| "HTTP error"));
2018-02-11 11:37:08 +00:00
let body = body.and_then(|body| String::from_utf8(body).chain_err(|| "invalid UTF8 in response"));
2018-02-11 11:37:08 +00:00
let data =
body.and_then(|body| serde_json::from_str::<APResolveData>(&body).chain_err(|| "invalid JSON"));
2018-03-23 15:52:24 +00:00
let ap = data.and_then(move |data| {
let mut aps = data.ap_list.iter().filter(|ap| {
if use_proxy {
// It is unlikely that the proxy will accept CONNECT on anything other than 443.
Uri::from_str(ap)
.ok()
.map_or(false, |uri| uri.port().map_or(false, |port| port == 443))
} else {
true
}
});
let ap = aps.next().ok_or("empty AP List")?;
Ok(ap.clone())
});
Box::new(ap)
}
2016-12-31 13:30:01 +00:00
pub(crate) fn apresolve_or_fallback<E>(
handle: &Handle,
proxy: &Option<String>,
) -> Box<Future<Item = String, Error = E>>
2018-02-11 11:37:08 +00:00
where
E: 'static,
{
2018-03-23 15:52:24 +00:00
let ap = apresolve(handle, proxy).or_else(|e| {
warn!("Failed to resolve Access Point: {}", e.description());
warn!("Using fallback \"{}\"", AP_FALLBACK);
Ok(AP_FALLBACK.into())
});
Box::new(ap)
}