Merge pull request #11 from mgziminsky/patch-1

Make release optional in API wrapper
This commit is contained in:
Koen Bolhuis 2022-12-05 00:28:19 +01:00 committed by GitHub
commit 4d6cd43805
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -21,7 +21,7 @@
//! client.authenticate("LISTENBRAINZ TOKEN")
//! .expect("Could not authenticate with ListenBrainz");
//!
//! client.playing_now("The Beatles", "Here Comes the Sun", "Abbey Road")
//! client.playing_now("The Beatles", "Here Comes the Sun", Some("Abbey Road"))
//! .expect("Could not submit 'playing now' request");
//! ```
//!
@ -34,7 +34,7 @@
//! client.authenticate("MALOJA API KEY")
//! .expect("Could not authenticate with Maloja");
//!
//! client.listen("Lymbyc Systym", "Split Stones", "Split Stones")
//! client.listen("Lymbyc Systym", "Split Stones", None)
//! .expect("Could not submit listen");
//! ```
//!

View File

@ -89,7 +89,7 @@ impl ListenBrainz {
timestamp: Option<i64>,
artist: &str,
track: &str,
release: &str,
release: Option<&str>,
) -> Result<(), Error> {
if !self.is_authenticated() {
return Err(Error::NotAuthenticated);
@ -100,7 +100,7 @@ impl ListenBrainz {
track_metadata: TrackMetadata {
artist_name: artist,
track_name: track,
release_name: Some(release),
release_name: release,
additional_info: None,
},
};
@ -125,7 +125,7 @@ impl ListenBrainz {
/// If not authenticated, returns [`Error::NotAuthenticated`].
/// Otherwise, see the Errors section of [`Client`] for more info on
/// what errors might occur.
pub fn listen(&self, artist: &str, track: &str, release: &str) -> Result<(), Error> {
pub fn listen(&self, artist: &str, track: &str, release: Option<&str>) -> Result<(), Error> {
let now = SystemTime::now()
.duration_since(UNIX_EPOCH)
.unwrap()
@ -144,7 +144,7 @@ impl ListenBrainz {
/// If not authenticated, returns [`Error::NotAuthenticated`].
/// Otherwise, see the Errors section of [`Client`] for more info on
/// what errors might occur.
pub fn import(&self, artist: &str, track: &str, release: &str, timestamp: i64) -> Result<(), Error> {
pub fn import(&self, artist: &str, track: &str, release: Option<&str>, timestamp: i64) -> Result<(), Error> {
self.submit_listen(ListenType::Import, Some(timestamp), artist, track, release)
}
@ -155,7 +155,7 @@ impl ListenBrainz {
/// If not authenticated, returns [`Error::NotAuthenticated`].
/// Otherwise, see the Errors section of [`Client`] for more info on
/// what errors might occur.
pub fn playing_now(&self, artist: &str, track: &str, release: &str) -> Result<(), Error> {
pub fn playing_now(&self, artist: &str, track: &str, release: Option<&str>) -> Result<(), Error> {
self.submit_listen(ListenType::PlayingNow, None, artist, track, release)
}
}