mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-23 06:59:29 -07:00
Add support for lichess.org
This commit is contained in:
parent
92960b6108
commit
83f57557b9
2 changed files with 76 additions and 0 deletions
|
@ -21,6 +21,7 @@ const list = [
|
||||||
'twitter',
|
'twitter',
|
||||||
'reddit',
|
'reddit',
|
||||||
'liberapay',
|
'liberapay',
|
||||||
|
'lichess',
|
||||||
'hackernews',
|
'hackernews',
|
||||||
'lobsters',
|
'lobsters',
|
||||||
'devto',
|
'devto',
|
||||||
|
@ -41,6 +42,7 @@ const data = {
|
||||||
twitter: require('./twitter'),
|
twitter: require('./twitter'),
|
||||||
reddit: require('./reddit'),
|
reddit: require('./reddit'),
|
||||||
liberapay: require('./liberapay'),
|
liberapay: require('./liberapay'),
|
||||||
|
lichess: require('./lichess'),
|
||||||
hackernews: require('./hackernews'),
|
hackernews: require('./hackernews'),
|
||||||
lobsters: require('./lobsters'),
|
lobsters: require('./lobsters'),
|
||||||
devto: require('./devto'),
|
devto: require('./devto'),
|
||||||
|
|
74
src/claimDefinitions/lichess.js
Normal file
74
src/claimDefinitions/lichess.js
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
/*
|
||||||
|
Copyright 2021 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.
|
||||||
|
*/
|
||||||
|
const E = require('../enums')
|
||||||
|
|
||||||
|
const reURI = /^https:\/\/lichess\.org\/@\/(.*)\/?/
|
||||||
|
|
||||||
|
const processURI = (uri) => {
|
||||||
|
const match = uri.match(reURI)
|
||||||
|
|
||||||
|
return {
|
||||||
|
serviceprovider: {
|
||||||
|
type: 'web',
|
||||||
|
name: 'lichess'
|
||||||
|
},
|
||||||
|
match: {
|
||||||
|
regularExpression: reURI,
|
||||||
|
isAmbiguous: false
|
||||||
|
},
|
||||||
|
profile: {
|
||||||
|
display: match[1],
|
||||||
|
uri: uri,
|
||||||
|
qr: null
|
||||||
|
},
|
||||||
|
proof: {
|
||||||
|
uri: `https://lichess.org/api/user/${match[1]}`,
|
||||||
|
request: {
|
||||||
|
fetcher: E.Fetcher.HTTP,
|
||||||
|
access: E.ProofAccess.GENERIC,
|
||||||
|
format: E.ProofFormat.JSON,
|
||||||
|
data: {
|
||||||
|
url: `https://lichess.org/api/user/${match[1]}`,
|
||||||
|
format: E.ProofFormat.JSON
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
claim: {
|
||||||
|
format: E.ClaimFormat.FINGERPRINT,
|
||||||
|
relation: E.ClaimRelation.CONTAINS,
|
||||||
|
path: ['profile', 'links']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const tests = [
|
||||||
|
{
|
||||||
|
uri: 'https://lichess.org/@/Alice',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://lichess.org/@/Alice/',
|
||||||
|
shouldMatch: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
uri: 'https://domain.org/@/Alice',
|
||||||
|
shouldMatch: false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
exports.reURI = reURI
|
||||||
|
exports.processURI = processURI
|
||||||
|
exports.tests = tests
|
Loading…
Reference in a new issue