mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2025-04-18 04:18:41 -06:00
123 lines
3.1 KiB
JavaScript
123 lines
3.1 KiB
JavaScript
/*
|
|
Copyright 2022 Yarmo Mackenbach
|
|
|
|
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.
|
|
*/
|
|
import * as E from '../enums.js'
|
|
import { ServiceProvider } from '../serviceProvider.js'
|
|
|
|
export const reURI = /^https:\/\/(.*(?:askubuntu|mathoverflow|serverfault|stackapps|stackoverflow|superuser)|.+\.stackexchange)\.com\/users\/(\d+)/
|
|
const reStackExchange = /\.stackexchange$/
|
|
|
|
/**
|
|
* @function
|
|
* @param {string} uri - Claim URI to process
|
|
* @returns {ServiceProvider} The service provider information based on the claim URI
|
|
*/
|
|
export function processURI (uri) {
|
|
const [, domain, id] = uri.match(reURI)
|
|
const site = domain.replace(reStackExchange, '')
|
|
|
|
return new ServiceProvider({
|
|
about: {
|
|
id: 'stackexchange',
|
|
name: 'Stack Exchange',
|
|
homepage: 'https://stackexchange.com'
|
|
},
|
|
profile: {
|
|
display: `${id}@${site}`,
|
|
uri,
|
|
qr: null
|
|
},
|
|
claim: {
|
|
uriRegularExpression: reURI.toString(),
|
|
uriIsAmbiguous: false
|
|
},
|
|
proof: {
|
|
request: {
|
|
uri: `https://${domain}.com/users/${id}?tab=profile`,
|
|
fetcher: E.Fetcher.HTTP,
|
|
accessRestriction: E.ProofAccessRestriction.NONE,
|
|
data: {
|
|
url: `https://api.stackexchange.com/2.3/users/${id}?site=${site}&filter=!AH)b5JqVyImf`,
|
|
format: E.ProofFormat.JSON
|
|
}
|
|
},
|
|
response: {
|
|
format: E.ProofFormat.JSON
|
|
},
|
|
target: [{
|
|
format: E.ClaimFormat.URI,
|
|
encoding: E.EntityEncodingFormat.PLAIN,
|
|
relation: E.ClaimRelation.CONTAINS,
|
|
path: ['items', 'about_me']
|
|
}]
|
|
}
|
|
})
|
|
}
|
|
|
|
export const tests = [
|
|
{
|
|
uri: 'https://stackoverflow.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://stackoverflow.com/users/1234/alice',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://stackoverflow.com/users/1234?tab=topactivity',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://stackoverflow.com/users/1234/alice?tab=profile',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://meta.stackoverflow.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://pt.stackoverflow.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://pt.meta.stackoverflow.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://serverfault.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://meta.stackexchange.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://gaming.meta.stackexchange.com/users/1234',
|
|
shouldMatch: true
|
|
},
|
|
{
|
|
uri: 'https://stackexchange.com/users/1234',
|
|
shouldMatch: false
|
|
},
|
|
{
|
|
uri: 'https://domain.com/users/1234',
|
|
shouldMatch: false
|
|
},
|
|
{
|
|
uri: 'https://meta.domain.com/users/1234',
|
|
shouldMatch: false
|
|
}
|
|
|
|
]
|