Class: SL::AppleMusicSearch

Inherits:
Object
  • Object
show all
Defined in:
lib/searchlink/searches/applemusic.rb

Overview

Apple Music Search

Class Method Summary collapse

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



74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/searchlink/searches/applemusic.rb', line 74

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



87
88
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
# File 'lib/searchlink/searches/applemusic.rb', line 87

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



22
23
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
# File 'lib/searchlink/searches/applemusic.rb', line 22

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

.settingsObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/searchlink/searches/applemusic.rb', line 7

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