2017-11-21 18:23:10 +01:00
|
|
|
import * as express from 'express'
|
2017-11-22 18:31:40 +01:00
|
|
|
import { Activity } from '../../../shared/models/activitypub/activity'
|
2017-11-22 16:25:03 +01:00
|
|
|
import { activityPubCollectionPagination } from '../../helpers/activitypub'
|
|
|
|
import { pageToStartAndCount } from '../../helpers/core-utils'
|
|
|
|
import { ACTIVITY_PUB } from '../../initializers/constants'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { announceActivityData, createActivityData } from '../../lib/activitypub/send'
|
2018-01-18 14:59:27 +01:00
|
|
|
import { buildAudience } from '../../lib/activitypub/send/misc'
|
2017-11-21 18:23:10 +01:00
|
|
|
import { getAnnounceActivityPubUrl } from '../../lib/activitypub/url'
|
|
|
|
import { asyncMiddleware, localAccountValidator } from '../../middlewares'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { AccountModel } from '../../models/account/account'
|
2018-01-18 14:59:27 +01:00
|
|
|
import { ActorModel } from '../../models/activitypub/actor'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
2017-11-21 18:23:10 +01:00
|
|
|
|
|
|
|
const outboxRouter = express.Router()
|
|
|
|
|
2018-01-03 11:36:03 +01:00
|
|
|
outboxRouter.get('/accounts/:name/outbox',
|
2017-11-21 18:23:10 +01:00
|
|
|
localAccountValidator,
|
|
|
|
asyncMiddleware(outboxController)
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
outboxRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function outboxController (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-12-12 17:53:50 +01:00
|
|
|
const account: AccountModel = res.locals.account
|
2017-12-14 17:38:41 +01:00
|
|
|
const actor = account.Actor
|
2017-11-21 18:23:10 +01:00
|
|
|
|
2017-11-22 11:27:40 +01:00
|
|
|
const page = req.query.page || 1
|
2017-11-21 18:23:10 +01:00
|
|
|
const { start, count } = pageToStartAndCount(page, ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE)
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
const data = await VideoModel.listAllAndSharedByActorForOutbox(actor.id, start, count)
|
2017-11-21 18:23:10 +01:00
|
|
|
const activities: Activity[] = []
|
|
|
|
|
2018-01-18 14:59:27 +01:00
|
|
|
// Avoid too many SQL requests
|
|
|
|
const actors = data.data.map(v => v.VideoChannel.Account.Actor)
|
|
|
|
actors.push(actor)
|
|
|
|
|
|
|
|
const followersMatrix = await ActorModel.getActorsFollowerSharedInboxUrls(actors, undefined)
|
|
|
|
|
2017-11-21 18:23:10 +01:00
|
|
|
for (const video of data.data) {
|
2018-01-18 14:59:27 +01:00
|
|
|
const byActor = video.VideoChannel.Account.Actor
|
|
|
|
const createActivityAudience = buildAudience(followersMatrix[byActor.id])
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
// This is a shared video
|
2017-11-22 16:25:03 +01:00
|
|
|
if (video.VideoShares !== undefined && video.VideoShares.length !== 0) {
|
2018-01-18 14:59:27 +01:00
|
|
|
const announceAudience = buildAudience(followersMatrix[actor.id])
|
2017-12-14 17:38:41 +01:00
|
|
|
const url = getAnnounceActivityPubUrl(video.url, actor)
|
2018-01-26 12:02:18 +01:00
|
|
|
const announceActivity = await announceActivityData(url, actor, video.url, undefined, announceAudience)
|
2017-11-22 16:25:03 +01:00
|
|
|
|
2017-11-21 18:23:10 +01:00
|
|
|
activities.push(announceActivity)
|
|
|
|
} else {
|
2018-01-26 12:02:18 +01:00
|
|
|
const videoObject = video.toActivityPubObject()
|
2018-01-18 14:59:27 +01:00
|
|
|
const createActivity = await createActivityData(video.url, byActor, videoObject, undefined, createActivityAudience)
|
2017-11-22 16:25:03 +01:00
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
activities.push(createActivity)
|
2017-11-21 18:23:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const newResult = {
|
|
|
|
data: activities,
|
|
|
|
total: data.total
|
|
|
|
}
|
2017-12-14 17:38:41 +01:00
|
|
|
const json = activityPubCollectionPagination(account.Actor.url + '/outbox', page, newResult)
|
2017-11-21 18:23:10 +01:00
|
|
|
|
|
|
|
return res.json(json).end()
|
|
|
|
}
|