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-04-25 20:32:07 +00:00
|
|
|
|
2016-01-01 23:16:12 +00:00
|
|
|
use getopts::Options;
|
|
|
|
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-01-01 23:16:12 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2015-07-02 17:24:25 +00:00
|
|
|
use std::thread;
|
2015-07-19 20:36:14 +00:00
|
|
|
|
2016-01-01 23:16:12 +00:00
|
|
|
use librespot::discovery::DiscoveryManager;
|
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-01-01 23:16:12 +00:00
|
|
|
use librespot::util::version::version_string;
|
2015-04-25 20:32:07 +00:00
|
|
|
|
2015-12-30 16:37:00 +00:00
|
|
|
static PASSWORD_ENV_NAME: &'static str = "SPOTIFY_PASSWORD";
|
|
|
|
|
2015-07-19 20:36:14 +00:00
|
|
|
fn usage(program: &str, opts: &Options) -> String {
|
|
|
|
let brief = format!("Usage: {} [options]", program);
|
|
|
|
format!("{}", opts.usage(&brief))
|
|
|
|
}
|
|
|
|
|
2015-04-25 20:32:07 +00:00
|
|
|
fn main() {
|
2015-07-19 20:36:14 +00:00
|
|
|
let args: Vec<String> = std::env::args().collect();
|
|
|
|
let program = args[0].clone();
|
|
|
|
|
|
|
|
let mut opts = Options::new();
|
2016-01-02 02:30:24 +00:00
|
|
|
opts.reqopt("a", "appkey", "Path to a spotify appkey", "APPKEY")
|
|
|
|
.optopt("u", "username", "Username to sign in with (optional)", "USERNAME")
|
|
|
|
.optopt("p", "password", "Password (optional)", "PASSWORD")
|
|
|
|
.reqopt("c", "cache", "Path to a directory where files will be cached.", "CACHE")
|
|
|
|
.reqopt("n", "name", "Device name", "NAME")
|
|
|
|
.optopt("b", "bitrate", "Bitrate (96, 160 or 320). Defaults to 160", "BITRATE");
|
|
|
|
|
2015-07-19 20:36:14 +00:00
|
|
|
let matches = match opts.parse(&args[1..]) {
|
|
|
|
Ok(m) => { m },
|
|
|
|
Err(f) => {
|
|
|
|
print!("Error: {}\n{}", f.to_string(), usage(&*program, &opts));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-01 23:16:12 +00:00
|
|
|
let appkey = {
|
|
|
|
let mut file = File::open(
|
|
|
|
Path::new(&*matches.opt_str("a").unwrap())
|
|
|
|
).expect("Could not open app key.");
|
|
|
|
|
|
|
|
let mut data = Vec::new();
|
|
|
|
file.read_to_end(&mut data).unwrap();
|
|
|
|
|
|
|
|
data
|
|
|
|
};
|
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 cache_location = matches.opt_str("c").unwrap();
|
|
|
|
let name = matches.opt_str("n").unwrap();
|
|
|
|
|
2016-01-02 01:30:03 +00:00
|
|
|
let credentials = username.map(|u| {
|
2016-01-02 01:53:20 +00:00
|
|
|
let password = matches.opt_str("p").or_else(|| {
|
|
|
|
std::env::var(PASSWORD_ENV_NAME).ok()
|
|
|
|
}).unwrap_or_else(|| {
|
2016-01-02 01:30:03 +00:00
|
|
|
print!("Password: ");
|
|
|
|
stdout().flush().unwrap();
|
|
|
|
read_password().unwrap()
|
|
|
|
});
|
|
|
|
|
|
|
|
(u, password)
|
2015-07-19 20:36:14 +00:00
|
|
|
});
|
2016-01-02 01:53:20 +00:00
|
|
|
std::env::remove_var(PASSWORD_ENV_NAME);
|
2015-05-09 10:07:24 +00:00
|
|
|
|
2016-01-02 02:30:24 +00:00
|
|
|
let bitrate = match matches.opt_str("b").as_ref().map(String::as_ref) {
|
|
|
|
None => Bitrate::Bitrate160, // default value
|
|
|
|
|
|
|
|
Some("96") => Bitrate::Bitrate96,
|
|
|
|
Some("160") => Bitrate::Bitrate160,
|
|
|
|
Some("320") => Bitrate::Bitrate320,
|
|
|
|
Some(b) => panic!("Invalid bitrate {}", b),
|
|
|
|
};
|
|
|
|
|
2015-05-09 10:07:24 +00:00
|
|
|
let config = Config {
|
|
|
|
application_key: appkey,
|
2015-07-01 23:27:19 +00:00
|
|
|
user_agent: version_string(),
|
2016-01-01 23:16:12 +00:00
|
|
|
device_name: name,
|
2016-01-02 02:30:24 +00:00
|
|
|
cache_location: PathBuf::from(cache_location),
|
|
|
|
bitrate: bitrate
|
2015-05-09 10:07:24 +00:00
|
|
|
};
|
2015-12-30 18:50:23 +00:00
|
|
|
|
2015-06-23 14:38:29 +00:00
|
|
|
let session = Session::new(config);
|
2016-01-02 01:30:03 +00:00
|
|
|
|
|
|
|
if let Some((username, password)) = credentials {
|
|
|
|
session.login_password(username, password).unwrap();
|
|
|
|
} else {
|
|
|
|
let mut discovery = DiscoveryManager::new(session.clone());
|
|
|
|
discovery.run();
|
|
|
|
}
|
2015-05-09 10:07:24 +00:00
|
|
|
|
2016-01-01 23:16:12 +00:00
|
|
|
let player = Player::new(session.clone());
|
|
|
|
let mut spirc = SpircManager::new(session.clone(), player);
|
2015-09-01 11:20:37 +00:00
|
|
|
thread::spawn(move || {
|
2016-01-01 23:16:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|