コンテンツにスキップ

「利用者:Dragoniez/scripts/AN Reporter.js」の版間の差分

削除された内容 追加された内容
v2.2: 報告試行後のボタンの表示方法を変更
v2.3: 報告対象者がレンジIPでもインプットに自動入力される機能を追加
2行目: 2行目:
* AN Reporter (ANR)
* AN Reporter (ANR)
* Author: Dragoniez
* Author: Dragoniez
* Version: 2.2
* Version: 2.3
*************************************/
*************************************/
//<nowiki>
//<nowiki>
197行目: 197行目:
` <div id="anr-user1-input-div">` +
` <div id="anr-user1-input-div">` +
` <label id="anr-user1-label" for="anr-user1-input" style="${labelCSS}">利用者</label>` +
` <label id="anr-user1-label" for="anr-user1-input" style="${labelCSS}">利用者</label>` +
` <input id="anr-user1-input" style="width: 31ch;">` +
` <input id="anr-user1-input" style="width: 34ch;">` +
` <select disabled id="anr-user1-select">` +
` <select disabled id="anr-user1-select">` +
` <option class="anr-opt-UNL">UNL</option>` +
` <option class="anr-opt-UNL">UNL</option>` +
270行目: 270行目:
$('.anr-modal-dialog').dialog({
$('.anr-modal-dialog').dialog({
'minHeight': 50,
'minHeight': 50,
'minWidth': 300,
'minWidth': '58ch',
'width': 'auto',
'width': 'auto',
'modal': true,
'modal': true,
277行目: 277行目:


// Get the name of the user to report if it can be retrieved from the page
// Get the name of the user to report if it can be retrieved from the page
var username = mw.config.get('wgRelevantUserName');
var username = mw.config.get('wgRelevantUserName'); // Note: This does not pick up IP ranges

// Workaround to pick up IP ranges
if (username === null && mw.config.get('wgCanonicalSpecialPageName') === 'Contributions') {
let relUsername = $('#firstHeading').text().replace('の投稿記録', '');
if (mw.util.isIPAddress(relUsername, true)) {
username = relUsername;
}
}
// If wgRelevantUserName returns null or the name of the current user, set the variable as a null string
if (!username || username === mw.config.get('wgUserName')) {
if (!username || username === mw.config.get('wgUserName')) {
username = '';
username = '';
}
}

// Show the user name on the dialog
$('#anr-user1-input').val(username);
$('#anr-user1-input').val(username);
typeDropdown('#anr-user1-input', '#anr-user1-select');
typeDropdown('#anr-user1-input', '#anr-user1-select');
689行目: 701行目:
$('.anr-section-div').empty();
$('.anr-section-div').empty();
$('.anr-section-div').append(sectionsI);
$('.anr-section-div').append(sectionsI);
$('#anr-section-options-i').css({'width': $(this).width()});
$('.anr-section-div').css('display', 'block');
$('.anr-section-div').css('display', 'block');
$('.anr-target-a-div').css('display', 'block');
$('.anr-target-a-div').css('display', 'block');
696行目: 709行目:
$('.anr-section-div').empty();
$('.anr-section-div').empty();
$('.anr-section-div').append(sectionsS);
$('.anr-section-div').append(sectionsS);
var widthS = $('#anr-target-options').width();
$('#anr-section-options-s').select2({'width': $(this).width()});
$('#anr-section-options-s').select2({'width': widthS}); // Adjust the width of Select2
$('.anr-section-div').css('display', 'block');
$('.anr-section-div').css('display', 'block');
$('.anr-target-a-div').css('display', 'block');
$('.anr-target-a-div').css('display', 'block');

2022年2月14日 (月) 09:05時点における版

/*************************************  
 *  AN Reporter (ANR)
 *  Author: Dragoniez
 *  Version: 2.3
 *************************************/
//<nowiki>

// Run the script only after Select2, jQuery UI, and the DOM are loaded
$.when(
    $.getScript('https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js'),
    mw.loader.using('jquery.ui'),
    $.ready
).then(function(){

    // Load CSS source for Select2
    $('head').append($('<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css">'));

    // Default CSS for Select2
    $('head').append($(
        '<style>' +
        '   .select2-selection__rendered {' +
        '       padding: 1px 2px;' +
        '       font-size: 1em;' +
        '    }' +
        '   .select2-results__option, .select2-results__group {' +
        '       padding: 1px 8px;' +
        '       font-size: 0.9em;' +
        '       margin: 0;' +
        '    }' +
        '</style>'
    ));    

    // Run the script only if the user is autoconfirmed and the page is not an edit page
    if (userIsInGroup('autoconfirmed') && mw.config.get('wgAction') !== 'edit') {

        // Define the position of the '報告' button
        var btnPosition;
        switch(mw.config.get('skin')) {
            case 'vector':
            case 'vector-2022':
                btnPosition = 'p-views';
                break;
            case 'minerva':
                btnPosition = 'p-personal';
                break;
            case 'monobook':
            case 'timeless':
                    btnPosition = 'p-cactions';
                    break;
            default:
                btnPosition = 'p-cactions';
        }

        // Add ANR tab
        $(mw.util.addPortletLink(btnPosition, '#', '報告', 'ca-anr', '管理者伝言板に利用者を報告', null, '#ca-move'))
        .click(function(e){

            // Cancel event that redirects the user to the href destination
            e.preventDefault();

            // ********** DIALOG CREATION **********

            // CSS
            var labelCSS = 'display: inline-block; width: 8ch;';
            var marginCSS = 'margin: 1em 0;';

            // Page names
            const ANI = 'Wikipedia:管理者伝言板/投稿ブロック';
            const ANS = 'Wikipedia:管理者伝言板/投稿ブロック/ソックパペット';
            const AN3RR = 'Wikipedia:管理者伝言板/3RR';
            const Iccic = 'Wikipedia:進行中の荒らし行為/長期/Iccic/投稿ブロック依頼';
            const ISECHIKA = 'Wikipedia:管理者伝言板/投稿ブロック/いせちか';
            const KAGE = 'Wikipedia:管理者伝言板/投稿ブロック/影武者';
            const KIYOSHIMA = 'Wikipedia:管理者伝言板/投稿ブロック/清島達郎';
            const SHINJU = 'Wikipedia:管理者伝言板/投稿ブロック/真珠王子';

            // Sections on WP:AN/I
            var sectionsI =
            `   <label for="anr-section-options-i" style="${labelCSS}">節</label>` +
            `   <select id="anr-section-options-i">` +
            `       <option selected disabled hidden>選択してください</option>` +
            `       <option>${getSectionI()}</option>` +
            `       <option>不適切な利用者名</option>` +
            `       <option>公開アカウント</option>` +
            `       <option>公開プロキシ・ゾンビマシン・ボット・不特定多数</option>` +
            `       <option>犯罪行為またはその疑いのある投稿</option>` +
            `   </select>`;
            
            // Sections on WP:AN/S
            var sectionsS =
            `   <label for="anr-section-options-s" style="${labelCSS}">名称</label>` +
            `   <select id="anr-section-options-s">` +
            `       <option selected disabled hidden>選択してください</option>` +
            `       <optgroup label="系列が立てられていないもの">` +
            `           <option>著作権侵害・犯罪予告</option>` +
            `           <option>名誉毀損・なりすまし・個人情報</option>` +
            `           <option>妨害編集・いたずら</option>` +
            `           <option>その他</option>` +
            `       </optgroup>` +
            `       <optgroup label="LTA">` +
            `           <option>声優・特撮関連荒らし系 (203)</option>` +
            `           <option>Audia3sb系 (3SB)</option>` +
            `           <option>愛知@nifty荒らし系(AICHI)</option>` +
            `           <option>秋田ぷらら可変IP系(AKITAPLALA)</option>` +
            `           <option>Akoyano系 (AKY)</option>` +
            `           <option>Asaklira系(ASA)</option>` +
            `           <option>麻原英太系 (ASACOV)</option>` +
            `           <option>アジアンビ系 (ASIANB)</option>` +            
            `           <option>Bulut系 (Asperger、ASPE)</option>` +
            `           <option>백돌系(BAEG)</option>` +
            `           <option>ぼかんてぃん系(BOQ)</option>` +
            `           <option>ブリッ系 (BUR)</option>` +
            `           <option>Bz.i.yqs系(BZIYQS)</option>` +
            `           <option>中央アジア史サブスタブ濫造系(CASTUB)</option>` +
            `           <option>ダルメーター系(DARU)</option>` +
            `           <option>X-enon147系 (DOI)</option>` +
            `           <option>ドラえもん・ギャンブル関連のIP系(DORA)</option>` +
            `           <option>Ellsiemall系 (ELLS)</option>` +
            `           <option>イギリス可変IP系(ENS)</option>` +
            `           <option>EricNeedles3系 (ERIC3)</option>` +
            `           <option>IUCNレッドリスト関連荒らし系(FRL)</option>` +
            `           <option>Gamui系 (GAMUI)</option>` +
            `           <option>極楽サタン系 (GOKURAKU)</option>` +
            `           <option>Gordon S系(GORDON)</option>` +
            `           <option>Greaseno系 (GREA)</option>` +
            `           <option>Grimm系 (GRIMM)</option>` +
            `           <option>はー先輩系 (HAASEN)</option>` +
            `           <option>HAT系 (HAT)</option>` +
            `           <option>ヒースロー系 (HEATHROW)</option>` +
            `           <option>おぉたむすねィく探検隊系(HEBI)</option>` +
            `           <option>Hero123系 (HERO123)</option>` +
            `           <option>Iccic系 (Iccic)</option>` + // Has an independent page
            `           <option>池沼ガイジ系 (IKE)</option>` +
            `           <option>いせちか系 (ISECHIKA)</option>` + // Has an independent page
            `           <option>天体名プロジェクト系(JANNET)</option>` +
            `           <option>Jj9系 (JJ9)</option>` +
            `           <option>課代さん系(KADAI)</option>` +
            `           <option>影武者系(KAGE)</option>` + // Has an independent page
            `           <option>かめでぃー系(KAMEDY)</option>` +
            `           <option>かなべえコバトン系 (KANAKOBA)</option>` +
            `           <option>Nbckfkh系(KFKH)</option>` +
            `           <option>清島達郎系 (清島、KIYOSHIMA)</option>` + // Has an independent page
            `           <option>木崎妃系 (KIZAKI)</option>` +
            `           <option>韓国KT系 (KKT)</option>` +
            `           <option>Masato Koizumi系(KOIZUMI、M.K.)</option>` +
            `           <option>Konbudon系(KONBU)</option>` +
            `           <option>テレビ局関連記事を荒らす韓国IP系(KORTV)</option>` +
            `           <option>久保帯人関連荒らし系 (KUBOREL)</option>` +
            `           <option>M21系 (M21)</option>` +
            `           <option>MASA系 (Mr.ちゅらさん、CHURASAN、MASA)</option>` +
            `           <option>マヤオ系 (MAYAO)</option>` +
            `           <option>Mikihisa系(MIKI)</option>` +
            `           <option>Milky palace系 (Milky)</option>` +
            `           <option>水戸ソフトバンク可変IP系 (MITO)</option>` +
            `           <option>猛烈な勢いで赤リンクを無差別除去するアカウント群系(MOUAKA)</option>` +
            `           <option>MShared系 (MShared)</option>` +
            `           <option>名取の納豆系(NATO)</option>` +           
            `           <option>Die ndbtk系 (NDBTK)</option>` +
            `           <option>NoSaito・みそかつおにんにく系 (NMT)</option>` +
            `           <option>NODA系 (NODA)</option>` +
            `           <option>Notsu (NOTSU)</option>` +
            `           <option>カテゴリ・リダイレクト・サブスタブ濫造を行うIP系(NTTPC)</option>` +
            `           <option>(内部リンク除去)大阪ZAQ可変IP系(OSAKAZAQ)</option>` +
            `           <option>親子他人丼系(OYAKO)</option>` +
            `           <option>Pingpongpang (PPP)</option>` +
            `           <option>川野名 倫系(RIN、DEARU)</option>` +
            `           <option>さんさんさんさん系 (SAN)</option>` +
            `           <option>詐称コピペ系 (SASHO)</option>` +
            `           <option>沙耶奈系(SAYANA)</option>` +
            `           <option>整数関連荒らしIP系 (SEISU)</option>` +
            `           <option>荒らし自己差し戻しIP系 (SELFREVERT)</option>` +
            `           <option>真珠王子系(SHINJU)</option>` + // Has an independent page
            `           <option>すらいむさん系(SLIME)</option>` +
            `           <option>新川温泉系 (SNKW)</option>` +
            `           <option>ソウ系(SOH)</option>` +
            `           <option>埼玉楽天モバイルIP系 (STRM)</option>` +          
            `           <option>Suzukitaro系 (ツバル、SUZU)</option>` +
            `           <option>Syun respect for music系 (SYUN)</option>` +
            `           <option>涼宮ハルヒ20062009系 (SZMY)</option>` +
            `           <option>TANS系 (TANS)</option>` +
            `           <option>ゼロタロス系 (TAROSU)</option>` +
            `           <option>多摩ケーブルネットワークIP系 (T-NET)</option>` +
            `           <option>若いナマケモノは不要系(WAK)</option>` +
            `           <option>ホワイト・ジャック系 (カダフィ元帥、WHITE)</option>` +
            `           <option>Wpcon abuse系 (WPCON)</option>` +
            `           <option>Yanajin33系(YAN)</option>` +
            `           <option>揶揄リダイレクト作成荒らし系(YAYURE)</option>` +            
            `           <option>黄色関係のIP系 (YELLOW)</option>` +
            `           <option>Yqm系(YQM)</option>` +
            `           <option>隊士蘭堂系</option>` +
            `       </optgroup>` +
            `   </select>`;

            // Username input
            var userHtml =
            //  <div class="anr-user-div">
            `       <div id="anr-user1-input-div">` +
            `           <label id="anr-user1-label" for="anr-user1-input" style="${labelCSS}">利用者</label>` +
            `           <input id="anr-user1-input" style="width: 34ch;">` +
            `           <select disabled id="anr-user1-select">` +
            `               <option class="anr-opt-UNL">UNL</option>` +
            `               <option class="anr-opt-User2">User2</option>` +
            `               <option class="anr-opt-IP2">IP2</option>` +
            `               <option class="anr-opt-logid">logid</option>` +
            `               <option class="anr-opt-diff">diff</option>` +
            `               <option selected class="anr-opt-none">none</option>` +
            `           </select>` +
            `       </div>` +
            `       <div id="anr-user1-checkbox-div" style="display: none;">` +
            `           <label class="anr-emptylabel" style="${labelCSS}"></label>` +
            `           <input type="checkbox" id="anr-user1-checkbox">` +
            `           <label id="anr-user1-checkbox-hide" for="anr-user1-checkbox">利用者名を隠す</label>` +
            `       </div>` +
            `       <div id="anr-user1-a-div" style="display: none;">` +
            `           <label id="anr-user1-label" for="anr-user1-a" style="${labelCSS}"></label>` +
            `           <a id="anr-user1-a" href="" target="_blank"></a>` +
            `       </div>`;
            //  </div>            

            // The whole html contour
            var modalHtml =
            //  <div class="anr-modal-dialog" title="AN Reporter">
            `       <div class="anr-modal-header">` +
            `           <h2>利用者を報告</h2>` +
            `       </div>` +
            `       <div class="anr-modal-body" >` +
            `           <form>` +
            `               <div class="anr-target-div" style="${marginCSS}">` +
            `                   <label for="anr-target-options" style="${labelCSS}">報告先</label>` +
            `                   <select id="anr-target-options">` +
            `                       <option selected disabled hidden>選択してください</option>` +
            `                       <option>${ANI}</option>` +
            `                       <option>${ANS}</option>` +
            `                       <option>${AN3RR}</option>` +
            `                   </select>` +
            `                   <div class="anr-target-a-div" style="display: none;">` +
            `                       <label class="anr-emptylabel" for="anr-target-a" style="${labelCSS}"></label>` +
            `                       <a id="anr-target-a" href="" target="_blank">報告先を確認</a>` +
            `                   </div>` +
            `               </div>` +
            `               <div class="anr-section-div" style="${marginCSS} display: none;">` +
            //                  sectionsX +
            `               </div>` +
            `               <div class="anr-user-div" style="${marginCSS}">` +
                                userHtml +
            `                   <div class="anr-btn-div">` +
            `                       <button type="button" class="anr-addBtn">追加</button>` +
            `                   </div>` +
            `               </div>` +
            `               <div class="anr-reason-div" style="${marginCSS}">` +
            `                   <label for="anr-reason-text" style="${labelCSS}">理由</label>` +
            `                   <textarea id="anr-reason-text" rows="8" style="width: 100%"></textarea>` +
            `               </div>` +
            `               <div class="anr-summary-div" style="${marginCSS}">` +
            `                   <input id="anr-summary-checkbox" type="checkbox">` +
            `                   <label for="anr-summary-checkbox">要約を指定</label>` +
            `                   <textarea id="anr-summary-text" rows="3" style="width: 100%; display: none;"></textarea>` +
            `               </div>` +
            `           </form>` +
            `       </div>`;
            //  </div>`

            // Add the frame div to the page
            $('body').append($('<div class="anr-modal-dialog" title="AN Reporter" style="max-height: 80vh;"/>'));            

            // Create html elements inside the div
            $('.anr-modal-dialog').html(modalHtml);

            // Show dialog
            $('.anr-modal-dialog').dialog({
                'minHeight': 50,
                'minWidth': '58ch',
                'width': 'auto',
                'modal': true,
                'position': { my: 'center', at: 'top+20%', of: window },
                'open': function(){

                    // Get the name of the user to report if it can be retrieved from the page
                    var username = mw.config.get('wgRelevantUserName'); // Note: This does not pick up IP ranges

                    // Workaround to pick up IP ranges
                    if (username === null && mw.config.get('wgCanonicalSpecialPageName') === 'Contributions') {
                        let relUsername = $('#firstHeading').text().replace('の投稿記録', '');
                        if (mw.util.isIPAddress(relUsername, true)) {
                            username = relUsername;
                        }
                    }
                    
                    // If wgRelevantUserName returns null or the name of the current user, set the variable as a null string
                    if (!username || username === mw.config.get('wgUserName')) {
                        username = '';
                    }

                    // Show the user name on the dialog
                    $('#anr-user1-input').val(username);
                    typeDropdown('#anr-user1-input', '#anr-user1-select');
                    if (username === mw.config.get('wgRelevantUserName') && !mw.util.isIPAddress(username, true)) {
                        $('#anr-user1-checkbox-div').css('display', 'block'); // Show 'hide username' if the name obtained is a user's
                    }

                },
                'buttons': [{
                    'text': '報告',

                    // Event to trigger when the "報告" button is hit
                    'click': function() {

                        // Check if at least one username is given and get users to report (and their UserAN types)
                        var users = [];
                        var types = [];
                        for (let i = 1; i < Infinity; i++) { // Loop through all inputs
                            if ($(`#anr-user${i}-input`).length === 0) { // if selector is not found
                                break; // exit for
                            } else { // if selector is found
                                if (trimA($(`#anr-user${i}-input`).val()) !== '') { // if input is not empty
                                    users.push(trimA($(`#anr-user${i}-input`).val())); // Push the username into the array
                                    types.push($(`#anr-user${i}-select`).children('option').filter(':selected').text()); // Push the UserAN type into the array
                                }
                            }
                        }

                        // Get the name of the section to edit                        
                        var pageToEdit =  $('#anr-target-options').children('option').filter(':selected').text();
                        var sectionToEdit = '選択してください';
                        var ANSOptSelected = $('#anr-section-options-s').find('option').filter(':selected').text();
                        var reportToANS = false;

                        if (pageToEdit === ANI) { // If WP:AN/I is selected as the target page to edit

                            sectionToEdit = $('#anr-section-options-i').children('option').filter(':selected').text();

                        } else if (pageToEdit === ANS) { // If WP:AN/S is selected as the target page to edit

                            reportToANS = true;
                            if (ANSOptSelected === 'Iccic系 (Iccic)') {
                                pageToEdit = Iccic;
                                sectionToEdit = '新規依頼';
                            } else if (ANSOptSelected === 'いせちか系 (ISECHIKA)') {
                                pageToEdit = ISECHIKA;
                                sectionToEdit = '新規依頼';
                            } else if (ANSOptSelected === '影武者系(KAGE)') {
                                pageToEdit = KAGE;
                                sectionToEdit = '新規依頼';
                            } else if (ANSOptSelected === '清島達郎系 (清島、KIYOSHIMA)') {
                                pageToEdit = KIYOSHIMA;
                                sectionToEdit = '新規依頼';
                            } else if (ANSOptSelected === '真珠王子系(SHINJU)') {
                                pageToEdit = SHINJU;
                                sectionToEdit = '新規依頼';
                            } else {
                                sectionToEdit = ANSOptSelected;
                            }

                        } else if (pageToEdit === AN3RR) { // If WP:AN/3RR is selected as the target page to edit

                            sectionToEdit = '3RR';

                        }

                        if ( // Check if necessary fields are filled
                            pageToEdit === '選択してください' || // The page dropdown's remained 選択してください 
                            sectionToEdit === '選択してください' || // The section dropdown's remained 選択してください
                            trimA($('#anr-reason-text').val()) === '' || // No reason is given
                            users.length === 0 // No username is given
                        ) {
                            alert('必須項目が入力・選択されていません'); // Show error and cancel the edit
                            return;
                        }

                        // Edit preparation
                        var $dialog = $(this);
                        var width = $dialog.width();
                        var msgEditing = 
                        '   <div class="anr-editing">' +
                        '       <p>最新版を取得しています</p>' +
                        '   </div>';
                        $dialog.find('form').css('display', 'none'); // Hide dialog content
                        $dialog.dialog('option', 'width', width);
                        $dialog.dialog({'buttons': [] }); // Hide the button
                        $dialog.append($(msgEditing));
                        
                        // UserAN template and the reason of the report
                        const UserAN = '{{UserAN|t=TYPE|USER}}';                        
                        var reason = trimA($('#anr-reason-text').val());
                        if (reason.substring(reason.length - 4) !== '~~~~') { // If reason doesn't contain signature, add one
                            reason = reason + '--~~~~';
                        }

                        // Get edit summary
                        const scriptAd = ' ([[User:Dragoniez/AN Reporter|AN Reporter]])';
                        const editSummarySection = '/*' + sectionToEdit + '*/';

                        var editSummary = 
                        trimA($('#anr-summary-text').val()) === '' ? 
                        editSummarySection + genEditSummary() + scriptAd: 
                        editSummarySection + trimA($('#anr-summary-text').val()) + scriptAd;

                        // Get text to add to the page
                        var textToSubmit = '';
                        if (users.length < 2) { // If user to report is just one
                            textToSubmit = '* ' + UserAN.replace('TYPE', types[0]).replace('USER', users[0]) + ' - ' + reason;
                        } else { // If two or more
                            for (let i = 0; i < users.length; i++) {
                                textToSubmit += '\* ' + UserAN.replace('TYPE', types[i]).replace('USER', users[i]) + '\n';
                            }
                            textToSubmit += ': ' + reason;
                        }

                        // For debugging
                        //pageToEdit = '利用者:Dragoniez/test';
                        //editSummary = 'Test edit via mediawiki API';

                        // Get the wiki pagename for link
                        var wikiPagename = pageToEdit + '#' + sectionToEdit;

                        // Boolean value to pass to function when edit attempt is done
                        var editFailed = false;

                        // Get the latest revision
                        new mw.Api().get({
                            action: 'query',
                            titles: pageToEdit,
                            prop: 'revisions',
                            curtimestamp: true,
                            formatversion: 2
                        }).done(function(res1){

                            if (res1 && res1.query && res1.query.pages) { // If the latest revision is successfully retrieved
                                if (res1.query.pages[0].missing !== true) { // If the page exists

                                    // Get the details of the latest revision
                                    var baseTS = res1.query.pages[0].revisions[0].timestamp;
                                    var curTS = res1.curtimestamp;

                                    // Update message
                                    msgEditing =
                                    '   <p style="color: MediumSeaGreen">取得に成功しました</p>' +
                                    '   <p>セクション番号を取得しています</p>';
                                    $('.anr-editing').append($(msgEditing));

                                    // Get section numbers
                                    var sectionsAPI = {};
                                    var msgDone = ''; // Message to show when edit attempt is done
                                    new mw.Api().get({
                                        action: 'parse',
                                        page: pageToEdit,
                                        formatversion: 2
                                    }).done(function(res2){

                                        if (res2 && res2.parse && res2.parse.sections) { // If the section list is successfully retrieved

                                            // Get section numbers from section titles
                                            for (let i = 0; i < Object.keys(res2.parse.sections).length; i++) {
                                                sectionsAPI[res2.parse.sections[i].line] = res2.parse.sections[i].index;
                                            }                                            
                                            
                                            var sectionNum = sectionsAPI[sectionToEdit];
                                            if (sectionNum === undefined) { // If section title in the dropdown is not found

                                                // Show the details of the error
                                                msgDone = 
                                                '<p style="color: MediumVioletRed">取得に失敗しました</p>' +
                                                '<p>指定されたセクションが見つかりませんでした</p>' +
                                                '<p>考えられる原因:</p>' + 
                                                `<p>1. 編集先のページの節構成が変更された</p>` +
                                                `<p>2. 通信に失敗した</p>` +
                                                `<p>3. スクリプトのバグ</p>` +
                                                '<br>' +
                                                '<p>手動編集用:</p>' +
                                                `<textarea disabled rows="4" style="width: 100%">${textToSubmit}</textarea>` +
                                                '<br>' + 
                                                '<p>要約:</p>' + 
                                                `<textarea disabled rows="2" style="width: 100%">${editSummary.replace(scriptAd, '')}</textarea>`;
                                                $('.anr-editing').append($(msgDone));

                                                $dialog.dialog('option', 'width', width);
                                                editFailed = true;
                                                editDone($dialog, editFailed, wikiPagename);

                                            } else { // If section title in the dropdown is found

                                                // Update message
                                                msgEditing =
                                                '   <p style="color: MediumSeaGreen">取得に成功しました</p>' +
                                                '   <p>最新版のテキストを取得しています</p>';
                                                $('.anr-editing').append($(msgEditing));

                                                // Get the text of the revision
                                                new mw.Api().get({
                                                    action: 'parse',
                                                    page: pageToEdit,
                                                    section: sectionNum,
                                                    prop: 'wikitext',
                                                    formatversion: 2
                                                }).done(function(res3){

                                                    if (res3 && res3.parse) {

                                                        // Update message
                                                        msgEditing =
                                                        '   <p style="color: MediumSeaGreen">取得に成功しました</p>' +
                                                        '   <p>報告を試みています</p>';
                                                        $('.anr-editing').append($(msgEditing));

                                                        // Get the whole text to append
                                                        var wikitextObtained = res3.parse.wikitext;
                                                        var wholeTextToSubmit;
                                                        const delimiter = '<!-- ◆';
                                                        const miscHeader = `{{bgcolor|#eee|{{Visible anchor|他${today()}}}|div}}`;

                                                        if (reportToANS) { // If the target is WP:AN/S

                                                            // Add div if the target section is 'その他' but lacks div for the current date
                                                            if (sectionToEdit === 'その他' && wikitextObtained.indexOf(miscHeader) === -1) {
                                                                textToSubmit = '; ' + miscHeader + '\n\n' + textToSubmit;
                                                            }

                                                            // Insert text into the right place
                                                            var wikitextSplit = wikitextObtained.split(delimiter);
                                                            if (wikitextSplit.length === 3) {

                                                                wholeTextToSubmit = 
                                                                wikitextSplit[0] + delimiter + trimA(wikitextSplit[1]) + '\n\n' +
                                                                textToSubmit + '\n\n' + delimiter + wikitextSplit[2];

                                                            } else { // If section structure has been changed

                                                                // Show error and quit the procedure
                                                                msgDone = 
                                                                '<p style="color: MediumVioletRed">報告に失敗しました</p>' +
                                                                '<p>セクション構造が改変されているため、' +
                                                                `<a href="${mw.util.getUrl('User talk:Dragoniez/AN Reporter')}" target="_blank">開発者</a>` +
                                                                'に連絡をお願いします</p>' +
                                                                '<br>' +
                                                                '<p>手動編集用:</p>' +
                                                                `<textarea disabled rows="4" style="width: 100%">${textToSubmit}</textarea>` +
                                                                '<br>' + 
                                                                '<p>要約:</p>' + 
                                                                `<textarea disabled rows="2" style="width: 100%">${editSummary.replace(scriptAd, '')}</textarea>`;
                                                                $('.anr-editing').append($(msgDone));

                                                                $dialog.dialog('option', 'width', width);
                                                                editFailed = true;
                                                                editDone($dialog, editFailed, wikiPagename);
                                                                return;

                                                            }

                                                        } else { // If the target is WP:AN/I or WP:AN/3RR

                                                            wholeTextToSubmit = trimA(wikitextObtained) + '\n\n' + textToSubmit;

                                                        }
                                                
                                                        // Edit the page
                                                        $.ajax({
                                                            url: mw.util.wikiScript('api'),
                                                            data: {
                                                                format: 'json',
                                                                action: 'edit',
                                                                title: pageToEdit,
                                                                section: sectionNum,
                                                                summary: editSummary,
                                                                basetimestamp: baseTS,
                                                                starttimestamp: curTS,
                                                                text: wholeTextToSubmit,
                                                                token: mw.user.tokens.get('csrfToken'),
                                                                curtimestamp: true
                                                            },
                                                            dataType: 'json',
                                                            type: 'POST',
                                                            success: function(res4) {
                                                                
                                                                // If the edit was successful 
                                                                if (res4 && res4.edit && res4.edit.result == 'Success') {
                                                                    
                                                                    setTimeout(async function(){
                                                                        var diffNum = await getDiffNum(res4.curtimestamp); // Get diff number
                                                                        
                                                                        // Show message
                                                                        $('.anr-editing').append($(`<p style="color: MediumSeaGreen">報告が完了しました</p>`));
                                                                        $dialog.dialog('option', 'width', width);
                                                                        editDone($dialog, editFailed, wikiPagename, diffNum);
                                                                    }, 0);

                                                                // If the edit failed
                                                                } else if (res4 && res4.error) { 
                                                                    
                                                                    // Show the details of the error
                                                                    msgDone = 
                                                                    '<p style="color: MediumVioletRed">報告に失敗しました</p>' +
                                                                    '<br>' +
                                                                    '<p>詳細:</p>' + 
                                                                    `<p>${res4.error.info}</p>` +
                                                                    '<br>' +
                                                                    '<p>手動編集用:</p>' +
                                                                    `<textarea disabled rows="4" style="width: 100%">${textToSubmit}</textarea>` +
                                                                    '<br>' + 
                                                                    '<p>要約:</p>' + 
                                                                    `<textarea disabled rows="2" style="width: 100%">${editSummary.replace(scriptAd, '')}</textarea>`;
                                                                    $('.anr-editing').append($(msgDone));

                                                                    $dialog.dialog('option', 'width', width);
                                                                    editFailed = true;
                                                                    editDone($dialog, editFailed, wikiPagename);

                                                                // If unknown error occurs
                                                                } else {

                                                                    // Show message
                                                                    msgDone = 
                                                                    '<p style="color: MediumVioletRed">不明なエラーが発生しました</p>' +
                                                                    '<br>' +
                                                                    '<p>手動編集用:</p>' +
                                                                    `<textarea disabled rows="4" style="width: 100%">${textToSubmit}</textarea>` +
                                                                    '<br>' +
                                                                    '<p>要約:</p>' + 
                                                                    `<textarea disabled rows="2" style="width: 100%">${editSummary.replace(scriptAd, '')}</textarea>`;                                                
                                                                    $('.anr-editing').append($(msgDone));

                                                                    $dialog.dialog('option', 'width', width);
                                                                    editFailed = true;
                                                                    editDone($dialog, editFailed, wikiPagename);
                                                                    
                                                                }                                            

                                                            }
                                                        });

                                                    } else { // If wikitext retrieval fails
                                                        queryFailed();
                                                    }

                                                });
                                            }

                                        } else { // If the section list retrieval fails
                                            queryFailed();
                                        }

                                    });

                                } else {  // If the page doesn't exist

                                    msgDone = 
                                    '<p style="color: MediumVioletRed">エラー: 報告先のページが存在しません</p>' +
                                    '<br>' +
                                    '<p>手動編集用:</p>' +
                                    `<textarea disabled rows="4" style="width: 100%">${textToSubmit}</textarea>` +
                                    '<br>' +
                                    '<p>要約:</p>' + 
                                    `<textarea disabled rows="2" style="width: 100%">${editSummary.replace(scriptAd, '')}</textarea>`;
                                    $('.anr-editing').append($(msgDone));
                                    
                                    $dialog.dialog('option', 'width', width);
                                    editFailed = true;
                                    editDone($dialog, editFailed, wikiPagename);

                                }

                            } else { // If revision retrieval fails
                                queryFailed();
                            }

                        });

                        // Function to show message when edit attempt is done
                        function queryFailed() {
                            msgDone = 
                            '<p style="color: MediumVioletRed">取得に失敗しました</p>' +
                            '<br>' +
                            '<p>手動編集用:</p>' +
                            `<textarea disabled rows="4" style="width: 100%">${textToSubmit}</textarea>` +
                            '<br>' +
                            '<p>要約:</p>' + 
                            `<textarea disabled rows="2" style="width: 100%">${editSummary.replace(scriptAd, '')}</textarea>`;
                            $('.anr-editing').append($(msgDone));
                            
                            $dialog.dialog('option', 'width', width);
                            editFailed = true;
                            editDone($dialog, editFailed, wikiPagename);
                        }
                    }                   

                }]

            });

            // ********** EVENT HANDLERS **********            

            // Reset dialog when closed
            $('.anr-modal-dialog').on('dialogclose', function() {
                $(this).remove();
            });

            // Dynamically change the content of the section dropdown depending on the value selected in '報告先'
            $(document).on('change', '#anr-target-options', function(){
                var selectedTar = $(this).children('option').filter(':selected').text();
                switch(selectedTar) {
                    case ANI:
                        $('.anr-section-div').empty();
                        $('.anr-section-div').append(sectionsI);
                        $('#anr-section-options-i').css({'width': $(this).width()});
                        $('.anr-section-div').css('display', 'block');
                        $('.anr-target-a-div').css('display', 'block');
                        $('#anr-target-a').attr('href', mw.util.getUrl(ANI));
                        break;
                    case ANS:
                        $('.anr-section-div').empty();
                        $('.anr-section-div').append(sectionsS);
                        $('#anr-section-options-s').select2({'width': $(this).width()});
                        $('.anr-section-div').css('display', 'block');
                        $('.anr-target-a-div').css('display', 'block');
                        $('#anr-target-a').attr('href', mw.util.getUrl(ANS));
                        break;
                    case AN3RR:
                        $('.anr-section-div').empty();
                        $('.anr-section-div').css('display', 'none');
                        $('.anr-target-a-div').css('display', 'block');
                        $('#anr-target-a').attr('href', mw.util.getUrl(AN3RR));
                        break;
                }
            });

            // Add section name to the '報告先' link when section is specified (for WP:AN/I)
            $(document).on('change', '#anr-section-options-i', function(){
                
                var tarSection = '';
                if ($(this).children('option').filter(':selected').text() !== '選択してください') {
                    tarSection = '#' + $(this).children('option').filter(':selected').text();
                    $('#anr-target-a').attr('href', mw.util.getUrl(ANI + tarSection));
                }

            });

            // Add section name to the '報告先' link when section is specified (for WP:AN/S)
            $(document).on('change', '#anr-section-options-s', function(){
                
                var tarSection = '';
                if ($(this).find('option').filter(':selected').text() !== '選択してください') {
                    tarSection = '#' + $(this).find('option').filter(':selected').text();
                    $('#anr-target-a').attr('href', mw.util.getUrl(ANS + tarSection));
                }

            });

            // Dynamically change the display of the form depending on the UserAN type            
            $(document).on('change','.anr-user-div select', function(e){

                var selectID = '#' + e.target.id;
                var valSelected = $(selectID).children('option').filter(':selected').text(); // Selected type
                var checkboxDivID = selectID.replace('select', 'checkbox-div'); // ID of div containing <input type="checkbox"> tag
                var checkboxID = selectID.replace('select', 'checkbox'); // ID of checkbox
                var aDivID = selectID.replace('select', 'a-div'); // ID of div containing <a> tag
                var aID = selectID.replace('select', 'a'); // ID of a
                var valInput = trimA($(selectID.replace('select', 'input')).val()); // The input value                

                if (valSelected === 'UNL' || valSelected === 'User2' ) { // if type=UNL or User2

                    $(checkboxDivID).css('display', 'block');

                } else if (valSelected === 'logid' ) { // if type=logid
                    
                    $(checkboxDivID).css('display', 'block');
                    $(checkboxID).prop('checked', true);
                    $(aDivID).css('display', 'block');
                    $(aID).attr('href', mw.util.getUrl('Special:redirect/logid/' + valInput)).text('特別:転送/logid/' + valInput);

                } else if (valSelected === 'diff' ) { // if type=diff

                    $(checkboxDivID).css('display', 'none');
                    $(aDivID).css('display', 'block');
                    $(aID).attr('href', mw.util.getUrl('Special:diff/' + valInput)).text('特別:差分/' + valInput);

                } else { // if type=none
                    
                    $(checkboxDivID).css('display', 'none');
                    $(aDivID).css('display', 'none');
                }
                
            });

            // When username is typed in, change dropdown options for UserAN types
            $(document).on('input', '.anr-user-div :text', function(e){

                var inputID = '#' + e.target.id; // #anr-user1-input (<input>)
                var selectID = '#' + e.target.id.replace('input', 'select'); // #anr-user1-select (<select>) 
                typeDropdown(inputID, selectID);
                resetDropdown(inputID, selectID);

            });            
            
            // When 'hide username' is clicked, get logid, change dropdown options, show href and so on
            var objLogid = {};
            $(document).on('change', '.anr-user-div :checkbox', function(e){

                var checkboxID = '#' + e.target.id; // #anr-user1-checkbox
                var selectID = checkboxID.replace('checkbox', 'select'); // #anr-user1-select
                var inputID = checkboxID.replace('checkbox', 'input'); // #anr-user1-input
                var inputVal = trimA($(inputID).val());
                var aID = checkboxID.replace('checkbox', 'a');
                var aDivID = checkboxID.replace('checkbox', 'a-div');

                if ($(checkboxID).is(':checked')) { // if the checkbox is checked
    
                    // Function to update type dropdown
                    var updateDropdown = function(logid) {                        
                        $(selectID).children('.anr-opt-UNL').prop('hidden', true);
                        $(selectID).children('.anr-opt-User2').prop('hidden', true);
                        $(selectID).children('.anr-opt-IP2').prop('hidden', true);
                        $(selectID).children('.anr-opt-logid').prop('hidden', false).prop('selected', true);
                        $(selectID).children('.anr-opt-diff').prop('hidden', false);
                        $(selectID).children('.anr-opt-none').prop('hidden', false);                          
                        $(aDivID).css('display', 'block');
                        $(aID).attr('href', mw.util.getUrl('Special:redirect/logid/' + logid)).text('特別:転送/logid/' + logid);
                    }
    
                    var logid;                    
                    if (objLogid[inputVal] !== undefined) {
    
                        $(inputID).val(objLogid[inputVal]); // if the object knows the logid for the user, retrieve the data
                        updateDropdown(objLogid[inputVal]);
    
                    } else {                
    
                        // if the object doesn't know the logid for the user, ask the API
                        setTimeout(async function(){
    
                            // Get logid from the API
                            logid = await getLogid(inputVal);                            
    
                            // Check the obtained logid 
                            if (logid === undefined) { // If undefined is returned, reject the checking of the checkbox
                                alert('エラー\n\n取得可能なlogidが存在しません。Logidを手動で入力するか、type=diff または none を使用してください');
                                $(checkboxID).prop('checked', false);
                                return;
                            } else { // If a valid logid is returned, update type dropdown
                                updateDropdown(logid);
                            }
                            
                            // Set the logid to the input
                            $(inputID).val(logid);
    
                            // Push username and logid into object if it doesn't have them
                            if (objLogid[inputVal] === undefined) {
                                objLogid[inputVal] = logid;
                            }
                            if (objLogid[logid] === undefined) {
                                objLogid[logid] = inputVal;
                            }
    
                        }, 0);
    
                    }                    
    
                } else { // if the checkbox is unchecked
    
                    if (objLogid[inputVal] !== undefined) {
    
                        $(inputID).val(objLogid[inputVal]); // if the object knows the username for the logid, retrieve the data
                        $(selectID).children('.anr-opt-UNL').prop('hidden', false).prop('selected', true);
                        $(selectID).children('.anr-opt-User2').prop('hidden', false);
                        $(selectID).children('.anr-opt-IP2').prop('hidden', true);
                        $(selectID).children('.anr-opt-logid').prop('hidden', true);
                        $(selectID).children('.anr-opt-diff').prop('hidden', true);
                        $(selectID).children('.anr-opt-none').prop('hidden', false);
                        $(aDivID).css('display', 'none');   
    
                    } else {
    
                        alert('エラー\n\nLogidにはアカウント作成記録以外のものも含まれるため、logidからユーザー名への変換機能は実装していません。' +
                            'テキストボックス下のリンク先からユーザー名を取得するか、手動入力してください。なお、ユーザー名からlogidへの変換が行われた' +
                            '場合のみ、その逆の変換が可能です');
                        $(checkboxID).prop('checked', true);
                    }                    
    
                }

            });

            // When the 'add' button is hit, add another input layer
            var userCnt = 1;
            $('.anr-addBtn').click(function(){

                userCnt++;                    
                var replaceTar = new RegExp(`${userCnt-1}-`, 'g');
                userHtml = userHtml.replace(replaceTar, `${userCnt}-`); // 1 → 2, 2 → 3 and so forth
                $('.anr-btn-div').before(userHtml);
                $(`#anr-user${userCnt}-input-div`).css('margin-top', '0.2em');

            });            

            // When the summary checkbox is (un)checked
            $('#anr-summary-checkbox').change(function(){

                var $textarea = $('#anr-summary-text');

                if ($(this).is(':checked')) { // Box is checked                    

                    // Show textarea
                    $textarea.css('display','inline-block').text(genEditSummary()); 

                } else { // Box is unchecked
                    $textarea.css('display','none').text('');
                }
            });

            // ********** USER-DEFINED FUNCTIONS **********

            // Action for when edit is done (in any way)
            function editDone($dialog, editFailed, wikiPagename, diffNum) {

                // Get the page name without a section specifier
                var tarPage = wikiPagename.split('#')[0];
                
                // Button to jump to diff
                var btns = [];
                var diffBtn, destBtn, closeBtn;
                if (diffNum !== undefined) { // Show the button only if diff number is available
                    diffBtn = {
                        'text': '差分',
                        'click': function(){
                            window.open(mw.util.getUrl('特別:差分/' + diffNum), '_blank');
                        }                        
                    };
                    btns.push(diffBtn);
                }

                // Button to jump to the report page
                if (editFailed || mw.config.get('wgPageName') !== tarPage) { // Show the button if the edit failed or if the user is NOT on the page
                    destBtn = {
                        'text': '報告先',
                        'click': function(){
                            window.open(mw.util.getUrl(wikiPagename), '_blank');
                        }
                    };
                    btns.push(destBtn);
                }

                // Button to close the dialog (always shown)
                closeBtn = {
                    'text': '閉じる',
                    'click': function(){
                        $(this).dialog('close');                            
                        var curPage = mw.config.get('wgPageName');
                        if (
                            curPage === ANI ||
                            curPage === ANS ||
                            curPage === AN3RR ||
                            curPage === Iccic ||
                            curPage === ISECHIKA ||
                            curPage === KAGE ||
                            curPage === KIYOSHIMA ||
                            curPage === SHINJU ||
                            curPage === '利用者:Dragoniez/test' ||
                            curPage === '利用者:Dragoniez/test2'
                        ) {
                            location.reload(true);
                        }
                    }
                };
                btns.push(closeBtn);

                // Show the button(s) on the dialog
                $dialog.dialog({ 
                    'position': { my: 'center', at: 'top+20%', of: window },
                    'buttons': btns
                });
                
            }

            // Function to generate edit summary automatically
            function genEditSummary() {
                
                var inputRemains = true;
                let i = 1;
                var arrOfContribs = [];
                var contribs = '';
                var type = '';
                var reportee = '';

                // Check content of all inputs into which usernames are typed
                while (inputRemains) { 

                    if ($(`#anr-user${i}-input`).length === 0) { // if selector doesn't exist
                        inputRemains = false; // No inputs remain to be checked
                    } else {

                        type = $(`#anr-user${i}-select`).children('option').filter(':selected').text(); // UserAN type specified in the dropdown
                        reportee = trimA($(`#anr-user${i}-input`).val()); // input value

                        if (reportee !== '') { // Skip if the input value is a null string
                            
                            // Get appropriate links depending on the UserAN type
                            switch(type) {
                                case 'UNL':
                                case 'User2':
                                case 'IP2':
                                    contribs = `[[特別:投稿記録/${reportee}|${reportee}]]`;
                                    break;
                                case 'logid':
                                    contribs = `[[特別:転送/logid/${reportee}|Logid/${reportee}]]`;
                                    break;
                                case 'diff':
                                    contribs = `[[特別:差分/${reportee}|差分/${reportee}]]の投稿者`;
                                    break;                                        
                                default:
                                    contribs = reportee;
                            }                                

                            // Push the link into the array
                            if (!isInArray(contribs, arrOfContribs)) {
                                arrOfContribs.push(contribs);
                            }

                        }                            
                        i++;

                    }

                }

                // Get edit summary
                var textToShow = '';
                if (arrOfContribs.length === 0) {
                    // Do nothing
                } else if (arrOfContribs.length === 1) {
                    textToShow += '+' + arrOfContribs[0];
                } else {
                    textToShow += '+' + arrOfContribs.join(', ');
                }

                return textToShow;

            }            

        });

        // Function to get the last day of the month
        var lastDay = function(y,m){
            return new Date(y, m +1, 0).getDate();
        }

        // Function to get the current date and the section name to which to report
        function getSectionI(){
            var d = new Date();
            var curSection;
            switch(true) {
                case (1 <= d.getDate() && d.getDate() <= 5):
                    curSection = `${d.getFullYear()}${d.getMonth()+1}月1日 - 5日新規報告`;
                    break;
                case (6 <= d.getDate() && d.getDate() <= 10):
                    curSection = `${d.getFullYear()}${d.getMonth()+1}月6日 - 10日新規報告`;
                    break;
                case (11 <= d.getDate() && d.getDate() <= 15):
                    curSection = `${d.getFullYear()}${d.getMonth()+1}月11日 - 15日新規報告`;
                    break;
                case (16 <= d.getDate() && d.getDate() <= 20):
                    curSection = `${d.getFullYear()}${d.getMonth()+1}月16日 - 20日新規報告`;
                    break;
                case (21 <= d.getDate() && d.getDate() <= 25):
                    curSection = `${d.getFullYear()}${d.getMonth()+1}月21日 - 25日新規報告`;
                    break;
                case (26 <= d.getDate() && d.getDate() <= lastDay(d.getFullYear(), d.getMonth())):
                    curSection = `${d.getFullYear()}${d.getMonth()+1}月26日 - ${lastDay(d.getFullYear(), d.getMonth())}日新規報告`;
                    break;
                default:
                    undefined;
            }
            return curSection;
        }

        // Function to get today's date
        function today() {
            var d = new Date();
            return d.getMonth()+1 + '月' + d.getDate() + '日';
        }

        // Function to check if a user exists locally
        async function userExists(username) {
            return new Promise(function(resolve, reject) {            
                new mw.Api().get({
                    action: 'query',
                    list: 'users',
                    ususers: username,
                    formatversion: 2
                }).done(function(res){                
                    if (res.query.users[0].userid !== undefined) { // If user exists
                        resolve(1); // Return true
                    } else { // If user doesn't exist
                        resolve(0); // Return false
                    }
                });
            });
        }

        // Function to manipulate dropdown options for UserAN types (also maniputes show/hide of checkbox)
        var typeDropdownTimeout;
        function typeDropdown(inputID, selectID, setNone) {

            // Optional parameter: if false, the function doesn't select 'none' when random numbers or strings are typed into the input
            if (setNone === undefined) {
                setNone = true;
            }
            
            var tarVal = trimA($(inputID).val()); // The value typed into the input
            var checkboxDivID = selectID.replace('select', 'checkbox-div');
            var checkboxID = selectID.replace('select', 'checkbox');

            clearTimeout(typeDropdownTimeout); // Run the async function only once when there's been no input change for 0.35 seconds
            typeDropdownTimeout = setTimeout(async function(){

                if (tarVal === '') { // if the field is empty

                    $(selectID).prop('disabled', true); // disable dropdown
                    $(checkboxDivID).css('display', 'none'); // hide 'hide username' checkbox
                    $(checkboxID).prop('checked', false); // uncheck the checkbox 

                } else { // if the field is filled

                    $(selectID).prop('disabled', false); // enable dropdown

                    if (mw.util.isIPAddress(tarVal, true)) { // if IP

                        $(selectID).children('.anr-opt-UNL').prop('hidden', true);
                        $(selectID).children('.anr-opt-User2').prop('hidden', true);
                        $(selectID).children('.anr-opt-IP2').prop('hidden', false).prop('selected', true);
                        $(selectID).children('.anr-opt-logid').prop('hidden', true);
                        $(selectID).children('.anr-opt-diff').prop('hidden', true);
                        $(selectID).children('.anr-opt-none').prop('hidden', false);
                        $(checkboxDivID).css('display', 'none'); // hide 'hide username' checkbox
                        $(checkboxID).prop('checked', false); // uncheck the checkbox 

                    } else if (await userExists(tarVal)) { // if user

                        $(selectID).children('.anr-opt-UNL').prop('hidden', false).prop('selected', true);
                        $(selectID).children('.anr-opt-User2').prop('hidden', false);
                        $(selectID).children('.anr-opt-IP2').prop('hidden', true);
                        $(selectID).children('.anr-opt-logid').prop('hidden', true);
                        $(selectID).children('.anr-opt-diff').prop('hidden', true);
                        $(selectID).children('.anr-opt-none').prop('hidden', false);
                        $(checkboxDivID).css('display', 'block'); // show 'hide username' checkbox
                        $(checkboxID).prop('checked', false); // uncheck the checkbox 

                    } else { // if something else (like random numbers or strings)                    

                        $(selectID).children('.anr-opt-UNL').prop('hidden', true);
                        $(selectID).children('.anr-opt-User2').prop('hidden', true);
                        $(selectID).children('.anr-opt-IP2').prop('hidden', true);
                        $(selectID).children('.anr-opt-logid').prop('hidden', false);
                        $(selectID).children('.anr-opt-diff').prop('hidden', false);
                        if (setNone) {
                            $(selectID).children('.anr-opt-none').prop('hidden', false).prop('selected', true);
                        } else {
                            $(selectID).children('.anr-opt-none').prop('hidden', false);
                        }
                        $(checkboxDivID).css('display', 'none'); // hide 'hide username' checkbox
                        $(checkboxID).prop('checked', false); // uncheck the checkbox 

                    }
                    
                }
                
            }, 350);
        }

        // Function to reset dropdown value to 'none' if input is blanked, and hide unnecessary things
        function resetDropdown(inputID, selectID) {

            var checkboxDivID = selectID.replace('select', 'checkbox-div'); // ID of div containing <input type="checkbox"> tag
            var aDivID = selectID.replace('select', 'a-div'); // ID of div containing <a> tag
        
            if (trimA($(inputID).val()) === '') { 
                $(selectID).children('.anr-opt-none').prop('selected', true);
                $(checkboxDivID).css('display', 'none');
                $(aDivID).css('display', 'none');
            }

        }

        // Function to get account creation logid
        async function getLogid(username) {
            return new Promise(function(resolve, reject) {            
                new mw.Api().get({
                    action: 'query',
                    list: 'logevents',
                    leuser: username,
                    ledir: 'newer',
                    lelimit: 1,
                    formatversion: 2
                }).done(function(res){
                    if (res.query.logevents.length === 0) { // If empty array is returned (=if no logevent exists)
                        resolve(undefined);
                    } else {
                        resolve(res.query.logevents[0].logid);
                    }                    
                });
            });
        }

        // Function to get diff number and its URL after edit
        async function getDiffNum(curtimestamp) {
            return new Promise(function(resolve, reject) {                
                new mw.Api().get({
                    action: 'query',
                    list: 'allrevisions',
                    arvprop: 'ids|timestamp',
                    arvlimit: 5,
                    arvuser: mw.config.get('wgUserName'),
                    arvstart: curtimestamp,
                    arvdir: 'newer',
                    formatversion: 2
                }).done(function(res){                
                    if (res && res.query && res.query.allrevisions) {                        
                        var revArr = res.query.allrevisions;
                        for (let i = 0; i < revArr.length; i++) {
                            if (revArr[i].revisions[0].timestamp === curtimestamp) {
                                resolve(revArr[i].revisions[0].revid);
                            }
                            if (i === revArr.length -1) {
                                resolve(undefined);
                            }
                        }                        
                    }                    
                });
            });
        }

        // Function to trim U+200E space
        function trimA(str) {
            return str.trim().replace(/\u200e/g, '');
        }
        
    }

    // Function to check if an element is in an array
    function isInArray (el, arr) {
        if (arr.indexOf(el) !== -1) {                                
            return true;
        } else {
            return false;
        }
    }

    // Function to check what user group the current user belongs to
    function userIsInGroup(group) {
        if (isInArray(group, mw.config.get('wgUserGroups'))) {
            return true;
        } else {
            return false;
        }            
    }

});
//</nowiki>