-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathAPI.pm
More file actions
324 lines (248 loc) · 8.12 KB
/
API.pm
File metadata and controls
324 lines (248 loc) · 8.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
package Plugins::MusicArtistInfo::API;
use strict;
use Digest::SHA1 qw(sha1_base64);
use URI;
use URI::Escape qw(uri_escape_utf8);
use URI::QueryParam;
use Slim::Utils::Cache;
use Slim::Utils::Log;
use Slim::Utils::Prefs;
use constant BASE_URL => 'https://api.lms-community.org/music';
# use constant BASE_URL => 'http://127.0.0.1:8787/music';
use constant ARTISTIMAGESEARCH_URL => BASE_URL . '/artist/%s/picture';
use constant ALBUMREVIEW_URL => BASE_URL . '/album/%s/%s/review';
use constant TRACKREVIEW_URL => BASE_URL . '/track/%s/%s/review';
use constant ALBUMGENRES_URL => BASE_URL . '/album/%s/%s/genres';
use constant BIOGRAPHY_URL => BASE_URL . '/artist/%s/biography';
use constant WORKREVIEW_URL => BASE_URL . '/work/%s/%s/review';
use constant LYRICS_PROVIDERS_URL => BASE_URL . '/metadata/lyricsProviders';
use constant KILLWORDS_URL => BASE_URL . '/metadata/killwords';
use constant PLUGIN_PACKAGE => __PACKAGE__ =~ s/\b(?:\w+)$/Plugin/r;
my $cache = Slim::Utils::Cache->new();
my $log = logger('plugin.musicartistinfo');
my $prefs = preferences('plugin.musicartistinfo');
my $serverPrefs = preferences('server');
my $xMAICfgString;
my $version;
my $hitRateLimit;
if (!main::SCANNER) {
$prefs->setChange(sub { _initXMAICfgString(1) },
'browseArtistPictures',
'lookupArtistPictures',
'lookupAlbumArtistPicturesOnly',
'artistImageFolder',
'saveMissingArtistPicturePlaceholder'
);
$serverPrefs->setChange(sub { _initXMAICfgString(1) },
'precacheArtwork',
);
}
sub getArtistPhoto {
my ( $class, $cb, $args ) = @_;
my $query = _getArtistQueryParams($args);
my $url = sprintf(ARTISTIMAGESEARCH_URL, uri_escape_utf8($args->{artist})) . $query;
my $cacheKey = "mai_artist_artwork_$url";
my $cached = $cache->get($cacheKey);
if (defined $cached) {
main::INFOLOG && $log->is_info && $log->info("Using cached artist picture: $cached");
return $cb->({ url => $cached });
}
_call(
$url,
sub {
my ($result) = @_;
my $photo;
if ($result && ref $result && (my $url = $result->{picture})) {
$photo = {
url => $url,
};
}
$cache->set($cacheKey, $photo->{url}, '1y') if $photo->{url};
main::INFOLOG && $log->is_info && $log->info(Data::Dump::dump($photo));
$cb->($photo);
}
);
}
sub getArtistBioId {
my ( $class, $cb, $args ) = @_;
my $query = _getArtistQueryParams($args);
my $url = sprintf(BIOGRAPHY_URL, uri_escape_utf8($args->{artist})) . $query;
_call(
$url,
sub {
my ($result) = @_;
main::INFOLOG && $log->is_info && $log->info("found biography: " . Data::Dump::dump($result));
$cb->($result);
}
);
}
sub _getArtistQueryParams {
my $args = shift;
my @queryParams;
push @queryParams, 'mbid=' . $args->{mbid} if $args->{mbid};
push @queryParams, 'lang=' . $args->{lang} if $args->{lang};
# the album name in the artists related queries is used to better disambiguate artists with common names, so include it if available
push @queryParams, 'album=' . uri_escape_utf8($args->{album}) if $args->{album};
return @queryParams ? '?' . join('&', @queryParams) : '';
}
sub getAlbumReviewId {
my ( $class, $cb, $args ) = @_;
my $url = _prepareAlbumUrl(ALBUMREVIEW_URL, $args);
_call(
$url,
sub {
my ($result) = @_;
main::INFOLOG && $log->is_info && $log->info("found album review: " . Data::Dump::dump($result));
$cb->($result);
}
);
}
sub getTrackReviewId {
my ( $class, $cb, $args ) = @_;
my @queryParams;
push @queryParams, 'mbid=' . $args->{mbid} if $args->{mbid};
push @queryParams, 'lang=' . $args->{lang} if $args->{lang};
my $query = @queryParams ? '?' . join('&', @queryParams) : '';
my $url = sprintf(TRACKREVIEW_URL, uri_escape_utf8($args->{title}), uri_escape_utf8($args->{artist})) . $query;
_call(
$url,
sub {
my ($result) = @_;
main::INFOLOG && $log->is_info && $log->info("found track review: " . Data::Dump::dump($result));
$cb->($result);
},{
radioUrl => $args->{radioUrl},
}
);
}
sub getAlbumGenres {
my ( $class, $cb, $args ) = @_;
my $url = _prepareAlbumUrl(ALBUMGENRES_URL, $args);
_call(
$url,
sub {
my ($result) = @_;
main::INFOLOG && $log->is_info && $log->info("found album genres: " . Data::Dump::dump($result));
$cb->($result);
}
);
}
sub getWorkReviewId {
my ( $class, $cb, $args ) = @_;
my $url = sprintf(WORKREVIEW_URL, uri_escape_utf8($args->{title}), uri_escape_utf8($args->{composer}));
$url .= '?lang=' . $args->{lang} if $args->{lang};
_call(
$url,
sub {
my ($result) = @_;
main::INFOLOG && $log->is_info && $log->info("found work review: " . Data::Dump::dump($result));
$cb->($result);
}
);
}
sub getLyricsProviders {
my ( $class, $cb ) = @_;
_call(
LYRICS_PROVIDERS_URL,
sub {
my ($result) = @_;
main::INFOLOG && $log->is_info && $log->info("found lyrics providers: " . Data::Dump::dump($result));
$cb->($result);
},
{
cache => 0
}
);
}
sub getKillwords {
my ( $class, $cb ) = @_;
_call(
KILLWORDS_URL,
sub {
$cb->(shift);
},
{
cache => 1,
}
)
}
sub hasHitRateLimit {
return $hitRateLimit ? 1 : 0;
}
sub _call {
my ($url, $cb, $args) = @_;
$args ||= {};
$args->{cache} //= 1;
$args->{expires} //= '30d';
$args->{headers} ||= {};
$args->{headers}->{'x-mai-cfg'} ||= _initXMAICfgString();
if (Slim::Utils::Misc->can('apiHeaders')) {
$args->{headers} = { %{$args->{headers}}, Slim::Utils::Misc::apiHeaders(PLUGIN_PACKAGE) };
}
else {
$args->{headers}->{'X-LMS-Plugin-ID'} ||= PLUGIN_PACKAGE;
}
# provide radio station URL to help avoiding unnecessary lookups if a station is known to provide no or invalid metadata
if ($args->{radioUrl} && $args->{radioUrl} =~ m{^https?://} && (my $parsed = URI->new(delete $args->{radioUrl}))) {
# only submit host name / path to avoid posting potentially sensitive info like stream keys etc.
$args->{headers}->{'X-LMS-Radio-URL'} = sprintf('%s://%s:%s%s', $parsed->scheme, $parsed->host, $parsed->port, $parsed->path);
if ($parsed->host =~ /\b(?:tunein|radiotime)\.com$/i) {
my $queryParams = $parsed->query_form_hash;
$args->{headers}->{'X-LMS-Radio-URL'} .= '?sid=' . ($queryParams->{id} || 'unknown');
}
}
Plugins::MusicArtistInfo::Common->call($url, sub {
my ($result) = @_;
if ($result && ref $result && ref $result eq 'HASH' && $result->{error}) {
my $error = delete $result->{error};
$log->error("API call to $url failed: $error");
$hitRateLimit = 1 if $error =~ /rate limit|\b429\b/i;
}
$cb->(@_);
}, $args);
}
sub _prepareAlbumUrl {
my ($url, $args) = @_;
my @queryParams;
push @queryParams, 'mbid=' . $args->{mbid} if $args->{mbid};
push @queryParams, 'lang=' . $args->{lang} if $args->{lang};
my ($service, $extid) = split /:album:/, $args->{extid} || '';
push @queryParams, $service . '=' . $extid if $service && $extid;
my $query = @queryParams ? '?' . join('&', @queryParams) : '';
return sprintf($url, uri_escape_utf8($args->{album}), uri_escape_utf8($args->{artist})) . $query;
}
sub _initXMAICfgString {
my ($renew) = @_;
if ($renew) {
$hitRateLimit = 0;
$xMAICfgString = undef;
}
$version ||= (main::SCANNER && Slim::Utils::PluginManager->dataForPlugin('Plugins::MusicArtistInfo::Importer')->{version})
|| (!main::SCANNER && $Plugins::MusicArtistInfo::Plugin::VERSION) || 'unk';
my $serverId;
if (!$xMAICfgString && Slim::Utils::PluginManager->isConfiguredEnabled('Analytics')) {
eval {
require Slim::Plugin::Analytics::Plugin;
if (Slim::Plugin::Analytics::Plugin->can('getServerId')) {
$serverId = Slim::Plugin::Analytics::Plugin::getServerId();
}
};
# fallback for older LMS versions where the analytics plugin doesn't have getServerId()
if (!$serverId) {
# sync with what the analytics plugin does to hash the server ID
$serverId = sha1_base64(preferences('server')->get('server_uuid'));
$serverId =~ s/\//+/g;
}
}
return $xMAICfgString ||= sprintf('v:%s,sc:%s,ba:%s,la:%s,ma:%s,ac:%s,pc:%s,si:%s',
$version,
main::SCANNER ? 1 : 0,
$prefs->get('browseArtistPictures') ? 1 : 0,
$prefs->get('lookupArtistPictures') ? 1 : 0,
$prefs->get('lookupAlbumArtistPicturesOnly') ? 1 : 0,
$prefs->get('artistImageFolder') ? 1 : 0,
$serverPrefs->get('precacheArtwork') ? 1 : 0,
$serverId || 'undef',
);
}
1;