2017-11-09 10:51:58 -06:00
|
|
|
import * as express from 'express'
|
2017-11-22 03:29:55 -06:00
|
|
|
import { Activity, ActivityPubCollection, ActivityPubOrderedCollection, RootActivity } from '../../../shared'
|
2017-11-10 07:34:45 -06:00
|
|
|
import { isActivityValid } from '../../helpers/custom-validators/activitypub/activity'
|
2017-12-28 04:16:08 -06:00
|
|
|
import { logger } from '../../helpers/logger'
|
2017-11-22 03:29:55 -06:00
|
|
|
import { processActivities } from '../../lib/activitypub/process/process'
|
2018-08-16 08:25:20 -05:00
|
|
|
import { asyncMiddleware, checkSignature, localAccountValidator, localVideoChannelValidator, signatureValidator } from '../../middlewares'
|
2017-11-10 07:34:45 -06:00
|
|
|
import { activityPubValidator } from '../../middlewares/validators/activitypub/activity'
|
2018-09-14 09:47:15 -05:00
|
|
|
import { queue } from 'async'
|
2020-06-18 03:45:25 -05:00
|
|
|
import { MActorDefault, MActorSignature } from '../../types/models'
|
2017-11-09 10:51:58 -06:00
|
|
|
|
|
|
|
const inboxRouter = express.Router()
|
|
|
|
|
2017-11-13 10:39:41 -06:00
|
|
|
inboxRouter.post('/inbox',
|
2017-11-09 10:51:58 -06:00
|
|
|
signatureValidator,
|
|
|
|
asyncMiddleware(checkSignature),
|
2018-02-23 08:09:12 -06:00
|
|
|
asyncMiddleware(activityPubValidator),
|
2018-09-14 09:47:15 -05:00
|
|
|
inboxController
|
2017-11-09 10:51:58 -06:00
|
|
|
)
|
|
|
|
|
2018-01-03 04:36:03 -06:00
|
|
|
inboxRouter.post('/accounts/:name/inbox',
|
2017-11-13 10:39:41 -06:00
|
|
|
signatureValidator,
|
|
|
|
asyncMiddleware(checkSignature),
|
2018-04-06 04:54:24 -05:00
|
|
|
asyncMiddleware(localAccountValidator),
|
2018-02-23 08:09:12 -06:00
|
|
|
asyncMiddleware(activityPubValidator),
|
2018-09-14 09:47:15 -05:00
|
|
|
inboxController
|
2017-11-13 10:39:41 -06:00
|
|
|
)
|
2018-08-16 08:25:20 -05:00
|
|
|
inboxRouter.post('/video-channels/:name/inbox',
|
|
|
|
signatureValidator,
|
|
|
|
asyncMiddleware(checkSignature),
|
|
|
|
asyncMiddleware(localVideoChannelValidator),
|
|
|
|
asyncMiddleware(activityPubValidator),
|
2018-09-14 09:47:15 -05:00
|
|
|
inboxController
|
2018-08-16 08:25:20 -05:00
|
|
|
)
|
2017-11-13 10:39:41 -06:00
|
|
|
|
2017-11-09 10:51:58 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
inboxRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 04:53:26 -05:00
|
|
|
type QueueParam = { activities: Activity[], signatureActor?: MActorSignature, inboxActor?: MActorDefault }
|
|
|
|
const inboxQueue = queue<QueueParam, Error>((task, cb) => {
|
2018-11-14 08:01:28 -06:00
|
|
|
const options = { signatureActor: task.signatureActor, inboxActor: task.inboxActor }
|
|
|
|
|
|
|
|
processActivities(task.activities, options)
|
2018-09-14 09:47:15 -05:00
|
|
|
.then(() => cb())
|
2020-01-31 09:56:52 -06:00
|
|
|
.catch(err => {
|
|
|
|
logger.error('Error in process activities.', { err })
|
|
|
|
cb()
|
|
|
|
})
|
2018-09-14 09:47:15 -05:00
|
|
|
})
|
|
|
|
|
2018-11-14 08:01:28 -06:00
|
|
|
function inboxController (req: express.Request, res: express.Response) {
|
2017-11-09 10:51:58 -06:00
|
|
|
const rootActivity: RootActivity = req.body
|
2020-01-29 08:17:42 -06:00
|
|
|
let activities: Activity[]
|
2017-11-09 10:51:58 -06:00
|
|
|
|
2020-02-28 09:03:39 -06:00
|
|
|
if ([ 'Collection', 'CollectionPage' ].includes(rootActivity.type)) {
|
2017-11-09 10:51:58 -06:00
|
|
|
activities = (rootActivity as ActivityPubCollection).items
|
2020-02-28 09:03:39 -06:00
|
|
|
} else if ([ 'OrderedCollection', 'OrderedCollectionPage' ].includes(rootActivity.type)) {
|
2017-11-23 09:55:13 -06:00
|
|
|
activities = (rootActivity as ActivityPubOrderedCollection<Activity>).orderedItems
|
2017-11-09 10:51:58 -06:00
|
|
|
} else {
|
|
|
|
activities = [ rootActivity as Activity ]
|
|
|
|
}
|
|
|
|
|
2017-11-10 07:34:45 -06:00
|
|
|
// Only keep activities we are able to process
|
2017-11-30 07:15:17 -06:00
|
|
|
logger.debug('Filtering %d activities...', activities.length)
|
2017-11-10 07:34:45 -06:00
|
|
|
activities = activities.filter(a => isActivityValid(a))
|
2017-11-14 10:31:26 -06:00
|
|
|
logger.debug('We keep %d activities.', activities.length, { activities })
|
2017-11-10 07:34:45 -06:00
|
|
|
|
2019-03-19 04:35:15 -05:00
|
|
|
const accountOrChannel = res.locals.account || res.locals.videoChannel
|
2017-12-14 10:38:41 -06:00
|
|
|
|
2018-03-19 09:02:36 -05:00
|
|
|
logger.info('Receiving inbox requests for %d activities by %s.', activities.length, res.locals.signature.actor.url)
|
2018-02-28 11:04:46 -06:00
|
|
|
|
2018-09-14 09:47:15 -05:00
|
|
|
inboxQueue.push({
|
|
|
|
activities,
|
|
|
|
signatureActor: res.locals.signature.actor,
|
|
|
|
inboxActor: accountOrChannel ? accountOrChannel.Actor : undefined
|
|
|
|
})
|
2017-11-09 10:51:58 -06:00
|
|
|
|
2018-09-14 09:47:15 -05:00
|
|
|
return res.status(204).end()
|
2017-11-09 10:51:58 -06:00
|
|
|
}
|