2015-07-19 20:36:14 +00:00
|
|
|
extern crate getopts;
|
2015-07-09 19:08:56 +00:00
|
|
|
extern crate librespot;
|
2015-07-19 20:36:14 +00:00
|
|
|
extern crate rpassword;
|
2015-08-25 21:51:49 +00:00
|
|
|
extern crate env_logger;
|
2016-03-24 09:31:33 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2015-04-25 20:32:07 +00:00
|
|
|
|
2016-01-01 23:16:12 +00:00
|
|
|
use rpassword::read_password;
|
2015-06-23 14:38:29 +00:00
|
|
|
use std::clone::Clone;
|
2015-05-09 10:07:24 +00:00
|
|
|
use std::fs::File;
|
2015-07-19 20:36:14 +00:00
|
|
|
use std::io::{stdout, Read, Write};
|
2016-03-14 23:41:51 +00:00
|
|
|
use std::path::PathBuf;
|
2015-07-02 17:24:25 +00:00
|
|
|
use std::thread;
|
2015-08-25 21:51:49 +00:00
|
|
|
use std::env;
|
2015-07-19 20:36:14 +00:00
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
use librespot::audio_backend::BACKENDS;
|
2016-03-17 03:06:56 +00:00
|
|
|
use librespot::authentication::{Credentials, facebook_login, discovery_login};
|
|
|
|
use librespot::cache::{Cache, DefaultCache, NoCache};
|
2015-07-08 19:50:44 +00:00
|
|
|
use librespot::player::Player;
|
2016-01-02 02:30:24 +00:00
|
|
|
use librespot::session::{Bitrate, Config, Session};
|
2015-07-08 19:50:44 +00:00
|
|
|
use librespot::spirc::SpircManager;
|
2016-03-17 03:31:57 +00:00
|
|
|
use librespot::version;
|
2016-03-16 00:05:05 +00:00
|
|
|
|
2016-03-14 23:41:51 +00:00
|
|
|
fn usage(program: &str, opts: &getopts::Options) -> String {
|
2015-07-19 20:36:14 +00:00
|
|
|
let brief = format!("Usage: {} [options]", program);
|
|
|
|
format!("{}", opts.usage(&brief))
|
|
|
|
}
|
|
|
|
|
2016-03-14 23:41:51 +00:00
|
|
|
#[cfg(feature = "static-appkey")]
|
|
|
|
static APPKEY: Option<&'static [u8]> = Some(include_bytes!(concat!(env!("CARGO_MANIFEST_DIR"), "/spotify_appkey.key")));
|
|
|
|
#[cfg(not(feature = "static-appkey"))]
|
|
|
|
static APPKEY: Option<&'static [u8]> = None;
|
|
|
|
|
2015-04-25 20:32:07 +00:00
|
|
|
fn main() {
|
2016-04-24 08:54:56 +00:00
|
|
|
if env::var("RUST_LOG").is_err() {
|
|
|
|
env::set_var("RUST_LOG", "debug")
|
2015-08-25 21:51:49 +00:00
|
|
|
}
|
|
|
|
env_logger::init().unwrap();
|
|
|
|
|
2016-03-24 09:31:33 +00:00
|
|
|
info!("librespot {} ({}). Built on {}.",
|
2016-03-17 03:31:57 +00:00
|
|
|
version::short_sha(),
|
|
|
|
version::commit_date(),
|
|
|
|
version::short_now());
|
|
|
|
|
2015-07-19 20:36:14 +00:00
|
|
|
let args: Vec<String> = std::env::args().collect();
|
|
|
|
let program = args[0].clone();
|
|
|
|
|
2016-03-14 23:41:51 +00:00
|
|
|
let mut opts = getopts::Options::new();
|
|
|
|
opts.optopt("u", "username", "Username to sign in with", "USERNAME")
|
|
|
|
.optopt("p", "password", "Password", "PASSWORD")
|
2016-03-14 22:56:50 +00:00
|
|
|
.optopt("c", "cache", "Path to a directory where files will be cached.", "CACHE")
|
2016-01-02 02:30:24 +00:00
|
|
|
.reqopt("n", "name", "Device name", "NAME")
|
2016-03-20 16:16:11 +00:00
|
|
|
.optopt("b", "bitrate", "Bitrate (96, 160 or 320). Defaults to 160", "BITRATE")
|
|
|
|
.optopt("", "backend", "Audio backend to use. Use '?' to list options", "BACKEND");
|
2016-01-02 02:30:24 +00:00
|
|
|
|
2016-03-14 23:41:51 +00:00
|
|
|
if APPKEY.is_none() {
|
|
|
|
opts.reqopt("a", "appkey", "Path to a spotify appkey", "APPKEY");
|
|
|
|
} else {
|
|
|
|
opts.optopt("a", "appkey", "Path to a spotify appkey", "APPKEY");
|
|
|
|
};
|
|
|
|
|
2016-03-16 00:05:05 +00:00
|
|
|
if cfg!(feature = "facebook") {
|
|
|
|
opts.optflag("", "facebook", "Login with a Facebook account");
|
|
|
|
}
|
|
|
|
|
2015-07-19 20:36:14 +00:00
|
|
|
let matches = match opts.parse(&args[1..]) {
|
2016-01-02 15:19:39 +00:00
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => {
|
|
|
|
print!("Error: {}\n{}", f.to_string(), usage(&*program, &opts));
|
|
|
|
return;
|
2015-07-19 20:36:14 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
let make_backend = match matches.opt_str("backend").as_ref().map(AsRef::as_ref) {
|
|
|
|
Some("?") => {
|
|
|
|
println!("Available Backends : ");
|
|
|
|
for (&(name, _), idx) in BACKENDS.iter().zip(0..) {
|
|
|
|
if idx == 0 {
|
|
|
|
println!("- {} (default)", name);
|
|
|
|
} else {
|
|
|
|
println!("- {}", name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
Some(name) => {
|
|
|
|
BACKENDS.iter().find(|backend| name == backend.0).expect("Unknown backend").1
|
|
|
|
},
|
|
|
|
None => {
|
|
|
|
BACKENDS.first().expect("No backends were enabled at build time").1
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-14 23:41:51 +00:00
|
|
|
let appkey = matches.opt_str("a").map(|appkey_path| {
|
|
|
|
let mut file = File::open(appkey_path)
|
|
|
|
.expect("Could not open app key.");
|
2016-01-01 23:16:12 +00:00
|
|
|
|
|
|
|
let mut data = Vec::new();
|
|
|
|
file.read_to_end(&mut data).unwrap();
|
|
|
|
|
|
|
|
data
|
2016-03-14 23:41:51 +00:00
|
|
|
}).or_else(|| APPKEY.map(ToOwned::to_owned)).unwrap();
|
2015-07-19 20:36:14 +00:00
|
|
|
|
2016-01-02 01:30:03 +00:00
|
|
|
let username = matches.opt_str("u");
|
2015-07-19 20:36:14 +00:00
|
|
|
let name = matches.opt_str("n").unwrap();
|
|
|
|
|
2016-03-16 04:07:04 +00:00
|
|
|
let cache = matches.opt_str("c").map(|cache_location| {
|
|
|
|
Box::new(DefaultCache::new(PathBuf::from(cache_location)).unwrap()) as Box<Cache + Send + Sync>
|
|
|
|
}).unwrap_or_else(|| Box::new(NoCache) as Box<Cache + Send + Sync>);
|
|
|
|
|
2016-01-02 02:30:24 +00:00
|
|
|
let bitrate = match matches.opt_str("b").as_ref().map(String::as_ref) {
|
2016-01-02 15:19:39 +00:00
|
|
|
None => Bitrate::Bitrate160, // default value
|
2016-01-02 02:30:24 +00:00
|
|
|
|
2016-01-02 15:19:39 +00:00
|
|
|
Some("96") => Bitrate::Bitrate96,
|
2016-01-02 02:30:24 +00:00
|
|
|
Some("160") => Bitrate::Bitrate160,
|
|
|
|
Some("320") => Bitrate::Bitrate320,
|
2016-01-02 15:19:39 +00:00
|
|
|
Some(b) => panic!("Invalid bitrate {}", b),
|
2016-01-02 02:30:24 +00:00
|
|
|
};
|
|
|
|
|
2015-05-09 10:07:24 +00:00
|
|
|
let config = Config {
|
|
|
|
application_key: appkey,
|
2016-03-17 03:31:57 +00:00
|
|
|
user_agent: version::version_string(),
|
2016-01-01 23:16:12 +00:00
|
|
|
device_name: name,
|
2016-01-02 15:19:39 +00:00
|
|
|
bitrate: bitrate,
|
2015-05-09 10:07:24 +00:00
|
|
|
};
|
2015-12-30 18:50:23 +00:00
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
let stored_credentials = cache.get_credentials();
|
|
|
|
|
2016-03-16 04:07:04 +00:00
|
|
|
let session = Session::new(config, cache);
|
2016-03-13 22:35:09 +00:00
|
|
|
|
2016-03-16 00:05:05 +00:00
|
|
|
let credentials = username.map(|username| {
|
|
|
|
let password = matches.opt_str("p")
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
print!("Password: ");
|
|
|
|
stdout().flush().unwrap();
|
|
|
|
read_password().unwrap()
|
|
|
|
});
|
|
|
|
|
2016-03-13 22:35:09 +00:00
|
|
|
Credentials::with_password(username, password)
|
2016-03-16 00:05:05 +00:00
|
|
|
}).or_else(|| {
|
|
|
|
if cfg!(feature = "facebook") && matches.opt_present("facebook") {
|
|
|
|
Some(facebook_login().unwrap())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2016-03-20 16:16:11 +00:00
|
|
|
}).or(stored_credentials)
|
|
|
|
.or_else(|| {
|
2016-03-17 03:06:56 +00:00
|
|
|
if cfg!(feature = "discovery") {
|
2016-03-24 09:31:33 +00:00
|
|
|
info!("No username provided and no stored credentials, starting discovery ...");
|
2016-03-17 03:06:56 +00:00
|
|
|
Some(discovery_login(&session.config().device_name,
|
|
|
|
session.device_id()).unwrap())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}).expect("No username provided and no stored credentials.");
|
2016-03-13 20:45:31 +00:00
|
|
|
|
2016-03-13 22:35:09 +00:00
|
|
|
let reusable_credentials = session.login(credentials).unwrap();
|
2016-03-16 04:07:04 +00:00
|
|
|
session.cache().put_credentials(&reusable_credentials);
|
2015-05-09 10:07:24 +00:00
|
|
|
|
2016-03-20 16:16:11 +00:00
|
|
|
let player = Player::new(session.clone(), move || make_backend());
|
|
|
|
|
2016-03-13 22:35:09 +00:00
|
|
|
let spirc = SpircManager::new(session.clone(), player);
|
2016-01-02 15:19:39 +00:00
|
|
|
thread::spawn(move || spirc.run());
|
2015-07-02 17:24:25 +00:00
|
|
|
|
2016-01-01 23:16:12 +00:00
|
|
|
loop {
|
|
|
|
session.poll();
|
|
|
|
}
|
2015-07-01 17:49:03 +00:00
|
|
|
}
|