-
Notifications
You must be signed in to change notification settings - Fork 92
/
juno_download_importer.user.js
150 lines (132 loc) · 4.89 KB
/
juno_download_importer.user.js
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
// ==UserScript==
// @name Import Juno Download releases to MusicBrainz
// @namespace https://github.com/murdos/musicbrainz-userscripts/
// @description One-click importing of releases from junodownload.com/products pages into MusicBrainz
// @version 2021.11.21.1
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/juno_download_importer.user.js
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/juno_download_importer.user.js
// @include http*://www.junodownload.com/products/*
// @include http*://secure.junodownload.com/products/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js
// @require lib/mbimport.js
// @require lib/logger.js
// @require lib/mbimportstyle.js
// @icon https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/assets/images/Musicbrainz_import_logo.png
// ==/UserScript==
// prevent JQuery conflicts, see http://wiki.greasespot.net/@grant
this.$ = this.jQuery = jQuery.noConflict(true);
$(document).ready(function () {
MBImportStyle();
let releaseUrl = window.location.href.replace('/?.*$/', '').replace(/#.*$/, '');
let release = retrieveReleaseInfo(releaseUrl);
insertLink(release, releaseUrl);
});
function parseReleaseDate(rdate) {
let months = {
January: 1,
February: 2,
March: 3,
April: 4,
May: 5,
June: 6,
July: 7,
August: 8,
September: 9,
October: 10,
November: 11,
December: 12,
};
let m = rdate.match(/(\d{1,2}) ([a-z]+), (\d{4})/i);
if (m) {
return {
year: m[3],
month: months[m[2]],
day: m[1],
};
}
return false;
}
function retrieveReleaseInfo(release_url) {
let release = {
artist_credit: [],
title: $('h2.product-title a').text().trim(),
year: 0,
month: 0,
day: 0,
format: 'Digital Media',
packaging: 'None',
country: 'XW',
status: 'official',
language: 'eng',
script: 'Latn',
type: '',
urls: [],
labels: [],
discs: [],
};
let releaseDate = parseReleaseDate($('span[itemProp="datePublished"]').text().trim());
if (releaseDate) {
release.year = releaseDate.year;
release.month = releaseDate.month;
release.day = releaseDate.day;
}
release.urls.push({
url: release_url,
link_type: MBImport.URL_TYPES.purchase_for_download,
});
release.labels.push({
name: $('div[itemProp="publisher"] meta[itemProp="name"]').attr('content').trim(),
catno: $('strong:contains("Cat:")').parent().contents().slice(1, 2).text().trim(),
});
let tracks = [];
$('.product-tracklist-track[itemprop="track"]').each(function () {
// element only present if VA release or track has multiple artists
let artist = $(this).find('meta[itemprop="byArtist"]').attr('content');
if (artist !== undefined) {
artist = artist.trim();
}
let trackname = $(this).find('span[itemprop="name"]').text().trim();
let tracklength = $(this).find('meta[itemprop="duration"]').parent().contents().slice(0, 1).text().trim();
if (artist !== undefined && trackname.startsWith(`${artist} - `)) {
trackname = trackname.replace(`${artist} - `, '');
}
tracks.push({
artist_credit: MBImport.makeArtistCredits(artist === undefined ? [] : [artist]),
title: trackname,
duration: tracklength,
});
});
let releaseArtists = $('.product-artist')
.contents()
.map(function () {
if (this.nodeType === Node.TEXT_NODE) {
return this.nodeValue === ' / ' ? null : this.nodeValue;
} else {
return $(this).text();
}
})
.get();
if (releaseArtists.length === 1 && releaseArtists[0] === 'VARIOUS') {
release.artist_credit = [MBImport.specialArtist('various_artists')];
} else {
release.artist_credit = MBImport.makeArtistCredits(releaseArtists);
}
release.discs.push({
tracks: tracks,
format: release.format,
});
LOGGER.info('Parsed release: ', release);
return release;
}
function insertLink(release, releaseUrl) {
let editNote = MBImport.makeEditNote(releaseUrl, 'Juno Download');
let parameters = MBImport.buildFormParameters(release, editNote);
let mbUI = $(
`<div class="col-12 col-lg-9 mt-3"><div id="mb_buttons">${MBImport.buildFormHTML(parameters)}${MBImport.buildSearchButton(
release
)}</div></div>`
).hide();
$('.product-share').parent().after(mbUI);
$('#mb_buttons form').css({ display: 'inline', 'margin-right': '5px' });
mbUI.slideDown();
}