2016-03-13 20:03:09 +00:00
|
|
|
const APRESOLVE_ENDPOINT : &'static str = "http://apresolve.spotify.com/";
|
|
|
|
|
|
|
|
use hyper;
|
|
|
|
use std::io::Read;
|
|
|
|
use rustc_serialize::json;
|
|
|
|
|
|
|
|
#[derive(RustcDecodable)]
|
|
|
|
pub struct APResolveData {
|
|
|
|
ap_list: Vec<String>
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn apresolve() -> Result<Vec<String>, ()> {
|
|
|
|
let client = hyper::client::Client::new();
|
|
|
|
|
2016-03-16 00:05:05 +00:00
|
|
|
let mut response = client.get(APRESOLVE_ENDPOINT).send().unwrap();
|
|
|
|
let mut data = String::new();
|
|
|
|
response.read_to_string(&mut data).unwrap();
|
2016-03-13 20:03:09 +00:00
|
|
|
|
2016-03-16 00:05:05 +00:00
|
|
|
let data : APResolveData = json::decode(&data).unwrap();
|
2016-03-13 20:03:09 +00:00
|
|
|
|
|
|
|
Ok(data.ap_list)
|
|
|
|
}
|