2019-09-15 00:00:26 +00:00
|
|
|
const express = require('express')
|
|
|
|
const router = express.Router()
|
2019-09-21 21:20:14 +00:00
|
|
|
const pub = require('../pub')
|
|
|
|
const net = require('../net')
|
2019-09-21 20:02:50 +00:00
|
|
|
const request = require('request-promise-native')
|
2019-09-22 05:20:37 +00:00
|
|
|
const { ObjectId } = require('mongodb')
|
2018-09-15 07:01:19 +00:00
|
|
|
|
2019-09-22 05:05:30 +00:00
|
|
|
router.post('/', net.validators.activity, net.security.verifySignature, function (req, res) {
|
2019-09-22 05:20:37 +00:00
|
|
|
const db = req.app.get('db')
|
|
|
|
req.body._meta = { _target: pub.utils.usernameToIRI(req.user) }
|
2019-09-21 20:02:50 +00:00
|
|
|
// side effects
|
2019-09-22 05:20:37 +00:00
|
|
|
switch (req.body.type) {
|
2019-09-21 20:02:50 +00:00
|
|
|
case 'Accept':
|
2019-09-22 05:05:30 +00:00
|
|
|
// TODO - side effect ncessary for following collection?
|
2019-09-21 20:02:50 +00:00
|
|
|
break
|
|
|
|
case 'Follow':
|
|
|
|
req.body._meta._target = req.body.object.id
|
|
|
|
// send acceptance reply
|
|
|
|
Promise.all([
|
2019-09-22 05:05:30 +00:00
|
|
|
pub.actor.getOrCreateActor(req.user, db, true),
|
2019-09-22 05:20:37 +00:00
|
|
|
pub.object.resolveObject(pub.utils.actorFromActivity(req.body), db)
|
2019-09-21 20:02:50 +00:00
|
|
|
])
|
|
|
|
.then(([user, actor]) => {
|
|
|
|
if (!actor || !actor.inbox) {
|
|
|
|
throw new Error('unable to send follow request acceptance: actor inbox not retrievable')
|
|
|
|
}
|
|
|
|
const newID = new ObjectId()
|
|
|
|
const responseOpts = {
|
|
|
|
method: 'POST',
|
|
|
|
url: actor.inbox,
|
|
|
|
headers: {
|
2019-09-22 05:20:37 +00:00
|
|
|
'Content-Type': 'application/activity+json'
|
2019-09-21 20:02:50 +00:00
|
|
|
},
|
|
|
|
httpSignature: {
|
|
|
|
key: user._meta.privateKey,
|
|
|
|
keyId: user.id,
|
2019-09-22 05:20:37 +00:00
|
|
|
headers: ['(request-target)', 'host', 'date']
|
2019-09-21 20:02:50 +00:00
|
|
|
},
|
|
|
|
json: true,
|
2019-09-21 21:20:14 +00:00
|
|
|
body: pub.utils.toJSONLD({
|
2019-09-21 20:02:50 +00:00
|
|
|
_id: newID,
|
|
|
|
type: 'Accept',
|
|
|
|
id: `https://${req.app.get('domain')}/o/${newID.toHexString()}`,
|
|
|
|
actor: user.id,
|
2019-09-22 05:20:37 +00:00
|
|
|
object: req.body
|
|
|
|
})
|
2019-09-21 20:02:50 +00:00
|
|
|
}
|
|
|
|
return request(responseOpts)
|
|
|
|
})
|
|
|
|
.then(result => console.log('success', result))
|
|
|
|
.catch(e => console.log(e))
|
|
|
|
break
|
|
|
|
}
|
2019-09-15 00:00:26 +00:00
|
|
|
Promise.all([
|
|
|
|
db.collection('objects').insertOne(req.body.object),
|
|
|
|
db.collection('streams').insertOne(req.body)
|
|
|
|
]).then(() => res.status(200).send())
|
2019-09-13 01:03:04 +00:00
|
|
|
.catch(err => {
|
|
|
|
console.log(err)
|
|
|
|
res.status(500).send()
|
|
|
|
})
|
2019-09-22 05:20:37 +00:00
|
|
|
})
|
2018-09-15 07:01:19 +00:00
|
|
|
|
2019-09-15 00:00:26 +00:00
|
|
|
router.get('/', function (req, res) {
|
2019-09-22 05:20:37 +00:00
|
|
|
const db = req.app.get('db')
|
2019-09-13 01:03:04 +00:00
|
|
|
db.collection('streams')
|
2019-09-22 05:20:37 +00:00
|
|
|
.find({ '_meta._target': pub.utils.usernameToIRI(req.user) })
|
|
|
|
.sort({ _id: -1 })
|
|
|
|
.project({ _id: 0, _meta: 0, '@context': 0, 'object._id': 0, 'object.@context': 0, 'object._meta': 0 })
|
2019-09-13 01:03:04 +00:00
|
|
|
.toArray()
|
2019-09-21 21:20:14 +00:00
|
|
|
.then(stream => res.json(pub.utils.arrayToCollection(stream, true)))
|
2019-09-13 01:03:04 +00:00
|
|
|
.catch(err => {
|
|
|
|
console.log(err)
|
|
|
|
return res.status(500).send()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-09-22 05:20:37 +00:00
|
|
|
module.exports = router
|