Difference between revisions of "User:Abel/experimental.js"

From Wikibase Personal data
Jump to navigation Jump to search
m
m
Line 24: Line 24:
 
personal_data_id: [ wbEStruct['subclassOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 421 ],
 
personal_data_id: [ wbEStruct['subclassOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 421 ],
 
interface_button_id: [ wbEStruct ['instanceOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 487 ]
 
interface_button_id: [ wbEStruct ['instanceOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 487 ]
};
+
},
 +
wbproc,
 +
current_entity,
 +
pdxdb;
  
 
$.when(
 
$.when(
Line 37: Line 40:
 
console.log('Reporting in');
 
console.log('Reporting in');
  
var wbproc = new wbContainer(mw, mwEStruct['wbXntity']);
+
wbproc = new wbContainer(mw, mwEStruct['wbXntity']);
  
 
// Check whether the current page is in a relation of interest to an id of interest
 
// Check whether the current page is in a relation of interest to an id of interest
var current_entity = wbproc.checkentity( relational_id_list );
+
current_entity = wbproc.checkentity( relational_id_list );
 
// This should return an object of relations and ids
 
// This should return an object of relations and ids
  
Line 46: Line 49:
 
console.log(current_entity);
 
console.log(current_entity);
  
var h = new idxdbContainer( mw );
+
pdxdb = new idxdbContainer( mw );
h.EnqueuePDIO('update record', Date.now(), Date.now());
+
pdxdb.EnqueuePDIO('update record', Date.now(), Date.now());
  
 
});
 
});

Revision as of 22:16, 19 May 2019

// License: GPL
// Experimental Main
console.log("'⌣'");

var mwEStruct = {
		wbXntity: 'config.values.wbEntity'
	},

	language = "en",

	wbEStruct = {
		subclassOfRelations: 'claims.P4', // location of P4 relations in wbEntity
		defaultValRelation: 'claims.P108',
		concernsRelation: 'claims.P110',
		instanceOfRelations: 'claims.P3',
		IDPropLoc: 'mainsnak.datavalue.value', // location of ID properties in related entity
		IDName: 'numeric-id', // ID property name which checked 
		qIDPropName: 'id',
		standardValue: 'labels' + '.' + language + '.' + 'value'
	},

	relational_id_list = { 
			controller_id: [ wbEStruct['instanceOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 96 ],
			personal_data_id: [ wbEStruct['subclassOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 421 ],
			interface_button_id: [ wbEStruct ['instanceOfRelations'], wbEStruct['IDPropLoc'], wbEStruct['IDName'], 487 ]
	},
	wbproc,
	current_entity,
	pdxdb;

$.when(
    $.getScript( "//wiki.personaldata.io/w/index.php?title=User:Abel/WbProcessor.js&action=raw&ctype=text/javascript" ),
    $.getScript( "//wiki.personaldata.io/w/index.php?title=MediaWiki:Gadget-personaldata.js&action=raw&ctype=text/javascript" ),
    $.getScript( "//wiki.personaldata.io/w/index.php?title=MediaWiki:Gadget-pdooui.js&action=raw&ctype=text/javascript" ),
    $.Deferred( function( deferred ){
        $( deferred.resolve );
    })
).done( function(){

	console.log('Reporting in');

	wbproc = new wbContainer(mw, mwEStruct['wbXntity']);

	// Check whether the current page is in a relation of interest to an id of interest
	current_entity = wbproc.checkentity( relational_id_list );
	// This should return an object of relations and ids

	console.log("test: ")
	console.log(current_entity);

	pdxdb = new idxdbContainer( mw );
	pdxdb.EnqueuePDIO('update record', Date.now(), Date.now());

});