From d2bae37e47ff6c36721f923eee23fbd434266af1 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Sun, 25 Oct 2020 23:06:00 +0100 Subject: [PATCH] Add devto service provider --- src/serviceproviders.js | 2 ++ src/serviceproviders/devto.js | 64 +++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 src/serviceproviders/devto.js diff --git a/src/serviceproviders.js b/src/serviceproviders.js index 7f8d4de..50ee5a2 100644 --- a/src/serviceproviders.js +++ b/src/serviceproviders.js @@ -19,6 +19,7 @@ const list = [ 'twitter', 'hackernews', 'lobsters', + 'devto', ] const data = { @@ -27,6 +28,7 @@ const data = { twitter: require('./serviceproviders/twitter'), hackernews: require('./serviceproviders/hackernews'), lobsters: require('./serviceproviders/lobsters'), + devto: require('./serviceproviders/devto'), } const match = (uri, opts) => { diff --git a/src/serviceproviders/devto.js b/src/serviceproviders/devto.js new file mode 100644 index 0000000..17a234e --- /dev/null +++ b/src/serviceproviders/devto.js @@ -0,0 +1,64 @@ +/* +Copyright 2020 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 reURI = /^https:\/\/dev\.to\/(.*)\/(.*)\/?/ + +const processURI = (uri, opts) => { + if (!opts) { opts = {} } + const match = uri.match(reURI) + + return { + serviceprovider: { + type: 'web', + name: 'devto' + }, + profile: { + display: match[1], + uri: `https://dev.to/${match[1]}` + }, + proof: { + uri: uri, + fetch: `https://dev.to/api/articles/${match[1]}/${match[2]}`, + useProxy: false, + format: 'json' + }, + claim: { + fingerprint: null, + format: 'message', + path: ['body_markdown'], + relation: 'contains' + }, + qr: null + } +} + +const tests = [ + { + uri: 'https://dev.to/alice/post', + shouldMatch: true + }, + { + uri: 'https://dev.to/alice/post/', + shouldMatch: true + }, + { + uri: 'https://domain.org/alice/post', + shouldMatch: false + } +] + +exports.reURI = reURI +exports.processURI = processURI +exports.tests = tests