Difference between revisions of "User:Alexbfree/Code:GDPRMailAccess.js"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
mw.notify( expanded , { autoHide: false } ); // pop up the notification with the link | mw.notify( expanded , { autoHide: false } ); // pop up the notification with the link | ||
} ); | } ); | ||
+ | } | ||
+ | |||
+ | function claimUsesDataControllerAsItsObject(claim) { | ||
+ | return dive( claim , 'mainsnak.datavalue.value')['numeric-id'] === DATA_CONTROLLER_ITEM_ID; | ||
} | } | ||
Line 22: | Line 26: | ||
{ | { | ||
let instance_of_claims = dive( obj, INSTANCE_OF_PROPERTY ); | let instance_of_claims = dive( obj, INSTANCE_OF_PROPERTY ); | ||
− | if (instance_of_claims.some( | + | if (instance_of_claims.some(claimUsesDataControllerAsItsObject)) |
{ | { | ||
foundThatThisIsAnInstanceOfDataController = true; | foundThatThisIsAnInstanceOfDataController = true; |
Revision as of 16:28, 27 January 2020
const DATA_CONTROLLER_ITEM_ID = 96; // because Q96 is data controller"
const INSTANCE_OF_PROPERTY = 'claims.P3'; // because P3 is the property "instance of"
function generateGDPRLink(dataControllerItemID) {
// make an API call to expand the letter template, using this item.
let api = new mw.Api();
api.get( {
action: 'expandtemplates',
text: '{{User:Alexbfree/Template:DataControllerMenu|qID='+dataControllerItemID+'}}'
} ).done( function ( data ) {
var expanded = $(data.expandtemplates["*"])
mw.notify( expanded , { autoHide: false } ); // pop up the notification with the link
} );
}
function claimUsesDataControllerAsItsObject(claim) {
return dive( claim , 'mainsnak.datavalue.value')['numeric-id'] === DATA_CONTROLLER_ITEM_ID;
}
function isDataController() {
let foundThatThisIsAnInstanceOfDataController = false;
if ( typeof mw.config.values.wbEntity != "undefined" ) // if we are on the page of a loaded entity
{
let obj = JSON.parse ( mw.config.values.wbEntity );
if ( typeof check( obj, INSTANCE_OF_PROPERTY ) != "undefined" ) // if the entity has any "instance of" claim
{
let instance_of_claims = dive( obj, INSTANCE_OF_PROPERTY );
if (instance_of_claims.some(claimUsesDataControllerAsItsObject))
{
foundThatThisIsAnInstanceOfDataController = true;
}
}
}
return foundThatThisIsAnInstanceOfDataController;
}
// get the ID of the current page
var pageID = document.querySelector('.wikibase-title .wikibase-title-id').innerText.replace( /[()]/g, '' );
if (isDataController()) {
generateGDPRLink(pageID);
}