2017-08-03 19:10:48 +00:00
|
|
|
extern crate byteorder;
|
|
|
|
extern crate futures;
|
|
|
|
extern crate linear_map;
|
|
|
|
extern crate protobuf;
|
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
extern crate librespot_core as core;
|
|
|
|
extern crate librespot_protocol as protocol;
|
|
|
|
|
2017-08-03 19:10:48 +00:00
|
|
|
pub mod cover;
|
|
|
|
|
2018-01-21 19:29:31 +00:00
|
|
|
use futures::Future;
|
2016-05-04 09:03:46 +00:00
|
|
|
use linear_map::LinearMap;
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2017-08-03 18:58:44 +00:00
|
|
|
use core::mercury::MercuryError;
|
|
|
|
use core::session::Session;
|
|
|
|
use core::util::{SpotifyId, FileId, StrChunksExt};
|
2015-06-23 14:38:29 +00:00
|
|
|
|
2016-01-27 10:40:00 +00:00
|
|
|
pub use protocol::metadata::AudioFile_Format as FileFormat;
|
2016-01-02 02:30:24 +00:00
|
|
|
|
2015-12-28 15:55:01 +00:00
|
|
|
fn countrylist_contains(list: &str, country: &str) -> bool {
|
|
|
|
list.chunks(2).any(|cc| cc == country)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_restrictions<'s, I>(restrictions: I, country: &str, catalogue: &str) -> bool
|
2016-01-25 09:44:48 +00:00
|
|
|
where I: IntoIterator<Item = &'s protocol::metadata::Restriction>
|
2016-01-02 15:19:39 +00:00
|
|
|
{
|
2017-06-01 10:04:22 +00:00
|
|
|
let mut forbidden = "".to_string();
|
2017-06-03 16:55:30 +00:00
|
|
|
let mut has_forbidden = false;
|
|
|
|
|
2017-06-01 10:04:22 +00:00
|
|
|
let mut allowed = "".to_string();
|
2017-06-03 16:55:30 +00:00
|
|
|
let mut has_allowed = false;
|
|
|
|
|
2017-06-01 10:04:22 +00:00
|
|
|
let rs = restrictions.into_iter().filter(|r|
|
|
|
|
r.get_catalogue_str().contains(&catalogue.to_owned())
|
|
|
|
);
|
|
|
|
|
|
|
|
for r in rs {
|
2017-06-03 16:55:30 +00:00
|
|
|
if r.has_countries_forbidden() {
|
|
|
|
forbidden.push_str(r.get_countries_forbidden());
|
|
|
|
has_forbidden = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.has_countries_allowed() {
|
|
|
|
allowed.push_str(r.get_countries_allowed());
|
|
|
|
has_allowed = true;
|
|
|
|
}
|
2017-06-01 10:04:22 +00:00
|
|
|
}
|
|
|
|
|
2017-06-03 19:30:04 +00:00
|
|
|
(has_forbidden || has_allowed) &&
|
2017-06-03 16:55:30 +00:00
|
|
|
(!has_forbidden || !countrylist_contains(forbidden.as_str(), country)) &&
|
|
|
|
(!has_allowed || countrylist_contains(allowed.as_str(), country))
|
2015-12-28 15:55:01 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 00:04:10 +00:00
|
|
|
pub trait Metadata : Send + Sized + 'static {
|
2015-06-23 14:38:29 +00:00
|
|
|
type Message: protobuf::MessageStatic;
|
2015-12-28 15:53:54 +00:00
|
|
|
|
2015-06-23 14:38:29 +00:00
|
|
|
fn base_url() -> &'static str;
|
2015-12-29 12:13:26 +00:00
|
|
|
fn parse(msg: &Self::Message, session: &Session) -> Self;
|
2017-05-16 00:04:10 +00:00
|
|
|
|
2018-01-21 19:29:31 +00:00
|
|
|
fn get(session: &Session, id: SpotifyId) -> Box<Future<Item = Self, Error = MercuryError>> {
|
2017-05-16 00:04:10 +00:00
|
|
|
let uri = format!("{}/{}", Self::base_url(), id.to_base16());
|
|
|
|
let request = session.mercury().get(uri);
|
|
|
|
|
|
|
|
let session = session.clone();
|
2018-01-21 19:29:31 +00:00
|
|
|
Box::new(request.and_then(move |response| {
|
2017-05-16 00:04:10 +00:00
|
|
|
let data = response.payload.first().expect("Empty payload");
|
|
|
|
let msg: Self::Message = protobuf::parse_from_bytes(data).unwrap();
|
|
|
|
|
|
|
|
Ok(Self::parse(&msg, &session))
|
2018-01-21 19:29:31 +00:00
|
|
|
}))
|
2017-05-16 00:04:10 +00:00
|
|
|
}
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 08:11:03 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2015-06-23 14:38:29 +00:00
|
|
|
pub struct Track {
|
2015-12-28 15:53:54 +00:00
|
|
|
pub id: SpotifyId,
|
2015-06-23 14:38:29 +00:00
|
|
|
pub name: String,
|
|
|
|
pub album: SpotifyId,
|
2016-01-25 09:44:48 +00:00
|
|
|
pub artists: Vec<SpotifyId>,
|
2016-05-04 09:03:46 +00:00
|
|
|
pub files: LinearMap<FileFormat, FileId>,
|
2015-12-28 15:55:01 +00:00
|
|
|
pub alternatives: Vec<SpotifyId>,
|
|
|
|
pub available: bool,
|
2015-12-28 15:53:54 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 08:11:03 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2015-12-28 15:53:54 +00:00
|
|
|
pub struct Album {
|
|
|
|
pub id: SpotifyId,
|
|
|
|
pub name: String,
|
|
|
|
pub artists: Vec<SpotifyId>,
|
2016-01-25 09:44:48 +00:00
|
|
|
pub tracks: Vec<SpotifyId>,
|
2016-01-02 15:19:39 +00:00
|
|
|
pub covers: Vec<FileId>,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 08:11:03 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2015-12-28 15:53:54 +00:00
|
|
|
pub struct Artist {
|
|
|
|
pub id: SpotifyId,
|
|
|
|
pub name: String,
|
2016-01-25 09:44:48 +00:00
|
|
|
pub top_tracks: Vec<SpotifyId>,
|
2015-12-28 15:53:54 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 00:04:10 +00:00
|
|
|
impl Metadata for Track {
|
2015-06-23 14:38:29 +00:00
|
|
|
type Message = protocol::metadata::Track;
|
2015-12-28 15:53:54 +00:00
|
|
|
|
|
|
|
fn base_url() -> &'static str {
|
|
|
|
"hm://metadata/3/track"
|
|
|
|
}
|
|
|
|
|
2015-12-29 12:13:26 +00:00
|
|
|
fn parse(msg: &Self::Message, session: &Session) -> Self {
|
2016-01-26 22:34:57 +00:00
|
|
|
let country = session.country();
|
2016-01-25 09:44:48 +00:00
|
|
|
|
|
|
|
let artists = msg.get_artist()
|
|
|
|
.iter()
|
|
|
|
.filter(|artist| artist.has_gid())
|
|
|
|
.map(|artist| SpotifyId::from_raw(artist.get_gid()))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let files = msg.get_file()
|
|
|
|
.iter()
|
|
|
|
.filter(|file| file.has_file_id())
|
|
|
|
.map(|file| {
|
|
|
|
let mut dst = [0u8; 20];
|
2017-01-29 16:25:09 +00:00
|
|
|
dst.clone_from_slice(file.get_file_id());
|
2016-05-04 09:03:46 +00:00
|
|
|
(file.get_format(), FileId(dst))
|
2016-01-25 09:44:48 +00:00
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2015-06-23 14:38:29 +00:00
|
|
|
Track {
|
2015-12-28 15:53:54 +00:00
|
|
|
id: SpotifyId::from_raw(msg.get_gid()),
|
2015-09-01 11:20:37 +00:00
|
|
|
name: msg.get_name().to_owned(),
|
2015-06-23 14:38:29 +00:00
|
|
|
album: SpotifyId::from_raw(msg.get_album().get_gid()),
|
2016-01-25 09:44:48 +00:00
|
|
|
artists: artists,
|
|
|
|
files: files,
|
2016-01-02 15:19:39 +00:00
|
|
|
alternatives: msg.get_alternative()
|
|
|
|
.iter()
|
|
|
|
.map(|alt| SpotifyId::from_raw(alt.get_gid()))
|
|
|
|
.collect(),
|
2016-01-25 09:44:48 +00:00
|
|
|
available: parse_restrictions(msg.get_restriction(),
|
|
|
|
&country,
|
2016-01-02 15:19:39 +00:00
|
|
|
"premium"),
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-16 00:04:10 +00:00
|
|
|
impl Metadata for Album {
|
2015-06-23 14:38:29 +00:00
|
|
|
type Message = protocol::metadata::Album;
|
2015-12-28 15:53:54 +00:00
|
|
|
|
|
|
|
fn base_url() -> &'static str {
|
|
|
|
"hm://metadata/3/album"
|
|
|
|
}
|
|
|
|
|
2015-12-29 22:12:02 +00:00
|
|
|
fn parse(msg: &Self::Message, _: &Session) -> Self {
|
2016-01-25 09:44:48 +00:00
|
|
|
let artists = msg.get_artist()
|
|
|
|
.iter()
|
|
|
|
.filter(|artist| artist.has_gid())
|
|
|
|
.map(|artist| SpotifyId::from_raw(artist.get_gid()))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let tracks = msg.get_disc()
|
|
|
|
.iter()
|
|
|
|
.flat_map(|disc| disc.get_track())
|
|
|
|
.filter(|track| track.has_gid())
|
|
|
|
.map(|track| SpotifyId::from_raw(track.get_gid()))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let covers = msg.get_cover_group()
|
|
|
|
.get_image()
|
|
|
|
.iter()
|
|
|
|
.filter(|image| image.has_file_id())
|
|
|
|
.map(|image| {
|
|
|
|
let mut dst = [0u8; 20];
|
2017-01-29 16:25:09 +00:00
|
|
|
dst.clone_from_slice(image.get_file_id());
|
2016-01-25 09:44:48 +00:00
|
|
|
FileId(dst)
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
2015-06-23 14:38:29 +00:00
|
|
|
Album {
|
2015-12-28 15:53:54 +00:00
|
|
|
id: SpotifyId::from_raw(msg.get_gid()),
|
2015-09-01 11:20:37 +00:00
|
|
|
name: msg.get_name().to_owned(),
|
2016-01-25 09:44:48 +00:00
|
|
|
artists: artists,
|
|
|
|
tracks: tracks,
|
|
|
|
covers: covers,
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-16 00:04:10 +00:00
|
|
|
impl Metadata for Artist {
|
2015-06-23 14:38:29 +00:00
|
|
|
type Message = protocol::metadata::Artist;
|
2015-12-28 15:53:54 +00:00
|
|
|
|
2015-06-23 14:38:29 +00:00
|
|
|
fn base_url() -> &'static str {
|
|
|
|
"hm://metadata/3/artist"
|
|
|
|
}
|
|
|
|
|
2016-01-25 09:44:48 +00:00
|
|
|
fn parse(msg: &Self::Message, session: &Session) -> Self {
|
2016-01-26 22:34:57 +00:00
|
|
|
let country = session.country();
|
2016-01-25 09:44:48 +00:00
|
|
|
|
2017-10-01 02:15:19 +00:00
|
|
|
let top_tracks: Vec<SpotifyId> = match msg.get_top_track()
|
2016-01-25 09:44:48 +00:00
|
|
|
.iter()
|
2017-10-01 02:15:19 +00:00
|
|
|
.find(|tt| !tt.has_country() || countrylist_contains(tt.get_country(), &country)) {
|
|
|
|
Some(tracks) => {
|
|
|
|
tracks.get_track()
|
|
|
|
.iter()
|
|
|
|
.filter(|track| track.has_gid())
|
|
|
|
.map(|track| SpotifyId::from_raw(track.get_gid()))
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
},
|
|
|
|
None => Vec::new()
|
|
|
|
};
|
|
|
|
|
2016-01-25 09:44:48 +00:00
|
|
|
|
2015-12-28 15:53:54 +00:00
|
|
|
Artist {
|
|
|
|
id: SpotifyId::from_raw(msg.get_gid()),
|
|
|
|
name: msg.get_name().to_owned(),
|
2016-01-25 09:44:48 +00:00
|
|
|
top_tracks: top_tracks
|
2015-06-23 14:38:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|