2014-10-03 23:50:48 +00:00
|
|
|
// ==UserScript==
|
|
|
|
// @name MusicBrainz: Import from Beatport Pro
|
|
|
|
// @author VxJasonxV
|
|
|
|
// @description One-click importing of releases from pro.beatport.com/release pages into MusicBrainz
|
|
|
|
// @sourceURL https://github.com/VxJasonxV/musicbrainz-userscripts/blob/master/beatport_pro_importer.user.js
|
2015-01-18 13:13:32 +00:00
|
|
|
// @version 2015.01.18.0
|
2014-10-03 23:50:48 +00:00
|
|
|
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/beatport_pro_importer.user.js
|
|
|
|
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/beatport_pro_importer.user.js
|
|
|
|
// @include http://pro.beatport.com/release/*
|
|
|
|
// @include https://pro.beatport.com/release/*
|
|
|
|
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
|
|
|
|
// @require https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/lib/import_functions.js
|
2015-01-18 13:13:32 +00:00
|
|
|
// @require https://raw.github.com/murdos/musicbrainz-userscripts/master/lib/logger.js
|
2014-10-03 23:50:48 +00:00
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
if (!unsafeWindow) unsafeWindow = window;
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
eval( $( "#data-objects" )[0].textContent );
|
|
|
|
var release = retrieveReleaseInfo();
|
|
|
|
insertLink(release);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
function retrieveReleaseInfo() {
|
|
|
|
var release = {};
|
|
|
|
|
|
|
|
// Release information global to all Beatport releases
|
|
|
|
release.packaging = 'None';
|
|
|
|
release.country = "XW";
|
|
|
|
release.status = 'official';
|
|
|
|
release.urls = [];
|
|
|
|
release.urls.push( { 'url': window.location.href } );
|
|
|
|
release.id = $( "a[data-release]" ).attr('data-release');
|
|
|
|
|
2014-10-04 00:04:33 +00:00
|
|
|
release.title = $( "h3.interior-type:contains('Release')" ).next().text().trim();
|
|
|
|
|
2014-10-03 23:50:48 +00:00
|
|
|
var releaseDate = $( ".category:contains('Release Date')" ).next().text().split("-");
|
|
|
|
release.year = releaseDate[0];
|
|
|
|
release.month = releaseDate[1];
|
|
|
|
release.day = releaseDate[2];
|
|
|
|
|
|
|
|
release.labels = [];
|
|
|
|
release.labels.push(
|
|
|
|
{
|
|
|
|
name: $( ".category:contains('Labels')" ).next().text().trim(),
|
|
|
|
catno: $( ".category:contains('Catalog')" ).next().text()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Tracks
|
|
|
|
var tracks = [];
|
|
|
|
|
|
|
|
window.Playables.tracks.forEach(
|
|
|
|
function ( j, index, arr ) {
|
|
|
|
if(j.release.id != release.id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var artist = [];
|
|
|
|
j.artists.forEach(
|
|
|
|
function ( a, index, arr ) {
|
|
|
|
artist.push({
|
|
|
|
'artist_name': a.name
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
release.artist_credit = artist;
|
|
|
|
|
|
|
|
tracks.push({
|
|
|
|
'artist_credit': artist,
|
|
|
|
'title': j.title,
|
|
|
|
'duration': j.duration.minutes
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
release.discs = [];
|
|
|
|
release.discs.push( {
|
|
|
|
'tracks': tracks,
|
|
|
|
'format': "Digital Media"
|
|
|
|
} );
|
|
|
|
|
2015-01-18 13:13:32 +00:00
|
|
|
LOGGER.info("Parsed release: ", release);
|
2014-10-03 23:50:48 +00:00
|
|
|
return release;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert button into page under label information
|
|
|
|
function insertLink(release) {
|
|
|
|
var edit_note = 'Imported from ' + window.location.href;
|
|
|
|
var parameters = MBReleaseImportHelper.buildFormParameters(release, edit_note);
|
|
|
|
|
|
|
|
var innerHTML = MBReleaseImportHelper.buildFormHTML(parameters);
|
|
|
|
|
|
|
|
$(".interior-release-chart-content-list").append(innerHTML);
|
2015-01-18 13:13:32 +00:00
|
|
|
}
|