My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/prototypes/spotify-dump/src/main.rs

57 lines
1.7 KiB

use env_logger;
use std::env;
use tokio_core::reactor::Core;
use librespot::core::authentication::Credentials;
use librespot::core::config::SessionConfig;
use librespot::core::session::Session;
use librespot::core::spotify_id::SpotifyId;
use librespot::metadata::{Metadata, Playlist, Track, Album};
use std::collections::HashMap;
fn main() {
env_logger::init();
let mut core = Core::new().unwrap();
let handle = core.handle();
let session_config = SessionConfig::default();
let args: Vec<_> = env::args().collect();
if args.len() != 4 {
println!("Usage: {} USERNAME PASSWORD PLAYLIST", args[0]);
std::process::exit(1);
}
let username = args[1].to_owned();
let password = args[2].to_owned();
let credentials = Credentials::with_password(username, password);
let uri_split = args[3].split(":");
let uri_parts: Vec<&str> = uri_split.collect();
println!("{}, {}, {}", uri_parts[0], uri_parts[1], uri_parts[2]);
let plist_uri = SpotifyId::from_base62(uri_parts[2]).unwrap();
let session = core
.run(Session::connect(session_config, credentials, None, handle))
.unwrap();
let plist = core.run(Playlist::get(&session, plist_uri)).unwrap();
let mut albums = HashMap::new();
for track_id in plist.tracks {
let plist_track = core.run(Track::get(&session, track_id)).unwrap();
let album_id = plist_track.album;
if !albums.contains_key(&album_id) {
println!("New album ID: {:?}", album_id);
let album = core.run(Album::get(&session, album_id)).unwrap();
albums.insert(album_id, album.name);
}
}
for (_, name) in albums {
println!("Album: {} ", name);
}
}