From: Essau Ramirez Date: Sat, 25 Nov 2017 19:22:29 +0000 (-0600) Subject: Added Spotify source support (#2) X-Git-Tag: 1.0.0^2~2 X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/commitdiff_plain/d1a147d40ae00fd1f9f48a0b5e2f8a798849fd3d?ds=sidebyside Added Spotify source support (#2) * Added Spotify source support. Fixes #1 * Handle empty track being returned from itunes --- diff --git a/CHANGELOG.md b/CHANGELOG.md index fc42b0d..0e78b44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.0] +- Spotify Source Support + ## [0.2.0] ### Added - iTunes Source Support diff --git a/Sources/configuration.swift b/Sources/configuration.swift index 1db3695..05e2802 100644 --- a/Sources/configuration.swift +++ b/Sources/configuration.swift @@ -8,7 +8,7 @@ class Configuration { // Default options, will be automatically written to the global config if // not found. private var configuration: [String: Any] = [ - "enabled_sources": ["arguments", "itunes"] + "enabled_sources": ["arguments", "itunes", "spotify"] ] // The shared instance of the object diff --git a/Sources/itunes_source.swift b/Sources/itunes_source.swift index 449dd8a..6f4aef9 100644 --- a/Sources/itunes_source.swift +++ b/Sources/itunes_source.swift @@ -44,6 +44,10 @@ class ItunesSource: Source { if let name = track.name { if let artist = track.artist { + // track properties are empty strings if itunes is closed + if (!(name != "" && artist != "")) { + return nil + } return Track(withName: name, andArtist: artist) } } diff --git a/Sources/source_manager.swift b/Sources/source_manager.swift index aaac696..e6c42da 100644 --- a/Sources/source_manager.swift +++ b/Sources/source_manager.swift @@ -4,7 +4,8 @@ class SourceManager { // List of sources enabled for the crurent platform private var availableSources: [String: Source] = [ "arguments": ArgumentsSource(), - "itunes": ItunesSource() + "itunes": ItunesSource(), + "spotify": SpotifySource() ] // Iterate over the sources until we find a track or run out of sources diff --git a/Sources/spotify_source.swift b/Sources/spotify_source.swift new file mode 100644 index 0000000..2e56c8e --- /dev/null +++ b/Sources/spotify_source.swift @@ -0,0 +1,41 @@ +import ScriptingBridge + +// Protocol to obtain the track from Spotify +@objc protocol SpotifyTrack { + @objc optional var name: String {get} + @objc optional var artist: String {get} +} + +// Protocol to interact with Spotify +@objc protocol SpotifyApplication { + @objc optional var currentTrack: SpotifyTrack? {get} +} + +extension SBApplication : SpotifyApplication {} + +// Source that reads track artist and name from current Spotify track +class SpotifySource: Source { + + // Calls the spotify API and returns the current track + var currentTrack: Track? { + + if let spotify: SpotifyApplication = SBApplication(bundleIdentifier: "com.spotify.client") { + + // Attempt to fetch the title from a song + if let currentTrack = spotify.currentTrack { + if let track = currentTrack { + if let name = track.name { + if let artist = track.artist { + + return Track(withName: name, andArtist: artist) + } + } + } + } + } + + return nil + } + +} +