User:DannyS712 test/JSON.js

JSON_config = { name: "[[User:DannyS712/JSON.js|JSON]]", version: 1.0, debug: false, manual: true }; mw.loader.using( 'mediawiki.util', fu

JSON_config = {
	name: "[[User:DannyS712/JSON.js|JSON]]",
	version: 1.0,
	debug: false,
	manual: true
};
mw.loader.using( 'mediawiki.util', function () {
    $(document).ready( function () {
    	if (JSON_config.manual) {
	        var link = mw.util.addPortletLink( 'p-cactions', null, 'Get JSON', 'ca-get-JSON', 'get the JSON of this page'); 
	        $( link ).click( function ( event ) {
	            event.preventDefault();
	            console.log( get_JSON( mw.config.get( 'wgPageName' ) ) );
	        } );
    	}
    } );
} );
function get_JSON ( page ){
	if (JSON_config.debug) console.log( location );
	var get_page = {
        action: 'query',
        titles: page,
        prop: 'revisions',
        rvprop: 'content',
        format: 'json',
        formatversion: 2
    };
    var result = null;
	var scriptUrl = mw.config.get( 'wgScriptPath' ) + '/api.php';
	$.ajax({
		url: scriptUrl,
		type: 'get',
		data: get_page,
		dataType: 'json',
		async: false,
		success: function(data) {
		    var text = data.query.pages["0"].revisions["0"].content;
	    	if (JSON_config.debug) console.log ( data );
	    	if (JSON_config.debug) console.log( "Text:", text, "End text" );
	    	var JSONed = JSON.parse( text );
	    	var arr_JSONed = [];
	    	for (var reminder in JSONed){
	    		arr_JSONed.push(JSONed[reminder]);
	    	}
	    	if (JSON_config.debug) console.log( arr_JSONed );
	    	result = arr_JSONed;
		} 
	});
	return result;
}
function set_JSON ( page, new_content, edit_summary, on_success ){
	if (JSON_config.debug) console.log( page, new_content, edit_summary );
	$.ajax({
	    url: mw.util.wikiScript( 'api' ),
	    data: {
	        format: 'json',
	        action: 'edit',
	        title: page,
	        text: new_content,
	        summary: edit_summary,
	        token: getToken()
	    },
	    dataType: 'json',
	    type: 'POST',
	    success: function( data ) {
	        if ( data && data.edit && data.edit.result == 'Success' ) {
	            if (on_success) alert( on_success );
	        } 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.' );
	    } } );
}
function getToken() {
	var tokenReq = {
        action: 'query',
        meta: 'tokens',
        format: 'json'
	};
     var result = null;
     var scriptUrl = mw.config.get( 'wgScriptPath' ) + '/api.php';
     $.ajax({
        url: scriptUrl,
        type: 'get',
        data: tokenReq,
        dataType: 'json',
        async: false,
        success: function(data) {
            result = data.query.tokens.csrftoken;
        } 
     });
     return result;
}

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.