mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 09:49:31 +02:00

* refactor: Introduce SpotifyUri struct Contributes to #1266 Introduces a new `SpotifyUri` struct which is layered on top of the existing `SpotifyId`, but has the capability to support URIs that do not confirm to the canonical base62 encoded format. This allows it to describe URIs like `spotify:local`, `spotify:genre` and others that `SpotifyId` cannot represent. Changed the internal player state to use these URIs as much as possible, such that the player could in the future accept a URI of the type `spotify:local`, as a means of laying the groundwork for local file support. * fix: Don't pass unknown URIs from deprecated player methods * refactor: remove SpotifyUri::to_base16 This should be deprecated for the same reason to_base62 is, and could unpredictably throw errors -- consumers should match on the inner ID if they need a base62 representation and handle failure appropriately * refactor: Store original data in SpotifyUri::Unknown Instead of assuming Unknown has a u128 SpotifyId, store the original data and type that we failed to parse. * refactor: Remove SpotifyItemType * refactor: Address review feedback * test: Add more SpotifyUri tests * chore: Correctly mark changes as breaking in CHANGELOG.md * refactor: Respond to review feedback * chore: Changelog updates
46 lines
813 B
Rust
46 lines
813 B
Rust
#[macro_use]
|
|
extern crate log;
|
|
|
|
use librespot_protocol as protocol;
|
|
|
|
#[macro_use]
|
|
mod component;
|
|
|
|
pub mod apresolve;
|
|
pub mod audio_key;
|
|
pub mod authentication;
|
|
pub mod cache;
|
|
pub mod cdn_url;
|
|
pub mod channel;
|
|
pub mod config;
|
|
mod connection;
|
|
pub mod date;
|
|
#[allow(dead_code)]
|
|
pub mod dealer;
|
|
pub mod deserialize_with;
|
|
#[doc(hidden)]
|
|
pub mod diffie_hellman;
|
|
pub mod error;
|
|
pub mod file_id;
|
|
pub mod http_client;
|
|
pub mod login5;
|
|
pub mod mercury;
|
|
pub mod packet;
|
|
mod proxytunnel;
|
|
pub mod session;
|
|
mod socket;
|
|
#[allow(dead_code)]
|
|
pub mod spclient;
|
|
pub mod spotify_id;
|
|
pub mod spotify_uri;
|
|
pub mod token;
|
|
#[doc(hidden)]
|
|
pub mod util;
|
|
pub mod version;
|
|
|
|
pub use config::SessionConfig;
|
|
pub use error::Error;
|
|
pub use file_id::FileId;
|
|
pub use session::Session;
|
|
pub use spotify_id::SpotifyId;
|
|
pub use spotify_uri::SpotifyUri;
|