Merge pull request 'Support fediverse verification through posts' (#29) from support-fediverse-posts into main

Reviewed-on: https://codeberg.org/keyoxide/doipjs/pulls/29
This commit is contained in:
Yarmo Mackenbach 2022-11-17 19:21:54 +00:00
commit a3f14228a5

View file

@ -53,6 +53,11 @@ const processURI = (uri) => {
format: E.ClaimFormat.FINGERPRINT,
relation: E.ClaimRelation.CONTAINS,
path: ['attachment', 'value']
},
{
format: E.ClaimFormat.FINGERPRINT,
relation: E.ClaimRelation.CONTAINS,
path: ['content']
}
]
}
@ -78,6 +83,10 @@ const tests = [
uri: 'https://domain.org/@alice',
shouldMatch: true
},
{
uri: 'https://domain.org/@alice/123456',
shouldMatch: true
},
{
uri: 'https://domain.org/u/alice/',
shouldMatch: true
@ -86,6 +95,10 @@ const tests = [
uri: 'https://domain.org/users/alice/',
shouldMatch: true
},
{
uri: 'https://domain.org/users/alice/123456',
shouldMatch: true
},
{
uri: 'http://domain.org/alice',
shouldMatch: false