38 lines
2.1 KiB
JavaScript
38 lines
2.1 KiB
JavaScript
load('library/initialize.js');
|
|
|
|
var aliasWithRole = ["met-eireann","mary-immaculate-college","technological-university-dublin","sport-ireland","dcu","irel","nda","ucd","rcsi","sfi","health-service-executive","hib","atu","ul","deptecc","tusla---child-and-family-agency","tcd","galway","maynooth","heanet","i-form-advanced-manufacturing-research-centre","rotunda-hospital","ucc","department-of-children-and-youth-affairs","dublin","marine-institute","seai","cit","setu","esri1","department-of-agriculture-food-and-the-marine","iph"];
|
|
|
|
function keepRPOsWithRole(aliasWithRole) {
|
|
var stakeholders = db.stakeholder.find({ alias: { $in: aliasWithRole } });
|
|
rpos = removeDuplicateIds(rpos, 'id');
|
|
var canContinue = true;
|
|
stakeholders.forEach(stakeholder => {
|
|
if(rpos.find(rpo => !!rpo.id && rpo.id === stakeholder.index_id) == null) {
|
|
print('Stakeholder with alias: ' + stakeholder.alias + ' has invalid id. Checking by name...');
|
|
var newRPO = rpos.find(rpo => !!rpo.name && rpo.name === stakeholder.index_name);
|
|
if(newRPO != null) {
|
|
print('Name is found. Updating the id from: ' + stakeholder.index_id + ' to: ' + newRPO.id);
|
|
stakeholder.index_id = newRPO.id;
|
|
db.stakeholder.save(stakeholder);
|
|
} else {
|
|
newRPO = rpos.find(rpo => !!rpo.shortname && rpo.shortname === stakeholder.index_shortname);
|
|
if (newRPO != null) {
|
|
print('Shortname is found. Updating the id from: ' + stakeholder.index_id + ' to: ' + newRPO.id);
|
|
stakeholder.index_id = newRPO.id;
|
|
db.stakeholder.save(stakeholder);
|
|
} else {
|
|
print('Resolve stakeholder with alias: ' + stakeholder.alias + ' to continue.');
|
|
canContinue = false;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
return canContinue;
|
|
}
|
|
|
|
if(keepRPOsWithRole(aliasWithRole)) {
|
|
print('Deleting old profiles');
|
|
db.stakeholder.deleteMany({ alias: { $nin: aliasWithRole }, defaultId: { $ne: null }, type: "organization"});
|
|
initializeRPOs(rpos);
|
|
}
|