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
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
use crate::USER_AGENT;
use anyhow::{Context, Result};
use bincode::{Decode, Encode};
use jellycache::async_cache_memory;
use log::info;
use reqwest::{
header::{HeaderMap, HeaderName, HeaderValue},
Client, ClientBuilder,
};
use serde::Deserialize;
use std::{collections::BTreeMap, sync::Arc, time::Duration};
use tokio::{
sync::Semaphore,
time::{sleep_until, Instant},
};
pub mod reltypes {
pub const MUSIC_VIDEO: &str = "ce3de655-7451-44d1-9224-87eb948c205d";
pub const INSTRUMENTAL: &str = "9fc01a58-7801-4bd2-b07d-61cc7ffacf90";
pub const VOCAL: &str = "0fdbe3c6-7700-4a31-ae54-b53f06ae1cfa";
pub const RECORDING: &str = "a01ee869-80a8-45ef-9447-c59e91aa7926";
pub const PROGRAMMING: &str = "36c50022-44e0-488d-994b-33f11d20301e";
pub const PRODUCER: &str = "5c0ceac3-feb4-41f0-868d-dc06f6e27fc0";
pub const ARTIST: &str = "5c0ceac3-feb4-41f0-868d-dc06f6e27fc0";
pub const PHONOGRAPHIC_COPYRIGHT: &str = "7fd5fbc0-fbf4-4d04-be23-417d50a4dc30";
pub const MIX: &str = "3e3102e1-1896-4f50-b5b2-dd9824e46efe";
pub const INSTRUMENT: &str = "59054b12-01ac-43ee-a618-285fd397e461";
pub const WIKIDATA: &str = "689870a4-a1e4-4912-b17f-7b2664215698";
pub const VGMDB: &str = "0af15ab3-c615-46d6-b95b-a5fcd2a92ed9";
}
pub struct MusicBrainz {
client: Client,
rate_limit: Arc<Semaphore>,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbRecordingRel {
pub id: String,
pub first_release_date: Option<String>,
pub title: String,
pub isrcs: Vec<String>,
pub video: bool,
pub disambiguation: String,
pub length: Option<u32>,
pub relations: Vec<MbRelation>,
pub artist_credit: Vec<MbArtistCredit>,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbArtistRel {
pub id: String,
pub isnis: Vec<String>,
pub ipis: Vec<String>,
pub name: String,
pub disambiguation: String,
pub country: Option<String>,
pub sort_name: String,
pub gender_id: Option<String>,
pub area: Option<MbArea>,
pub begin_area: Option<MbArea>,
pub end_area: Option<MbArea>,
pub life_span: MbTimespan,
pub relations: Vec<MbRelation>,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbArtistCredit {
pub name: String,
pub artist: MbArtist,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbRelation {
pub direction: String,
pub r#type: String,
pub type_id: String,
pub begin: Option<String>,
pub end: Option<String>,
pub ended: bool,
pub target_type: String,
pub target_credit: String,
pub source_credit: String,
pub attributes: Vec<String>,
pub attribute_ids: BTreeMap<String, String>,
pub attribute_values: BTreeMap<String, String>,
pub work: Option<MbWork>,
pub artist: Option<MbArtist>,
pub url: Option<MbUrl>,
pub recording: Option<MbRecording>,
pub series: Option<MbSeries>,
pub event: Option<MbEvent>,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbSeries {
pub id: String,
pub r#type: Option<String>,
pub type_id: Option<String>,
pub name: String,
pub disambiguation: String,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbRecording {
pub id: String,
pub title: String,
#[serde(default)]
pub isrcs: Vec<String>,
pub video: bool,
pub disambiguation: String,
pub length: Option<u32>,
#[serde(default)]
pub artist_credit: Vec<MbArtistCredit>,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbWork {
pub id: String,
pub r#type: Option<String>,
pub type_id: Option<String>,
pub languages: Vec<String>,
pub iswcs: Vec<String>,
pub language: Option<String>,
pub title: String,
pub attributes: Vec<String>,
pub disambiguation: String,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbEvent {
pub id: String,
pub r#type: Option<String>,
pub type_id: Option<String>,
pub name: String,
pub time: String,
pub cancelled: bool,
pub setlist: String,
pub life_span: MbTimespan,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbArtist {
pub id: String,
pub r#type: Option<String>,
pub type_id: Option<String>,
pub name: String,
pub disambiguation: String,
pub country: Option<String>,
pub sort_name: String,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbTimespan {
pub begin: Option<String>,
pub end: Option<String>,
pub ended: bool,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbArea {
pub name: String,
pub sort_name: String,
#[serde(default)]
pub iso_3166_1_codes: Vec<String>,
pub id: String,
pub disambiguation: String,
}
#[derive(Debug, Deserialize, Encode, Decode)]
#[serde(rename_all = "kebab-case")]
pub struct MbUrl {
pub id: String,
pub resource: String,
}
impl MusicBrainz {
const MAX_PAR_REQ: usize = 4;
pub fn new() -> Self {
let client = ClientBuilder::new()
.default_headers(HeaderMap::from_iter([
(
HeaderName::from_static("accept"),
HeaderValue::from_static("application/json"),
),
(
HeaderName::from_static("user-agent"),
HeaderValue::from_static(USER_AGENT),
),
]))
.build()
.unwrap();
Self {
client,
// send at most 1 req/s according to musicbrainz docs, each lock is held for 10s
// this implementation also never sends more than MAX_PAR_REQ requests in-flight.
rate_limit: Arc::new(Semaphore::new(Self::MAX_PAR_REQ)),
}
}
pub async fn lookup_recording(&self, id: String) -> Result<Arc<MbRecordingRel>> {
async_cache_memory("api-musicbrainz-recording", id.clone(), || async move {
let _permit = self.rate_limit.clone().acquire_owned().await?;
let permit_drop_ts = Instant::now() + Duration::from_secs(Self::MAX_PAR_REQ as u64);
info!("recording lookup: {id}");
let inc = [
"isrcs",
"artists",
"area-rels",
"artist-rels",
"event-rels",
"genre-rels",
"instrument-rels",
"label-rels",
"place-rels",
"recording-rels",
"release-rels",
"release-group-rels",
"series-rels",
"url-rels",
"work-rels",
]
.join("+");
let resp = self
.client
.get(format!(
"https://musicbrainz.org/ws/2/recording/{id}?inc={inc}"
))
.send()
.await?
.error_for_status()?
.json::<MbRecordingRel>()
.await?;
tokio::task::spawn(async move {
sleep_until(permit_drop_ts).await;
drop(_permit);
});
Ok(resp)
})
.await
.context("musicbrainz recording lookup")
}
pub async fn lookup_artist(&self, id: String) -> Result<Arc<MbArtistRel>> {
async_cache_memory("api-musicbrainz-artist", id.clone(), || async move {
let _permit = self.rate_limit.clone().acquire_owned().await?;
let permit_drop_ts = Instant::now() + Duration::from_secs(Self::MAX_PAR_REQ as u64);
info!("artist lookup: {id}");
let inc = [
"area-rels",
"artist-rels",
"event-rels",
"genre-rels",
"instrument-rels",
"label-rels",
"place-rels",
"recording-rels",
"release-rels",
"release-group-rels",
"series-rels",
"url-rels",
"work-rels",
]
.join("+");
let resp = self
.client
.get(format!(
"https://musicbrainz.org/ws/2/artist/{id}?inc={inc}"
))
.send()
.await?
.error_for_status()?
.json::<MbArtistRel>()
.await?;
tokio::task::spawn(async move {
sleep_until(permit_drop_ts).await;
drop(_permit);
});
Ok(resp)
})
.await
.context("musicbrainz artist lookup")
}
}
|