mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-14 20:22:27 +00:00
discogs: improve detected of medium formats.
Previous code was considering that for "6xVinyl, LP" only the last medium was a 12" Vinyl.
This commit is contained in:
parent
a7faaceb55
commit
9aa9582974
1 changed files with 17 additions and 9 deletions
|
@ -511,20 +511,23 @@ function parseDiscogsRelease(data) {
|
||||||
if (discogsRelease.formats.length > 0) {
|
if (discogsRelease.formats.length > 0) {
|
||||||
for (var i = 0; i < discogsRelease.formats.length; i++) {
|
for (var i = 0; i < discogsRelease.formats.length; i++) {
|
||||||
|
|
||||||
for (var j = 0; j < discogsRelease.formats[i].qty; j++) {
|
// Release format
|
||||||
if (discogsRelease.formats[i].name in MediaTypes) {
|
var discogs_format = discogsRelease.formats[i].name;
|
||||||
release_formats.push(MediaTypes[discogsRelease.formats[i].name]);
|
var mb_format = undefined;
|
||||||
}
|
if (discogs_format in MediaTypes) {
|
||||||
|
mb_format = MediaTypes[discogs_format];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (discogsRelease.formats[i].descriptions) {
|
if (discogsRelease.formats[i].descriptions) {
|
||||||
$.each(discogsRelease.formats[i].descriptions, function(index, desc) {
|
$.each(discogsRelease.formats[i].descriptions, function(index, desc) {
|
||||||
// Release format: special handling of vinyl 7", 10" and 12" and other more specific CD/DVD formats
|
if (!(discogs_format in ['Box Set'])) {
|
||||||
if (desc.match(/7"|10"|12"|^VCD|SVCD|CD\+G|HDCD|DVD-Audio|DVD-Video/)) release_formats[release_formats.length-1] = MediaTypes[desc];
|
// Release format: special handling of vinyl 7", 10" and 12" and other more specific CD/DVD formats
|
||||||
|
if (desc.match(/7"|10"|12"|^VCD|SVCD|CD\+G|HDCD|DVD-Audio|DVD-Video/) && (desc in MediaTypes)) mb_format = MediaTypes[desc];
|
||||||
|
}
|
||||||
// Release format: special handling of Vinyl, LP == 12" (http://www.discogs.com/help/submission-guidelines-release-format.html#LP)
|
// Release format: special handling of Vinyl, LP == 12" (http://www.discogs.com/help/submission-guidelines-release-format.html#LP)
|
||||||
if (discogsRelease.formats[i].name == "Vinyl" && desc == "LP") release_formats[release_formats.length-1] = '12" Vinyl';
|
if (discogs_format == "Vinyl" && desc == "LP") mb_format = '12" Vinyl';
|
||||||
// Release format: special handling of CD, Mini == 8cm CD
|
// Release format: special handling of CD, Mini == 8cm CD
|
||||||
if (discogsRelease.formats[i].name == "CD" && desc == "Mini") release_formats[release_formats.length-1] = '8cm CD';
|
if (discogs_format == "CD" && desc == "Mini") mb_format = '8cm CD';
|
||||||
// Release status
|
// Release status
|
||||||
if (desc.match(/Promo|Smplr/)) release.status = "promotion";
|
if (desc.match(/Promo|Smplr/)) release.status = "promotion";
|
||||||
if (desc.match(/Unofficial Release/)) release.status = "bootleg";
|
if (desc.match(/Unofficial Release/)) release.status = "bootleg";
|
||||||
|
@ -533,10 +536,15 @@ function parseDiscogsRelease(data) {
|
||||||
if (desc.match(/^Album/)) release.type = "album";
|
if (desc.match(/^Album/)) release.type = "album";
|
||||||
if (desc.match(/Single/)) release.type = "single";
|
if (desc.match(/Single/)) release.type = "single";
|
||||||
if (desc.match(/EP|Mini-Album/)) release.type = "ep";
|
if (desc.match(/EP|Mini-Album/)) release.type = "ep";
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mb_format) {
|
||||||
|
for (var j = 0; j < discogsRelease.formats[i].qty; j++) {
|
||||||
|
release_formats.push(mb_format);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Release packaging
|
// Release packaging
|
||||||
if (discogsRelease.formats[i].text) {
|
if (discogsRelease.formats[i].text) {
|
||||||
var freetext = discogsRelease.formats[i].text.toLowerCase().replace(/-/g, '').replace(/ /g, '');
|
var freetext = discogsRelease.formats[i].text.toLowerCase().replace(/-/g, '').replace(/ /g, '');
|
||||||
|
|
Loading…
Reference in a new issue