Class: SL::AppleMusicSearch
- Inherits:
-
Object
- Object
- SL::AppleMusicSearch
- Defined in:
- lib/searchlink/searches/applemusic.rb
Overview
Apple Music Search
Class Method Summary collapse
-
.applemusic(terms, media = 'music', entity = '') ⇒ Object
Search apple music terms => search terms (unescaped) media => music, podcast entity => optional: artist, song, album, podcast returns :type=>,:id=>,:url=>,:title.
- .process_result(result) ⇒ Object
- .search(search_type, search_terms, link_text) ⇒ Object
- .settings ⇒ Object
Class Method Details
.applemusic(terms, media = 'music', entity = '') ⇒ Object
Search apple music terms => search terms (unescaped) media => music, podcast entity => optional: artist, song, album, podcast returns :type=>,:id=>,:url=>,:title
76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/searchlink/searches/applemusic.rb', line 76 def applemusic(terms, media = 'music', entity = '') url = "http://itunes.apple.com/search?term=#{terms.url_encode}&country=#{SL.config['country_code']}&media=#{media}&entity=#{entity}" page = Curl::Json.new(url, compressed: true, symbolize_names: true) json = page.json return false unless json[:resultCount]&.positive? output = process_result(json[:results][0]) return false if output.empty? output end |
.process_result(result) ⇒ Object
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/searchlink/searches/applemusic.rb', line 89 def process_result(result) output = {} aff = SL.config['itunes_affiliate'] case result[:wrapperType] when 'track' if result[:kind] == 'podcast' output[:type] = 'podcast' output[:id] = result[:collectionId] output[:url] = result[:collectionViewUrl].to_am + aff output[:title] = result[:collectionName] else output[:type] = 'song' output[:album] = result[:collectionId] output[:id] = result[:trackId] output[:url] = result[:trackViewUrl].to_am + aff output[:title] = "#{result[:trackName]} by #{result[:artistName]}" end when 'collection' output[:type] = 'album' output[:id] = result[:collectionId] output[:url] = result[:collectionViewUrl].to_am + aff output[:title] = "#{result[:collectionName]} by #{result[:artistName]}" when 'artist' output[:type] = 'artist' output[:id] = result[:artistId] output[:url] = result[:artistLinkUrl].to_am + aff output[:title] = result[:artistName] end output end |
.search(search_type, search_terms, link_text) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/searchlink/searches/applemusic.rb', line 24 def search(search_type, search_terms, link_text) stype = search_type.downcase.sub(/^am/, '') otype = :link if stype =~ /e$/ otype = :embed stype.sub!(/e$/, '') end result = case stype when /^pod$/ applemusic(search_terms, 'podcast') when /^art$/ applemusic(search_terms, 'music', 'musicArtist') when /^alb$/ applemusic(search_terms, 'music', 'album') when /^song$/ applemusic(search_terms, 'music', 'musicTrack') else applemusic(search_terms) end return [false, "Not found: #{search_terms}", link_text] unless result # {:type=>,:id=>,:url=>,:title=>} if otype == :embed && result[:type] =~ /(album|song)/ url = 'embed' if result[:type] =~ /song/ link = %(https://embed.music.apple.com/#{SL.config['country_code'].downcase}/album/#{result[:album]}?i=#{result[:id]}&app=music#{SL.config['itunes_affiliate']}) height = 150 else link = %(https://embed.music.apple.com/#{SL.config['country_code'].downcase}/album/#{result[:id]}?app=music#{SL.config['itunes_affiliate']}) height = 450 end title = [ %(<iframe src="#{link}" allow="autoplay *; encrypted-media *;"), %(frameborder="0" height="#{height}"), %(style="width:100%;max-width:660px;overflow:hidden;background:transparent;"), %(sandbox="allow-forms allow-popups allow-same-origin), %(allow-scripts allow-top-navigation-by-user-activation"></iframe>) ].join(' ') else url = result[:url] title = result[:title] end [url, title, link_text] end |
.settings ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/searchlink/searches/applemusic.rb', line 9 def settings { trigger: 'am(pod|art|alb|song)?e?', searches: [ ['am', 'Apple Music'], ['ampod', 'Apple Music Podcast'], ['amart', 'Apple Music Artist'], ['amalb', 'Apple Music Album'], ['amsong', 'Apple Music Song'], ['amalbe', 'Apple Music Album Embed'], ['amsong', 'Apple Music Song Embed'] ] } end |