forked from michaelherger/MusicArtistInfo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI.pm
More file actions
224 lines (168 loc) · 5.36 KB
/
API.pm
File metadata and controls
224 lines (168 loc) · 5.36 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
package Plugins::MusicArtistInfo::API;
use strict;
use Digest::SHA1 qw(sha1_base64);
use URI::Escape qw(uri_escape_utf8);
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 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';
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 = '?mbid=' . $args->{mbid} if $args->{mbid};
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 @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(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 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 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 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();
Plugins::MusicArtistInfo::Common->call($url, sub {
my ($result) = @_;
if ($result && ref $result && $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 = 'undef';
if (!$xMAICfgString && Slim::Utils::PluginManager->isConfiguredEnabled('Analytics')) {
# 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,
);
}
1;