musicbrainz-userscripts/set-recording-comments.user.js

220 lines
8.2 KiB
JavaScript
Raw Normal View History

2015-04-07 19:00:24 +00:00
// ==UserScript==
2014-11-05 21:53:59 +00:00
// @name MusicBrainz: Set recording comments for a release
2017-03-10 18:50:20 +00:00
// @description Batch set recording comments from a Release page.
// @version 2020.9.12.1
2014-11-05 21:53:59 +00:00
// @author Michael Wiencek
// @license X11
2014-11-05 21:55:10 +00:00
// @namespace 790382e7-8714-47a7-bfbd-528d0caa2333
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/set-recording-comments.user.js
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/set-recording-comments.user.js
// @match *://*.musicbrainz.org/release/*
2014-11-05 21:53:59 +00:00
// @match *://*.mbsandbox.org/release/*
// @exclude *musicbrainz.org/release/*/*
// @exclude *.mbsandbox.org/release/*/*
// @grant none
2014-11-05 21:53:59 +00:00
// ==/UserScript==
// ==License==
// Copyright (C) 2014 Michael Wiencek
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// Except as contained in this notice, the name(s) of the above copyright
// holders shall not be used in advertising or otherwise to promote the sale,
// use or other dealings in this Software without prior written
// authorization.
// ==/License==
2020-09-13 11:25:23 +00:00
const scr = document.createElement('script');
scr.textContent = `$(${setRecordingComments});`;
2014-11-05 21:53:59 +00:00
document.body.appendChild(scr);
function setRecordingComments() {
let $tracks;
let $inputs = $();
let EDIT_RECORDING_EDIT = 72;
2014-11-05 21:53:59 +00:00
$('head').append(
$('<style></style>').text(
'input.recording-comment { background: inherit; border: 1px #999 solid; width: 32em; margin-left: 0.5em; }'
)
);
2014-11-05 21:53:59 +00:00
2020-09-13 11:25:23 +00:00
const delay = setInterval(function () {
$tracks = $('.medium tbody tr[id]');
2014-11-05 21:53:59 +00:00
if ($tracks.length) {
clearInterval(delay);
} else {
return;
}
2020-04-05 14:01:21 +00:00
$tracks.each(function () {
let $td = $(this).children('td:not(.pos):not(.video):not(.rating):not(.treleases)').has('a[href^=\\/recording\\/]'),
node = $td.children('td > .mp, td > .name-variation, td > a[href^=\\/recording\\/]').filter(':first'),
2020-04-05 14:01:21 +00:00
$input = $('<input />').addClass('recording-comment').insertAfter(node);
2014-11-05 21:53:59 +00:00
if (!editing) {
$input.hide();
}
$inputs = $inputs.add($input);
});
let release = location.pathname.match(MBID_REGEX)[0];
2014-11-05 21:53:59 +00:00
2020-04-05 14:01:21 +00:00
$.get(`/ws/2/release/${release}?inc=recordings&fmt=json`, function (data) {
let comments = Array.from(data.media)
.map(medium => medium.tracks)
.flat()
.map(track => track.recording)
.map(recording => recording.disambiguation);
2014-11-05 21:53:59 +00:00
for (let i = 0, len = comments.length; i < len; i++) {
let comment = comments[i];
2020-04-05 14:01:21 +00:00
$inputs.eq(i).val(comment).data('old', comment);
2014-11-05 21:53:59 +00:00
}
});
}, 1000);
if (!location.pathname.match(/^\/release\/[a-f\d]{8}-[a-f\d]{4}-[a-f\d]{4}-[a-f\d]{4}-[a-f\d]{12}$/)) {
2014-11-05 21:53:59 +00:00
return;
}
2020-09-13 11:25:23 +00:00
const MBID_REGEX = /[a-f\d]{8}-[a-f\d]{4}-[a-f\d]{4}-[a-f\d]{4}-[a-f\d]{12}/;
let editing = false,
2014-11-05 21:53:59 +00:00
activeRequest = null;
2020-04-05 14:01:21 +00:00
$('body').on('input.rc', '.recording-comment', function () {
$(this).css('border-color', this.value === $(this).data('old') ? '#999' : 'red');
2014-11-05 21:53:59 +00:00
});
let $container = $('<div></div>').insertAfter('h2.tracklist');
2014-11-05 21:53:59 +00:00
$('<button>Edit recording comments</button>')
.addClass('styled-button')
2020-04-05 14:01:21 +00:00
.on('click', function () {
2014-11-05 21:53:59 +00:00
editing = !editing;
2020-04-05 14:01:21 +00:00
$('#set-recording-comments').add($inputs).toggle(editing);
$(this).text(`${editing ? 'Hide' : 'Edit'} recording comments`);
if (editing) {
$('#all-recording-comments').focus();
}
2014-11-05 21:53:59 +00:00
})
.appendTo($container);
$container.append(
'\
2014-11-05 21:53:59 +00:00
<table id="set-recording-comments">\
<tr>\
<td><label for="all-recording-comments">Set all visible comments to:</label></td>\
<td><input type="text" id="all-recording-comments" style="width: 32em;"></td>\
2014-11-05 21:53:59 +00:00
</tr>\
<tr>\
<td><label for="recording-comments-edit-note">Edit note:</label></td>\
<td><textarea id="recording-comments-edit-note" style="width: 32em;" rows="5"></textarea></td>\
2014-11-05 21:53:59 +00:00
</tr>\
<tr>\
<td colspan="2" class="auto-editor">\
<label>\
<input id="make-recording-comments-votable" type="checkbox">\
Make all edits votable.\
</label>\
</td>\
</tr>\
2014-11-05 21:53:59 +00:00
<tr>\
<td colspan="2">\
<button id="submit-recording-comments" class="styled-button">Submit changes (visible and marked red)</button>\
2014-11-05 21:53:59 +00:00
</td>\
</tr>\
</table>'
);
2014-11-05 21:53:59 +00:00
$('#set-recording-comments').hide();
2014-11-05 21:53:59 +00:00
2020-04-05 14:01:21 +00:00
$('#all-recording-comments').on('input', function () {
$inputs.filter(':visible').val(this.value).trigger('input.rc');
2014-11-05 21:53:59 +00:00
});
2020-09-13 11:25:23 +00:00
const $submitButton = $('#submit-recording-comments').on('click', function () {
2014-11-05 21:53:59 +00:00
if (activeRequest) {
activeRequest.abort();
activeRequest = null;
$submitButton.text('Submit changes (marked red)');
$inputs.prop('disabled', false).trigger('input.rc');
2014-11-05 21:53:59 +00:00
return;
}
$submitButton.text('Submitting...click to cancel!');
$inputs.prop('disabled', true);
2014-11-05 21:53:59 +00:00
let editData = [],
deferred = $.Deferred();
2014-11-05 21:53:59 +00:00
2020-04-05 14:01:21 +00:00
$.each($tracks, function (i, track) {
if ($(track).filter(':visible').length > 0) {
let $input = $inputs.eq(i),
comment = $input.val();
if (comment === $input.data('old')) {
$input.prop('disabled', false);
return;
}
deferred
2020-04-05 14:01:21 +00:00
.done(function () {
$input.data('old', comment).trigger('input.rc').prop('disabled', false);
})
2020-04-05 14:01:21 +00:00
.fail(function () {
$input.css('border-color', 'red').prop('disabled', false);
});
let link = track.querySelector("td a[href^='/recording/']"),
mbid = link.href.match(MBID_REGEX)[0];
editData.push({ edit_type: EDIT_RECORDING_EDIT, to_edit: mbid, comment: comment });
2014-11-05 21:53:59 +00:00
}
});
if (editData.length === 0) {
$inputs.prop('disabled', false);
$submitButton.prop('disabled', false).text('Submit changes (marked red)');
2014-11-05 21:53:59 +00:00
} else {
let editNote = $('#recording-comments-edit-note').val();
let makeVotable = document.getElementById('make-recording-comments-votable').checked;
2014-11-05 21:53:59 +00:00
2015-04-07 19:00:24 +00:00
activeRequest = $.ajax({
type: 'POST',
url: '/ws/js/edit/create',
dataType: 'json',
data: JSON.stringify({ edits: editData, editNote: editNote, makeVotable: makeVotable }),
2020-04-05 14:01:21 +00:00
contentType: 'application/json; charset=utf-8',
})
2020-04-05 14:01:21 +00:00
.always(function () {
$submitButton.prop('disabled', false).text('Submit changes (marked red)');
2015-04-07 19:00:24 +00:00
})
2020-04-05 14:01:21 +00:00
.done(function () {
2014-11-05 21:53:59 +00:00
deferred.resolve();
})
2020-04-05 14:01:21 +00:00
.fail(function () {
2014-11-05 21:53:59 +00:00
deferred.reject();
});
}
});
}