gancio-upstream/server/federation/helpers.js
2023-12-28 01:04:16 +01:00

309 lines
11 KiB
JavaScript

const axios = require('axios')
const crypto = require('crypto')
const config = require('../config')
const httpSignature = require('@peertube/http-signature')
const { APUser, Instance } = require('../api/models/models')
const url = require('url')
const settingsController = require('../api/controller/settings')
const log = require('../log')
// process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0;
const Helpers = {
// ignore unimplemented ping url from fediverse
spamFilter (req, res, next) {
const urlToIgnore = [
'/api/v1/instance',
'/api/meta',
'/api/statusnet/version.json',
'/api/gnusocial/version.json',
'/api/statusnet/config.json',
'/status.php',
'/siteinfo.json',
'/friendika/json',
'/friendica/json',
'/poco'
]
if (urlToIgnore.includes(req.path)) {
log.debug(`Ignore noisy fediverse ${req.path}`)
return res.status(404).send('Not Found')
}
next()
},
async signAndSend (message, inbox, method='post') {
log.debug('[FEDI] Sign and send %s to %s', message, inbox)
const inboxUrl = new url.URL(inbox)
const privkey = settingsController.secretSettings.privateKey
const signer = crypto.createSign('sha256')
const d = new Date()
let header
let digest
if (method === 'post') {
digest = crypto.createHash('sha256')
.update(message)
.digest('base64')
const stringToSign = `(request-target): post ${inboxUrl.pathname}\nhost: ${inboxUrl.hostname}\ndate: ${d.toUTCString()}\ndigest: SHA-256=${digest}`
signer.update(stringToSign)
signer.end()
const signature = signer.sign(privkey)
const signature_b64 = signature.toString('base64')
header = `keyId="${config.baseurl}/federation/u/${settingsController.settings.instance_name}#main-key",algorithm="rsa-sha256",headers="(request-target) host date digest",signature="${signature_b64}"`
} else {
const stringToSign = `(request-target): get ${inboxUrl.pathname}\nhost: ${inboxUrl.hostname}\ndate: ${d.toUTCString()}`
signer.update(stringToSign)
signer.end()
const signature = signer.sign(privkey)
const signature_b64 = signature.toString('base64')
header = `keyId="${config.baseurl}/federation/u/${settingsController.settings.instance_name}#main-key",algorithm="rsa-sha256",headers="(request-target) host date",signature="${signature_b64}"`
}
try {
const ret = await axios(inbox, {
headers: {
Host: inboxUrl.hostname,
Date: d.toUTCString(),
Signature: header,
...(method === 'post' && ({ Digest: `SHA-256=${digest}` })),
'Content-Type': 'application/activity+json',
Accept: 'application/activity+json'
},
method,
...( method === 'post' && ({ data: message}))
})
log.debug(`[FEDI] signed ${ret.status} => %s`, ret.data)
return ret.data
} catch (e) {
log.error("[FEDI] Error in sign and send [%s]: %s", inbox, e?.response?.data?.error ?? e?.response?.statusMessage + ' ' + String(e))
}
},
async sendEvent (event, type = 'Create') {
if (!settingsController.settings.enable_federation) {
log.info('event not send, federation disabled')
return
}
const followers = await APUser.findAll({ where: { follower: true } })
log.debug("[FEDI] Sending to [%s]", followers.map(f => f.ap_id).join(', '))
const recipients = {}
followers.forEach(follower => {
const sharedInbox = follower?.object?.endpoints?.sharedInbox ?? follower?.object?.inbox
if (!recipients[sharedInbox]) { recipients[sharedInbox] = [] }
recipients[sharedInbox].push(follower.ap_id)
})
for (const sharedInbox in recipients) {
log.debug(`Notify ${sharedInbox} with event ${event.title} cc => ${recipients[sharedInbox].length}`)
const body = {
id: `${config.baseurl}/federation/m/${event.id}#create`,
type,
to: ['https://www.w3.org/ns/activitystreams#Public'],
cc: [...recipients[sharedInbox], `${config.baseurl}/federation/u/${settingsController.settings.instance_name}/followers`],
actor: `${config.baseurl}/federation/u/${settingsController.settings.instance_name}`,
object: event.toAP(settingsController.settings, recipients[sharedInbox])
}
body['@context'] = [
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
{
Hashtag: 'as:Hashtag',
focalPoint: { '@container': '@list', '@id': 'toot:focalPoint' }
}]
await Helpers.signAndSend(JSON.stringify(body), sharedInbox)
}
},
async followActor (actor) {
log.debug(`Following actor ${actor.ap_id}`)
const body = {
'@context': 'https://www.w3.org/ns/activitystreams',
id: `${config.baseurl}/federation/m/${actor.ap_id}#follow`,
type: 'Follow',
actor: `${config.baseurl}/federation/u/${settingsController.settings.instance_name}`,
object: actor.ap_id
}
await Helpers.signAndSend(JSON.stringify(body), actor.object.endpoints?.sharedInbox || actor.object.inbox)
await actor.update({ following: 1 })
},
async unfollowActor (actor) {
log.debug(`Unfollowing actor ${actor.ap_id}`)
const body = {
'@context': 'https://www.w3.org/ns/activitystreams',
id: `${config.baseurl}/federation/m/${actor.ap_id}#follow`,
type: 'Unfollow',
actor: `${config.baseurl}/federation/u/${settingsController.settings.instance_name}`,
object: actor.ap_id
}
await Helpers.signAndSend(JSON.stringify(body), actor.object.endpoints?.sharedInbox || actor.object.inbox)
return actor.update({ following: 0 })
},
// get Actor from URL using GET HTTP Signature
async getActor (URL, instance, force = false) {
let fedi_user
// try with cache first
if (!force) {
fedi_user = await APUser.findByPk(URL, { include: Instance })
if (fedi_user) {
return fedi_user
}
}
fedi_user = await Helpers.signAndSend('', URL, 'get')
.catch(e => {
log.error(`[FEDI] getActor ${URL}: %s`, e?.response?.data?.error ?? String(e) )
return false
})
if (fedi_user) {
log.info('[FEDI] Create a new AP User "%s" and associate it to instance "%s"', URL, instance.domain)
fedi_user = await APUser.create({ ap_id: URL, object: fedi_user, instanceDomain: instance.domain, blocked: false })
}
return fedi_user
},
async getNodeInfo (instance_url) {
let nodeInfo = await axios.get(`${instance_url}/.well-known/nodeinfo`, { headers: { Accept: 'application/json' } }).then(res => res.data)
if (nodeInfo?.links) {
const supportedVersion = nodeInfo.links.find(l => l.rel === 'http://nodeinfo.diaspora.software/ns/schema/2.1' || 'http://nodeinfo.diaspora.software/ns/schema/2.0')
if (!supportedVersion) {
return false
}
const applicationActor = nodeInfo.links.find(l => l.rel === 'https://www.w3.org/ns/activitystreams#Application')
nodeInfo = await axios.get(supportedVersion.href).then(res => res.data)
log.debug('[FEDI] getNodeInfo "%s", applicationActor: %s, nodeInfo: %s', instance_url, applicationActor?.href, nodeInfo)
return { applicationActor: applicationActor?.href, nodeInfo }
}
throw new Error(nodeInfo)
},
async getInstance (actor_url, force = false) {
log.debug(`[FEDI] getInstance for ${actor_url}`)
actor_url = new url.URL(actor_url)
const domain = actor_url.host
const instance_url = `${actor_url.protocol}//${actor_url.host}`
let instance
if (!force) {
instance = await Instance.findByPk(domain)
if (instance) {
log.debug('[FEDI] Use cached instance: %s', instance.name)
return instance
}
}
try {
const { applicationActor, nodeInfo } = await Helpers.getNodeInfo(instance_url)
const instance = Instance.create({
name: nodeInfo?.metadata?.nodeName ?? nodeInfo?.metadata?.nodeDescription ?? domain,
domain,
data: nodeInfo,
blocked: false,
applicationActor
})
log.debug('[FEDI] Create a new instance from %s: %s %s', instance_url, instance.name, nodeInfo)
return instance
} catch(e) {
log.error('[FEDI] Wrong nodeInfo returned for "%s": %s', instance_url, e?.response?.data ?? String(e))
return false
}
},
/**
* HTTP Signature middleware
* https://www.w3.org/wiki/SocialCG/ActivityPub/Authentication_Authorization#Signing_requests_using_HTTP_Signatures
* Each POST to /inbox coming from fediverse has to be verified.
* Signature checking needs Actor's public key
*/
async verifySignature (req, res, next) {
const actor_url = req?.body?.actor
// do we have an actor?
if (!actor_url) {
log.warn(`[FEDI] Verify Signature: No actor url or empty body`)
return res.status(401).send('Actor not found')
}
// Get instance's nodeinfo
// getting this from db if it is not the first time we interact with it
const instance = await Helpers.getInstance(actor_url)
if (!instance) {
log.warn(`[FEDI] Verify Signature: Instance not found ${actor_url}`)
return res.status(401).send('Instance not found')
}
// Is this instance blocked?
if (instance.blocked) {
log.warn(`[FEDI] Instance ${instance.domain} blocked`)
return res.status(401).send('Instance blocked')
}
// get actor
let ap_actor = await Helpers.getActor(actor_url, instance)
if (!ap_actor) {
log.info(`[FEDI] Actor ${actor_url} not found`)
if (req?.body?.type === 'Delete') {
return res.sendStatus(201)
}
return res.status(401).send('Actor not found')
}
if (ap_actor.blocked) {
log.info(`[FEDI] Actor ${ap_actor.ap_id} blocked`)
return res.status(401).send('Actor blocked')
}
if (!ap_actor?.object?.publicKey?.publicKeyPem) {
log.info(`[FEDI] Actor %s has no publicKey at %s`, ap_actor.ap_id, actor_url)
return res.status(401).send('No public key')
}
res.locals.fedi_user = ap_actor
// TODO: check Digest // cannot do this with json bodyparser
// const digest = crypto.createHash('sha256')
// .update(req.body)
// .digest('base64')
// if (`SHA-256=${digest}` !== req.headers.signature) {
// log.warn(`Signature mismatch ${req.headers.signature} - ${digest}`)
// return res.status(401).send('Signature mismatch')
// }
// another little hack :/
// https://github.com/joyent/node-http-signature/issues/87
req.url = '/federation' + req.url
const parsed = httpSignature.parseRequest(req)
if (httpSignature.verifySignature(parsed, ap_actor.object.publicKey.publicKeyPem)) { return next() }
// signature not valid, try without cache
ap_actor = await Helpers.getActor(actor_url, instance, true)
if (!ap_actor) {
log.info(`[FEDI] Actor ${actor_url} not found`)
return res.status(401).send('Actor not found')
}
if (!ap_actor?.object?.publicKey?.publicKeyPem) {
log.info(`[FEDI] Actor %s has no publicKey at %s`, ap_actor.ap_id, actor_url)
return res.status(401).send('No public key')
}
if (httpSignature.verifySignature(parsed, ap_actor.object.publicKey.publicKeyPem)) {
log.debug(`[FEDI] Valid signature from ${actor_url} `)
return next()
}
// still not valid
log.info(`[FEDI] Invalid signature from Actor ${actor_url}`)
res.send('Request signature could not be verified', 401)
}
}
module.exports = Helpers