doipjs/src/fetcher/activitypub.js

104 lines
3.1 KiB
JavaScript
Raw Normal View History

2022-09-30 15:39:10 -06:00
/*
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 axios = require('axios')
2022-10-03 14:32:46 -06:00
const validator = require('validator')
2022-09-30 15:39:10 -06:00
const jsEnv = require('browser-or-node')
/**
* @module fetcher/activitypub
*/
/**
* The request's timeout value in milliseconds
* @constant {number} timeout
*/
module.exports.timeout = 5000
/**
* Execute a fetch request
* @function
* @async
* @param {object} data - Data used in the request
2022-10-03 14:32:46 -06:00
* @param {string} data.url - The URL of the account to verify
2022-09-30 15:39:10 -06:00
* @param {object} opts - Options used to enable the request
2022-10-03 14:32:46 -06:00
* @param {string} opts.claims.activitypub.url - The URL of the verifier account
2022-09-30 15:39:10 -06:00
* @param {string} opts.claims.activitypub.privateKey - The private key to sign the request
* @returns {object}
*/
module.exports.fn = async (data, opts) => {
let crypto
if (jsEnv.isNode) {
crypto = require('crypto')
}
let timeoutHandle
const timeoutPromise = new Promise((resolve, reject) => {
timeoutHandle = setTimeout(
() => reject(new Error('Request was timed out')),
data.fetcherTimeout ? data.fetcherTimeout : module.exports.timeout
)
})
const fetchPromise = new Promise((resolve, reject) => {
(async () => {
2022-10-03 14:32:46 -06:00
try {
validator.isURL(opts.claims.activitypub.url)
} catch (err) {
throw new Error(`ActivityPub fetcher was not set up properly (${err.message})`)
2022-09-30 15:39:10 -06:00
}
// Prepare the signature
const now = new Date()
2022-10-03 14:32:46 -06:00
const { host, pathname, search } = new URL(data.url)
2022-09-30 15:39:10 -06:00
const signedString = `(request-target): get ${pathname}${search}\nhost: ${host}\ndate: ${now.toUTCString()}`
const headers = {
host,
date: now.toUTCString(),
accept: 'application/activity+json'
}
if (jsEnv.isNode) {
// Generate the signature
const sign = crypto.createSign('SHA256')
sign.write(signedString)
sign.end()
const signatureSig = sign.sign(opts.claims.activitypub.privateKey, 'base64')
2022-10-03 14:32:46 -06:00
headers.signature = `keyId="${opts.claims.activitypub.url}#main-key",headers="(request-target) host date",signature="${signatureSig}",algorithm="rsa-sha256"`
2022-09-30 15:39:10 -06:00
}
2022-10-03 14:32:46 -06:00
axios.get(data.url,
2022-09-30 15:39:10 -06:00
{
headers
})
.then(res => {
return res.data
})
.then(res => {
resolve(res)
})
.catch(error => {
reject(error)
})
})()
})
return Promise.race([fetchPromise, timeoutPromise]).then((result) => {
clearTimeout(timeoutHandle)
return result
})
}