Set location on role

merge-requests/30/head
Bob Mottram 2021-05-17 10:28:15 +01:00
parent 3dc34bd77d
commit a9740565ca
2 changed files with 21 additions and 3 deletions

View File

@ -619,14 +619,27 @@ def personUpgradeActor(baseDir: str, personJson: {},
{
'@type': 'Occupation',
'name': occupationName,
"location": {
"@type": "VirtualLocation",
"url": personDomain
'location': {
'@type': 'VirtualLocation',
'url': personDomain
},
'skills': []
}
]
updateActor = True
else:
# add location if it is missing
for index in range(len(personJson['hasOccupation'])):
ocItem = personJson['hasOccupation'][index]
if ocItem.get('hasOccupation'):
ocItem = ocItem['hasOccupation']
if not ocItem.get('location'):
personDomain = personJson['id'].split('/users/')[0]
ocItem['location'] = {
"@type": "VirtualLocation",
"url": personDomain
}
updateActor = True
# if no roles are defined then ensure that the admin
# roles are configured

View File

@ -140,11 +140,16 @@ def _setActorRole(actorJson: {}, roleName: str) -> bool:
if occupationItem['hasOccupation']['name'] == roleName:
return True
statusNumber, published = getStatusNumber()
actorDomain = actorJson['id'].split('/users/')[0]
newRole = {
"@type": "Role",
"hasOccupation": {
"@type": "Occupation",
"name": roleName,
'location': {
'@type': 'VirtualLocation',
'url': actorDomain
},
"occupationalCategory": {
"@type": "CategoryCode",
"inCodeSet": {