Support fediverse verification through posts

This commit is contained in:
Yarmo Mackenbach 2022-11-16 21:27:24 +01:00
parent 4ff11947e4
commit 643dabff9f
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1

View file

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