2021-01-13 10:52:58 +00:00
|
|
|
use serde::de::DeserializeOwned;
|
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
use ureq::Agent;
|
|
|
|
|
|
|
|
use crate::endpoint::Endpoint;
|
|
|
|
use crate::models::request::*;
|
|
|
|
use crate::models::response::*;
|
2021-01-13 13:28:59 +00:00
|
|
|
use crate::Error;
|
2021-01-13 10:52:58 +00:00
|
|
|
|
|
|
|
const API_ROOT_URL: &str = "https://api.listenbrainz.org/1/";
|
|
|
|
|
2021-01-13 12:06:48 +00:00
|
|
|
/// Low-level client that directly wraps the ListenBrainz HTTP API.
|
2021-01-13 10:52:58 +00:00
|
|
|
///
|
|
|
|
/// Client exposes functions that map one-to-one to the API methods described
|
|
|
|
/// in the [ListenBrainz API docs](https://listenbrainz.readthedocs.io/en/production/dev/api/).
|
|
|
|
pub struct Client {
|
|
|
|
agent: Agent,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Client {
|
|
|
|
/// Construct a new client.
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
agent: ureq::agent(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get<R: DeserializeOwned>(&mut self, endpoint: Endpoint) -> Result<R, Error> {
|
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, endpoint);
|
|
|
|
|
|
|
|
self.agent
|
|
|
|
.get(&endpoint)
|
|
|
|
.call()?
|
|
|
|
.into_json()
|
|
|
|
.map_err(Error::ResponseJson)
|
|
|
|
}
|
|
|
|
|
2021-01-13 16:28:12 +00:00
|
|
|
fn get_stats<R: DeserializeOwned>(
|
|
|
|
&mut self,
|
|
|
|
endpoint: Endpoint,
|
|
|
|
count: Option<u64>,
|
|
|
|
offset: Option<u64>,
|
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<R>, Error> {
|
2021-01-13 16:28:12 +00:00
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, endpoint);
|
|
|
|
|
|
|
|
let mut request = self.agent.get(&endpoint);
|
|
|
|
|
|
|
|
if let Some(count) = count {
|
|
|
|
request = request.query("count", &count.to_string());
|
|
|
|
}
|
|
|
|
if let Some(offset) = offset {
|
|
|
|
request = request.query("offset", &offset.to_string());
|
|
|
|
}
|
|
|
|
if let Some(range) = range {
|
|
|
|
request = request.query("range", range);
|
|
|
|
}
|
|
|
|
|
2021-01-14 01:42:33 +00:00
|
|
|
let response = request.call()?;
|
|
|
|
|
|
|
|
// API returns 204 and an empty document if there are no statistics
|
|
|
|
if response.status() == 204 {
|
|
|
|
Ok(None)
|
|
|
|
} else {
|
|
|
|
response.into_json().map(Some).map_err(Error::ResponseJson)
|
|
|
|
}
|
2021-01-13 16:28:12 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 10:52:58 +00:00
|
|
|
fn post<D, R>(&mut self, endpoint: Endpoint, token: &str, data: D) -> Result<R, Error>
|
|
|
|
where
|
|
|
|
D: Serialize,
|
|
|
|
R: DeserializeOwned,
|
|
|
|
{
|
|
|
|
let data = serde_json::to_value(data).map_err(Error::RequestJson)?;
|
|
|
|
|
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, endpoint);
|
|
|
|
|
|
|
|
self.agent
|
|
|
|
.post(&endpoint)
|
|
|
|
.set("Authorization", &format!("Token {}", token))
|
|
|
|
.send_json(data)?
|
|
|
|
.into_json()
|
|
|
|
.map_err(Error::ResponseJson)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `submit-listens`
|
|
|
|
pub fn submit_listens(
|
|
|
|
&mut self,
|
|
|
|
token: &str,
|
|
|
|
data: SubmitListens,
|
|
|
|
) -> Result<SubmitListensResponse, Error> {
|
|
|
|
self.post(Endpoint::SubmitListens, token, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `validate-token`
|
|
|
|
pub fn validate_token(&mut self, token: &str) -> Result<ValidateTokenResponse, Error> {
|
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, Endpoint::ValidateToken);
|
|
|
|
|
|
|
|
self.agent
|
|
|
|
.get(&endpoint)
|
|
|
|
.query("token", token)
|
|
|
|
.call()?
|
|
|
|
.into_json()
|
|
|
|
.map_err(Error::ResponseJson)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `delete-listen`
|
|
|
|
pub fn delete_listen(
|
|
|
|
&mut self,
|
|
|
|
token: &str,
|
|
|
|
data: DeleteListen,
|
|
|
|
) -> Result<DeleteListenResponse, Error> {
|
|
|
|
self.post(Endpoint::DeleteListen, token, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `users/{user_list}/recent-listens
|
|
|
|
pub fn users_recent_listens(
|
|
|
|
&mut self,
|
|
|
|
user_list: &[&str],
|
|
|
|
) -> Result<UsersRecentListensResponse, Error> {
|
|
|
|
self.get(Endpoint::UsersRecentListens(user_list))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `user/{user_name}/listen-count`
|
|
|
|
pub fn user_listen_count(&mut self, user_name: &str) -> Result<UserListenCountResponse, Error> {
|
|
|
|
self.get(Endpoint::UserListenCount(user_name))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `user/{user_name}/playing-now`
|
|
|
|
pub fn user_playing_now(&mut self, user_name: &str) -> Result<UserPlayingNowResponse, Error> {
|
|
|
|
self.get(Endpoint::UserPlayingNow(user_name))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `user/{user_name}/listens`
|
|
|
|
pub fn user_listens(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
min_ts: Option<i64>,
|
|
|
|
max_ts: Option<i64>,
|
2021-01-13 16:28:12 +00:00
|
|
|
count: Option<u64>,
|
2021-01-13 13:28:59 +00:00
|
|
|
time_range: Option<u64>,
|
2021-01-13 10:52:58 +00:00
|
|
|
) -> Result<UserListensResponse, Error> {
|
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, Endpoint::UserListens(user_name));
|
|
|
|
|
|
|
|
let mut request = self.agent.get(&endpoint);
|
|
|
|
|
|
|
|
if let Some(min_ts) = min_ts {
|
|
|
|
request = request.query("min_ts", &min_ts.to_string());
|
|
|
|
}
|
|
|
|
if let Some(max_ts) = max_ts {
|
|
|
|
request = request.query("max_ts", &max_ts.to_string());
|
|
|
|
}
|
|
|
|
if let Some(count) = count {
|
|
|
|
request = request.query("count", &count.to_string());
|
|
|
|
}
|
|
|
|
if let Some(time_range) = time_range {
|
|
|
|
request = request.query("time_range", &time_range.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
request.call()?.into_json().map_err(Error::ResponseJson)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `latest-import` (GET)
|
|
|
|
pub fn get_latest_import(&mut self, user_name: &str) -> Result<GetLatestImportResponse, Error> {
|
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, Endpoint::LatestImport);
|
|
|
|
|
|
|
|
self.agent
|
|
|
|
.get(&endpoint)
|
|
|
|
.query("user_name", user_name)
|
|
|
|
.call()?
|
|
|
|
.into_json()
|
|
|
|
.map_err(Error::ResponseJson)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `latest-import` (POST)
|
|
|
|
pub fn update_latest_import(
|
|
|
|
&mut self,
|
|
|
|
token: &str,
|
|
|
|
data: UpdateLatestImport,
|
|
|
|
) -> Result<UpdateLatestImportResponse, Error> {
|
|
|
|
self.post(Endpoint::LatestImport, token, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Endpoint: `stats/sitewide/artists`
|
|
|
|
pub fn stats_sitewide_artists(
|
|
|
|
&mut self,
|
|
|
|
count: Option<u64>,
|
|
|
|
offset: Option<u64>,
|
2021-01-13 13:28:59 +00:00
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<StatsSitewideArtistsResponse>, Error> {
|
2021-01-13 16:28:12 +00:00
|
|
|
self.get_stats(Endpoint::StatsSitewideArtists, count, offset, range)
|
2021-01-13 10:52:58 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 12:06:48 +00:00
|
|
|
/// Endpoint: `stats/user/{user_name}/listening-activity`
|
|
|
|
pub fn stats_user_listening_activity(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<StatsUserListeningActivityResponse>, Error> {
|
2021-01-13 13:28:59 +00:00
|
|
|
let endpoint = format!(
|
|
|
|
"{}{}",
|
|
|
|
API_ROOT_URL,
|
|
|
|
Endpoint::StatsUserListeningActivity(user_name)
|
|
|
|
);
|
2021-01-13 12:06:48 +00:00
|
|
|
|
|
|
|
let mut request = self.agent.get(&endpoint);
|
|
|
|
|
|
|
|
if let Some(range) = range {
|
|
|
|
request = request.query("range", range);
|
|
|
|
}
|
|
|
|
|
2021-01-14 01:42:33 +00:00
|
|
|
let response = request.call()?;
|
|
|
|
|
|
|
|
// API returns 204 and an empty document if there are no statistics
|
|
|
|
if response.status() == 204 {
|
|
|
|
Ok(None)
|
|
|
|
} else {
|
|
|
|
response.into_json().map(Some).map_err(Error::ResponseJson)
|
|
|
|
}
|
2021-01-13 12:06:48 +00:00
|
|
|
}
|
2021-01-13 10:52:58 +00:00
|
|
|
|
2021-01-13 12:06:48 +00:00
|
|
|
/// Endpoint: `stats/user/{user_name}/daily-activity`
|
|
|
|
pub fn stats_user_daily_activity(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<StatsUserDailyActivityResponse>, Error> {
|
2021-01-13 13:28:59 +00:00
|
|
|
let endpoint = format!(
|
|
|
|
"{}{}",
|
|
|
|
API_ROOT_URL,
|
|
|
|
Endpoint::StatsUserDailyActivity(user_name)
|
|
|
|
);
|
2021-01-13 12:06:48 +00:00
|
|
|
|
|
|
|
let mut request = self.agent.get(&endpoint);
|
|
|
|
|
|
|
|
if let Some(range) = range {
|
|
|
|
request = request.query("range", range);
|
|
|
|
}
|
|
|
|
|
2021-01-14 01:42:33 +00:00
|
|
|
let response = request.call()?;
|
|
|
|
|
|
|
|
// API returns 204 and an empty document if there are no statistics
|
|
|
|
if response.status() == 204 {
|
|
|
|
Ok(None)
|
|
|
|
} else {
|
|
|
|
response.into_json().map(Some).map_err(Error::ResponseJson)
|
|
|
|
}
|
2021-01-13 12:06:48 +00:00
|
|
|
}
|
2021-01-13 10:52:58 +00:00
|
|
|
|
2021-01-13 12:46:29 +00:00
|
|
|
/// Endpoint: `stats/user/{user_name}/recordings`
|
|
|
|
pub fn stats_user_recordings(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
count: Option<u64>,
|
|
|
|
offset: Option<u64>,
|
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<StatsUserRecordingsResponse>, Error> {
|
2021-01-13 16:28:12 +00:00
|
|
|
self.get_stats(
|
|
|
|
Endpoint::StatsUserRecordings(user_name),
|
|
|
|
count,
|
|
|
|
offset,
|
|
|
|
range,
|
|
|
|
)
|
2021-01-13 12:46:29 +00:00
|
|
|
}
|
2021-01-13 10:52:58 +00:00
|
|
|
|
2021-01-13 13:02:23 +00:00
|
|
|
/// Endpoint: `stats/user/{user_name}/artist-map`
|
|
|
|
pub fn stats_user_artist_map(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
range: Option<&str>,
|
|
|
|
force_recalculate: Option<bool>,
|
|
|
|
) -> Result<StatsUserArtistMapResponse, Error> {
|
2021-01-13 13:28:59 +00:00
|
|
|
let endpoint = format!(
|
|
|
|
"{}{}",
|
|
|
|
API_ROOT_URL,
|
|
|
|
Endpoint::StatsUserArtistMap(user_name)
|
|
|
|
);
|
2021-01-13 13:02:23 +00:00
|
|
|
|
|
|
|
let mut request = self.agent.get(&endpoint);
|
|
|
|
|
|
|
|
if let Some(range) = range {
|
|
|
|
request = request.query("range", range);
|
|
|
|
}
|
|
|
|
if let Some(force_recalculate) = force_recalculate {
|
|
|
|
request = request.query("force_recalculate", &force_recalculate.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
request.call()?.into_json().map_err(Error::ResponseJson)
|
|
|
|
}
|
2021-01-13 10:52:58 +00:00
|
|
|
|
2021-01-13 13:09:34 +00:00
|
|
|
/// Endpoint: `stats/user/{user_name}/releases`
|
|
|
|
pub fn stats_user_releases(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
count: Option<u64>,
|
|
|
|
offset: Option<u64>,
|
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<StatsUserReleasesResponse>, Error> {
|
2021-01-13 16:28:12 +00:00
|
|
|
self.get_stats(Endpoint::StatsUserReleases(user_name), count, offset, range)
|
2021-01-13 13:09:34 +00:00
|
|
|
}
|
2021-01-13 10:52:58 +00:00
|
|
|
|
2021-01-13 13:15:32 +00:00
|
|
|
/// Endpoint: `stats/user/{user_name}/artists`
|
|
|
|
pub fn stats_user_artists(
|
|
|
|
&mut self,
|
|
|
|
user_name: &str,
|
|
|
|
count: Option<u64>,
|
|
|
|
offset: Option<u64>,
|
|
|
|
range: Option<&str>,
|
2021-01-14 01:42:33 +00:00
|
|
|
) -> Result<Option<StatsUserArtistsResponse>, Error> {
|
2021-01-13 16:28:12 +00:00
|
|
|
self.get_stats(Endpoint::StatsUserArtists(user_name), count, offset, range)
|
2021-01-13 13:15:32 +00:00
|
|
|
}
|
2021-01-13 10:52:58 +00:00
|
|
|
|
|
|
|
/// Endpoint: `status/get-dump-info`
|
|
|
|
pub fn status_get_dump_info(
|
|
|
|
&mut self,
|
|
|
|
id: Option<i64>,
|
|
|
|
) -> Result<StatusGetDumpInfoResponse, Error> {
|
|
|
|
let endpoint = format!("{}{}", API_ROOT_URL, Endpoint::StatusGetDumpInfo);
|
|
|
|
|
|
|
|
let mut request = self.agent.get(&endpoint);
|
|
|
|
|
|
|
|
if let Some(id) = id {
|
|
|
|
request = request.query("id", &id.to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
request.call()?.into_json().map_err(Error::ResponseJson)
|
|
|
|
}
|
|
|
|
}
|