Jump to content

User:The Transhumanist/FetchCat.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by The Transhumanist (talk | contribs) at 07:07, 11 January 2019 (Start with copy of User:DannyS712/Cat links 2.js and with function addNewSection from User:DannyS712 test/append.js). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Started from User:DannyS712/Cat links 2.js and User:DannyS712 test/append.js

mw.loader.using( 'mediawiki.util', function () {
    importScript('User:DannyS712 test/append.js');
    $(document).ready( function () { 
        var link = mw.util.addPortletLink( 'p-cactions', '#', 'Cats', 'ca-cats', 'cats'); 
        $( link ).click( function ( event ) {
            event.preventDefault();
            cats();
        } );
    } );
} );


function cats () {
	var page = prompt("Please enter the category name (not including \"Category:\")", "Wikipedians");
	var number = parseInt(prompt("How many links would you like added", "10"), 10);

	var ns = 0;
	if (number == -1){
		ns = parseInt(prompt("What namespace would you like to be included? (Use the namespace number)", "0"), 0);
		number = parseInt(prompt("How many links would you like added", "10"), 10);
	}
	
	if (page === null || page === "") {
	  console.log( "User cancelled the prompt." );
	} else {
		console.log( page );
		var catRequest = {
            action: 'query',
            list: 'categorymembers',
            cmlimit: number,
            cmtitle: 'Category:' + page,
            cmprop: 'title',
            format: 'json'
		};
		$.get( mw.config.get( 'wgScriptPath' ) + '/api.php', catRequest, function( catResponse ) {
			var pages = catResponse.query.categorymembers;
			var listed = [];
			var links = "";
			for (var i = 0; i < pages.length; i++) {
				if ( pages[i].ns === ns ) {
					var this_link = '* [[' + pages[i].title + ']]\n';
					listed.push(this_link);
					links = links + this_link;
				}
			}
			if ( links === "" ) {
				alert( "There are no pages in the specified namespace in that category." );
			}
			else addNewSection( 'Adding links with [[User:DannyS712/Cat links|cat links]]', 'Pages in [[:Category:' + page + ']]', links );
		} );
	}
}

function addNewSection( summary, title, content) {
    $.ajax({
        url: mw.util.wikiScript( 'api' ),
        data: {
            format: 'json',
            action: 'edit',
            title: mw.config.get( 'wgPageName' ),
            section: 'new',
            sectiontitle: title,
            summary: summary,
            text: content,
            token: getToken()
        },
        dataType: 'json',
        type: 'POST',
        success: function( data ) {
            if ( data && data.edit && data.edit.result == 'Success' ) {
                window.location.reload(); // reload page if edit was successful
            } else if ( data && data.error ) {
                alert( 'Error: API returned error code "' + data.error.code + '": ' + data.error.info );
            } else {
                alert( 'Error: Unknown result from API.' );
            }
        },
        error: function( xhr ) {
            alert( 'Error: Request failed.' );
        }
    });
}