123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- import cors from 'cors'
- import express from 'express'
- import { activityPubCollectionPagination } from '@server/lib/activitypub/collection'
- import { activityPubContextify } from '@server/lib/activitypub/context'
- import { getServerActor } from '@server/models/application/application'
- import { MAccountId, MActorId, MChannelId, MVideoId } from '@server/types/models'
- import { VideoPrivacy, VideoRateType } from '../../../shared/models/videos'
- import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
- import { ROUTE_CACHE_LIFETIME, WEBSERVER } from '../../initializers/constants'
- import { audiencify, getAudience } from '../../lib/activitypub/audience'
- import { buildAnnounceWithVideoAudience, buildLikeActivity } from '../../lib/activitypub/send'
- import { buildCreateActivity } from '../../lib/activitypub/send/send-create'
- import { buildDislikeActivity } from '../../lib/activitypub/send/send-dislike'
- import {
- getLocalVideoCommentsActivityPubUrl,
- getLocalVideoDislikesActivityPubUrl,
- getLocalVideoLikesActivityPubUrl,
- getLocalVideoSharesActivityPubUrl
- } from '../../lib/activitypub/url'
- import {
- asyncMiddleware,
- ensureIsLocalChannel,
- executeIfActivityPub,
- localAccountValidator,
- videoChannelsNameWithHostValidator,
- videosCustomGetValidator,
- videosShareValidator
- } from '../../middlewares'
- import { cacheRoute } from '../../middlewares/cache/cache'
- import { getAccountVideoRateValidatorFactory, getVideoLocalViewerValidator, videoCommentGetValidator } from '../../middlewares/validators'
- import { videoFileRedundancyGetValidator, videoPlaylistRedundancyGetValidator } from '../../middlewares/validators/redundancy'
- import { videoPlaylistElementAPGetValidator, videoPlaylistsGetValidator } from '../../middlewares/validators/videos/video-playlists'
- import { AccountModel } from '../../models/account/account'
- import { AccountVideoRateModel } from '../../models/account/account-video-rate'
- import { ActorFollowModel } from '../../models/actor/actor-follow'
- import { VideoCaptionModel } from '../../models/video/video-caption'
- import { VideoCommentModel } from '../../models/video/video-comment'
- import { VideoPlaylistModel } from '../../models/video/video-playlist'
- import { VideoShareModel } from '../../models/video/video-share'
- import { activityPubResponse } from './utils'
- const activityPubClientRouter = express.Router()
- activityPubClientRouter.use(cors())
- // Intercept ActivityPub client requests
- activityPubClientRouter.get(
- [ '/accounts?/:name', '/accounts?/:name/video-channels', '/a/:name', '/a/:name/video-channels' ],
- executeIfActivityPub,
- asyncMiddleware(localAccountValidator),
- accountController
- )
- activityPubClientRouter.get('/accounts?/:name/followers',
- executeIfActivityPub,
- asyncMiddleware(localAccountValidator),
- asyncMiddleware(accountFollowersController)
- )
- activityPubClientRouter.get('/accounts?/:name/following',
- executeIfActivityPub,
- asyncMiddleware(localAccountValidator),
- asyncMiddleware(accountFollowingController)
- )
- activityPubClientRouter.get('/accounts?/:name/playlists',
- executeIfActivityPub,
- asyncMiddleware(localAccountValidator),
- asyncMiddleware(accountPlaylistsController)
- )
- activityPubClientRouter.get('/accounts?/:name/likes/:videoId',
- executeIfActivityPub,
- cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS),
- asyncMiddleware(getAccountVideoRateValidatorFactory('like')),
- getAccountVideoRateFactory('like')
- )
- activityPubClientRouter.get('/accounts?/:name/dislikes/:videoId',
- executeIfActivityPub,
- cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS),
- asyncMiddleware(getAccountVideoRateValidatorFactory('dislike')),
- getAccountVideoRateFactory('dislike')
- )
- activityPubClientRouter.get(
- [ '/videos/watch/:id', '/w/:id' ],
- executeIfActivityPub,
- cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS),
- asyncMiddleware(videosCustomGetValidator('all')),
- asyncMiddleware(videoController)
- )
- activityPubClientRouter.get('/videos/watch/:id/activity',
- executeIfActivityPub,
- asyncMiddleware(videosCustomGetValidator('all')),
- asyncMiddleware(videoController)
- )
- activityPubClientRouter.get('/videos/watch/:id/announces',
- executeIfActivityPub,
- asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
- asyncMiddleware(videoAnnouncesController)
- )
- activityPubClientRouter.get('/videos/watch/:id/announces/:actorId',
- executeIfActivityPub,
- asyncMiddleware(videosShareValidator),
- asyncMiddleware(videoAnnounceController)
- )
- activityPubClientRouter.get('/videos/watch/:id/likes',
- executeIfActivityPub,
- asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
- asyncMiddleware(videoLikesController)
- )
- activityPubClientRouter.get('/videos/watch/:id/dislikes',
- executeIfActivityPub,
- asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
- asyncMiddleware(videoDislikesController)
- )
- activityPubClientRouter.get('/videos/watch/:id/comments',
- executeIfActivityPub,
- asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
- asyncMiddleware(videoCommentsController)
- )
- activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId',
- executeIfActivityPub,
- asyncMiddleware(videoCommentGetValidator),
- asyncMiddleware(videoCommentController)
- )
- activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId/activity',
- executeIfActivityPub,
- asyncMiddleware(videoCommentGetValidator),
- asyncMiddleware(videoCommentController)
- )
- activityPubClientRouter.get(
- [ '/video-channels/:nameWithHost', '/video-channels/:nameWithHost/videos', '/c/:nameWithHost', '/c/:nameWithHost/videos' ],
- executeIfActivityPub,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- videoChannelController
- )
- activityPubClientRouter.get('/video-channels/:nameWithHost/followers',
- executeIfActivityPub,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- asyncMiddleware(videoChannelFollowersController)
- )
- activityPubClientRouter.get('/video-channels/:nameWithHost/following',
- executeIfActivityPub,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- asyncMiddleware(videoChannelFollowingController)
- )
- activityPubClientRouter.get('/video-channels/:nameWithHost/playlists',
- executeIfActivityPub,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- asyncMiddleware(videoChannelPlaylistsController)
- )
- activityPubClientRouter.get('/redundancy/videos/:videoId/:resolution([0-9]+)(-:fps([0-9]+))?',
- executeIfActivityPub,
- asyncMiddleware(videoFileRedundancyGetValidator),
- asyncMiddleware(videoRedundancyController)
- )
- activityPubClientRouter.get('/redundancy/streaming-playlists/:streamingPlaylistType/:videoId',
- executeIfActivityPub,
- asyncMiddleware(videoPlaylistRedundancyGetValidator),
- asyncMiddleware(videoRedundancyController)
- )
- activityPubClientRouter.get(
- [ '/video-playlists/:playlistId', '/videos/watch/playlist/:playlistId', '/w/p/:playlistId' ],
- executeIfActivityPub,
- asyncMiddleware(videoPlaylistsGetValidator('all')),
- asyncMiddleware(videoPlaylistController)
- )
- activityPubClientRouter.get('/video-playlists/:playlistId/videos/:playlistElementId',
- executeIfActivityPub,
- asyncMiddleware(videoPlaylistElementAPGetValidator),
- videoPlaylistElementController
- )
- activityPubClientRouter.get('/videos/local-viewer/:localViewerId',
- executeIfActivityPub,
- asyncMiddleware(getVideoLocalViewerValidator),
- getVideoLocalViewerController
- )
- // ---------------------------------------------------------------------------
- export {
- activityPubClientRouter
- }
- // ---------------------------------------------------------------------------
- function accountController (req: express.Request, res: express.Response) {
- const account = res.locals.account
- return activityPubResponse(activityPubContextify(account.toActivityPubObject(), 'Actor'), res)
- }
- async function accountFollowersController (req: express.Request, res: express.Response) {
- const account = res.locals.account
- const activityPubResult = await actorFollowers(req, account.Actor)
- return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
- }
- async function accountFollowingController (req: express.Request, res: express.Response) {
- const account = res.locals.account
- const activityPubResult = await actorFollowing(req, account.Actor)
- return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
- }
- async function accountPlaylistsController (req: express.Request, res: express.Response) {
- const account = res.locals.account
- const activityPubResult = await actorPlaylists(req, { account })
- return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
- }
- async function videoChannelPlaylistsController (req: express.Request, res: express.Response) {
- const channel = res.locals.videoChannel
- const activityPubResult = await actorPlaylists(req, { channel })
- return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
- }
- function getAccountVideoRateFactory (rateType: VideoRateType) {
- return (req: express.Request, res: express.Response) => {
- const accountVideoRate = res.locals.accountVideoRate
- const byActor = accountVideoRate.Account.Actor
- const APObject = rateType === 'like'
- ? buildLikeActivity(accountVideoRate.url, byActor, accountVideoRate.Video)
- : buildDislikeActivity(accountVideoRate.url, byActor, accountVideoRate.Video)
- return activityPubResponse(activityPubContextify(APObject, 'Rate'), res)
- }
- }
- async function videoController (req: express.Request, res: express.Response) {
- const video = res.locals.videoAll
- if (redirectIfNotOwned(video.url, res)) return
- // We need captions to render AP object
- const captions = await VideoCaptionModel.listVideoCaptions(video.id)
- const videoWithCaptions = Object.assign(video, { VideoCaptions: captions })
- const audience = getAudience(videoWithCaptions.VideoChannel.Account.Actor, videoWithCaptions.privacy === VideoPrivacy.PUBLIC)
- const videoObject = audiencify(videoWithCaptions.toActivityPubObject(), audience)
- if (req.path.endsWith('/activity')) {
- const data = buildCreateActivity(videoWithCaptions.url, video.VideoChannel.Account.Actor, videoObject, audience)
- return activityPubResponse(activityPubContextify(data, 'Video'), res)
- }
- return activityPubResponse(activityPubContextify(videoObject, 'Video'), res)
- }
- async function videoAnnounceController (req: express.Request, res: express.Response) {
- const share = res.locals.videoShare
- if (redirectIfNotOwned(share.url, res)) return
- const { activity } = await buildAnnounceWithVideoAudience(share.Actor, share, res.locals.videoAll, undefined)
- return activityPubResponse(activityPubContextify(activity, 'Announce'), res)
- }
- async function videoAnnouncesController (req: express.Request, res: express.Response) {
- const video = res.locals.onlyImmutableVideo
- if (redirectIfNotOwned(video.url, res)) return
- const handler = async (start: number, count: number) => {
- const result = await VideoShareModel.listAndCountByVideoId(video.id, start, count)
- return {
- total: result.total,
- data: result.data.map(r => r.url)
- }
- }
- const json = await activityPubCollectionPagination(getLocalVideoSharesActivityPubUrl(video), handler, req.query.page)
- return activityPubResponse(activityPubContextify(json, 'Collection'), res)
- }
- async function videoLikesController (req: express.Request, res: express.Response) {
- const video = res.locals.onlyImmutableVideo
- if (redirectIfNotOwned(video.url, res)) return
- const json = await videoRates(req, 'like', video, getLocalVideoLikesActivityPubUrl(video))
- return activityPubResponse(activityPubContextify(json, 'Collection'), res)
- }
- async function videoDislikesController (req: express.Request, res: express.Response) {
- const video = res.locals.onlyImmutableVideo
- if (redirectIfNotOwned(video.url, res)) return
- const json = await videoRates(req, 'dislike', video, getLocalVideoDislikesActivityPubUrl(video))
- return activityPubResponse(activityPubContextify(json, 'Collection'), res)
- }
- async function videoCommentsController (req: express.Request, res: express.Response) {
- const video = res.locals.onlyImmutableVideo
- if (redirectIfNotOwned(video.url, res)) return
- const handler = async (start: number, count: number) => {
- const result = await VideoCommentModel.listAndCountByVideoForAP(video, start, count)
- return {
- total: result.total,
- data: result.data.map(r => r.url)
- }
- }
- const json = await activityPubCollectionPagination(getLocalVideoCommentsActivityPubUrl(video), handler, req.query.page)
- return activityPubResponse(activityPubContextify(json, 'Collection'), res)
- }
- function videoChannelController (req: express.Request, res: express.Response) {
- const videoChannel = res.locals.videoChannel
- return activityPubResponse(activityPubContextify(videoChannel.toActivityPubObject(), 'Actor'), res)
- }
- async function videoChannelFollowersController (req: express.Request, res: express.Response) {
- const videoChannel = res.locals.videoChannel
- const activityPubResult = await actorFollowers(req, videoChannel.Actor)
- return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
- }
- async function videoChannelFollowingController (req: express.Request, res: express.Response) {
- const videoChannel = res.locals.videoChannel
- const activityPubResult = await actorFollowing(req, videoChannel.Actor)
- return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
- }
- async function videoCommentController (req: express.Request, res: express.Response) {
- const videoComment = res.locals.videoCommentFull
- if (redirectIfNotOwned(videoComment.url, res)) return
- const threadParentComments = await VideoCommentModel.listThreadParentComments(videoComment, undefined)
- const isPublic = true // Comments are always public
- let videoCommentObject = videoComment.toActivityPubObject(threadParentComments)
- if (videoComment.Account) {
- const audience = getAudience(videoComment.Account.Actor, isPublic)
- videoCommentObject = audiencify(videoCommentObject, audience)
- if (req.path.endsWith('/activity')) {
- const data = buildCreateActivity(videoComment.url, videoComment.Account.Actor, videoCommentObject, audience)
- return activityPubResponse(activityPubContextify(data, 'Comment'), res)
- }
- }
- return activityPubResponse(activityPubContextify(videoCommentObject, 'Comment'), res)
- }
- async function videoRedundancyController (req: express.Request, res: express.Response) {
- const videoRedundancy = res.locals.videoRedundancy
- if (redirectIfNotOwned(videoRedundancy.url, res)) return
- const serverActor = await getServerActor()
- const audience = getAudience(serverActor)
- const object = audiencify(videoRedundancy.toActivityPubObject(), audience)
- if (req.path.endsWith('/activity')) {
- const data = buildCreateActivity(videoRedundancy.url, serverActor, object, audience)
- return activityPubResponse(activityPubContextify(data, 'CacheFile'), res)
- }
- return activityPubResponse(activityPubContextify(object, 'CacheFile'), res)
- }
- async function videoPlaylistController (req: express.Request, res: express.Response) {
- const playlist = res.locals.videoPlaylistFull
- if (redirectIfNotOwned(playlist.url, res)) return
- // We need more attributes
- playlist.OwnerAccount = await AccountModel.load(playlist.ownerAccountId)
- const json = await playlist.toActivityPubObject(req.query.page, null)
- const audience = getAudience(playlist.OwnerAccount.Actor, playlist.privacy === VideoPlaylistPrivacy.PUBLIC)
- const object = audiencify(json, audience)
- return activityPubResponse(activityPubContextify(object, 'Playlist'), res)
- }
- function videoPlaylistElementController (req: express.Request, res: express.Response) {
- const videoPlaylistElement = res.locals.videoPlaylistElementAP
- if (redirectIfNotOwned(videoPlaylistElement.url, res)) return
- const json = videoPlaylistElement.toActivityPubObject()
- return activityPubResponse(activityPubContextify(json, 'Playlist'), res)
- }
- function getVideoLocalViewerController (req: express.Request, res: express.Response) {
- const localViewer = res.locals.localViewerFull
- return activityPubResponse(activityPubContextify(localViewer.toActivityPubObject(), 'WatchAction'), res)
- }
- // ---------------------------------------------------------------------------
- function actorFollowing (req: express.Request, actor: MActorId) {
- const handler = (start: number, count: number) => {
- return ActorFollowModel.listAcceptedFollowingUrlsForApi([ actor.id ], undefined, start, count)
- }
- return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
- }
- function actorFollowers (req: express.Request, actor: MActorId) {
- const handler = (start: number, count: number) => {
- return ActorFollowModel.listAcceptedFollowerUrlsForAP([ actor.id ], undefined, start, count)
- }
- return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
- }
- function actorPlaylists (req: express.Request, options: { account: MAccountId } | { channel: MChannelId }) {
- const handler = (start: number, count: number) => {
- return VideoPlaylistModel.listPublicUrlsOfForAP(options, start, count)
- }
- return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
- }
- function videoRates (req: express.Request, rateType: VideoRateType, video: MVideoId, url: string) {
- const handler = async (start: number, count: number) => {
- const result = await AccountVideoRateModel.listAndCountAccountUrlsByVideoId(rateType, video.id, start, count)
- return {
- total: result.total,
- data: result.data.map(r => r.url)
- }
- }
- return activityPubCollectionPagination(url, handler, req.query.page)
- }
- function redirectIfNotOwned (url: string, res: express.Response) {
- if (url.startsWith(WEBSERVER.URL) === false) {
- res.redirect(url)
- return true
- }
- return false
- }
|