Wildcard schemas

main
Bob Mottram 2021-01-10 14:14:40 +00:00
parent 0ec3e1ea72
commit 758747740e
1 changed files with 22 additions and 6 deletions

View File

@ -11,7 +11,7 @@ validContexts = (
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/identity/v1",
"https://w3id.org/security/v1",
"https://raitisoja.com/apschema/v1.21"
"*/apschema/v1.21"
)
@ -25,11 +25,27 @@ def hasValidContext(postJsonObject: {}) -> bool:
if not isinstance(url, str):
continue
if url not in validContexts:
wildcardFound = False
for c in validContexts:
if c.startswith('*'):
c = c.replace('*', '')
if url.endswith(c):
wildcardFound = True
break
if not wildcardFound:
print('Unrecognized @context: ' + url)
return False
elif isinstance(postJsonObject['@context'], str):
url = postJsonObject['@context']
if url not in validContexts:
wildcardFound = False
for c in validContexts:
if c.startswith('*'):
c = c.replace('*', '')
if url.endswith(c):
wildcardFound = True
break
if not wildcardFound:
print('Unrecognized @context: ' + url)
return False
else:
@ -39,7 +55,7 @@ def hasValidContext(postJsonObject: {}) -> bool:
def getApschemaV1_21() -> {}:
# https://raitisoja.com/apschema/v1.21
# https://domain/apschema/v1.21
return {
"@context": {
"zot": "https://raitisoja.com/apschema#",