mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
Add pronouns.page support
This commit is contained in:
parent
46d704dd51
commit
ff51fa47e6
3 changed files with 130 additions and 0 deletions
|
@ -42,6 +42,7 @@ import * as pronounscc from './pronounscc.js'
|
||||||
import * as discord from './discord.js'
|
import * as discord from './discord.js'
|
||||||
import * as bsky from './bsky.js'
|
import * as bsky from './bsky.js'
|
||||||
import * as sourcehut from './sourcehut.js'
|
import * as sourcehut from './sourcehut.js'
|
||||||
|
import * as pronounspage from './pronounspage.js'
|
||||||
|
|
||||||
const _data = {
|
const _data = {
|
||||||
aspe,
|
aspe,
|
||||||
|
@ -70,6 +71,7 @@ const _data = {
|
||||||
opencollective,
|
opencollective,
|
||||||
orcid,
|
orcid,
|
||||||
pronounscc,
|
pronounscc,
|
||||||
|
pronounspage,
|
||||||
discord,
|
discord,
|
||||||
bsky,
|
bsky,
|
||||||
sourcehut
|
sourcehut
|
||||||
|
|
124
src/serviceProviders/pronounspage.js
Normal file
124
src/serviceProviders/pronounspage.js
Normal file
|
@ -0,0 +1,124 @@
|
||||||
|
/*
|
||||||
|
Copyright 2024 Tyler Beckman
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* pronouns.page service provider
|
||||||
|
* @module serviceProviders/pronounspage
|
||||||
|
* @example
|
||||||
|
* import { ServiceProviderDefinitions } from 'doipjs';
|
||||||
|
* const sp = ServiceProviderDefinitions.data.pronounspage.processURI('https://pronouns.page/@Alice');
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as E from '../enums.js'
|
||||||
|
import { ServiceProvider } from '../serviceProvider.js'
|
||||||
|
|
||||||
|
export const reURI = /^https:\/\/((?:(\w+)\.)?pronouns\.page|pronombr\.es|pronoms\.fr|zaimki\.pl)\/(?:@|u\/)([a-zA-Z0-9.\-_]+)\/?(?:#.+)?/
|
||||||
|
|
||||||
|
const languageCodes = {
|
||||||
|
'pronombr.es': 'es',
|
||||||
|
'pronoms.fr': 'fr',
|
||||||
|
'zaimki.pl': 'pl'
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @function
|
||||||
|
* @param {string} uri - Claim URI to process
|
||||||
|
* @returns {ServiceProvider} The service provider information based on the claim URI
|
||||||
|
*/
|
||||||
|
export function processURI (uri) {
|
||||||
|
const match = uri.match(reURI)
|
||||||
|
|
||||||
|
const languageCode = languageCodes[match[1]] ?? match[2]
|
||||||
|
|
||||||
|
return new ServiceProvider({
|
||||||
|
about: {
|
||||||
|
id: 'pronounspage',
|
||||||
|
name: 'pronouns.page',
|
||||||
|
homepage: 'https://pronouns.page'
|
||||||
|
},
|
||||||
|
profile: {
|
||||||
|
display: `@${match[3]}`,
|
||||||
|
uri: `https://${match[1]}/@${match[3]}`,
|
||||||
|
qr: null
|
||||||
|
},
|
||||||
|
claim: {
|
||||||
|
uriRegularExpression: reURI.toString(),
|
||||||
|
uriIsAmbiguous: false
|
||||||
|
},
|
||||||
|
proof: {
|
||||||
|
request: {
|
||||||
|
uri,
|
||||||
|
fetcher: E.Fetcher.HTTP,
|
||||||
|
accessRestriction: E.ProofAccessRestriction.NONE,
|
||||||
|
data: {
|
||||||
|
url: `https://pronouns.page/api/profile/get/${match[3]}?version=2&props=description,links`,
|
||||||
|
format: E.ProofFormat.JSON
|
||||||
|
}
|
||||||
|
},
|
||||||
|
response: {
|
||||||
|
format: E.ProofFormat.JSON
|
||||||
|
},
|
||||||
|
target: [
|
||||||
|
{
|
||||||
|
format: E.ClaimFormat.URI,
|
||||||
|
encoding: E.EntityEncodingFormat.PLAIN,
|
||||||
|
relation: E.ClaimRelation.CONTAINS,
|
||||||
|
path: ['profiles', languageCode ?? '*', 'links']
|
||||||
|
},
|
||||||
|
{
|
||||||
|
format: E.ClaimFormat.URI,
|
||||||
|
encoding: E.EntityEncodingFormat.PLAIN,
|
||||||
|
relation: E.ClaimRelation.CONTAINS,
|
||||||
|
path: ['profiles', languageCode ?? '*', 'description']
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export const tests = [
|
||||||
|
{
|
||||||
|
uri: 'https://pronouns.page/@Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://pronouns.page/@Alice#she/her',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://pronouns.page/u/Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://nl.pronouns.page/u/Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://pronombr.es/@Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://pronoms.fr/@Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://zaimki.pl/@Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://pronouns.page/Alice',
|
||||||
|
shouldMatch: false
|
||||||
|
}
|
||||||
|
]
|
|
@ -225,6 +225,10 @@ const runJSON = async (proofData, checkPath, params) => {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (typeof proofData === 'object' && !Array.isArray(proofData) && checkPath[0] === '*') {
|
||||||
|
return await runJSON(Object.values(proofData), checkPath.slice(1), params)
|
||||||
|
}
|
||||||
|
|
||||||
if (Array.isArray(proofData)) {
|
if (Array.isArray(proofData)) {
|
||||||
let result = false
|
let result = false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue