PeerTube/server/controllers/activitypub/client.ts

459 lines
18 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import cors from 'cors'
import express from 'express'
import { activityPubCollectionPagination } from '@server/lib/activitypub/collection'
import { activityPubContextify } from '@server/lib/activitypub/context'
2020-11-06 10:57:40 +01:00
import { getServerActor } from '@server/models/application/application'
2020-11-20 11:34:49 +01:00
import { MAccountId, MActorId, MChannelId, MVideoId } from '@server/types/models'
import { VideoPrivacy, VideoRateType } from '../../../shared/models/videos'
2020-11-06 10:57:40 +01:00
import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
import { ROUTE_CACHE_LIFETIME, WEBSERVER } from '../../initializers/constants'
2018-05-25 11:32:36 +02:00
import { audiencify, getAudience } from '../../lib/activitypub/audience'
2020-11-06 10:57:40 +01:00
import { buildAnnounceWithVideoAudience, buildLikeActivity } from '../../lib/activitypub/send'
2018-09-11 16:27:07 +02:00
import { buildCreateActivity } from '../../lib/activitypub/send/send-create'
2020-11-06 10:57:40 +01:00
import { buildDislikeActivity } from '../../lib/activitypub/send/send-dislike'
import {
2020-11-20 11:21:08 +01:00
getLocalVideoCommentsActivityPubUrl,
getLocalVideoDislikesActivityPubUrl,
getLocalVideoLikesActivityPubUrl,
getLocalVideoSharesActivityPubUrl
2020-11-06 10:57:40 +01:00
} 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'
2020-11-06 10:57:40 +01:00
import { videoFileRedundancyGetValidator, videoPlaylistRedundancyGetValidator } from '../../middlewares/validators/redundancy'
import { videoPlaylistElementAPGetValidator, videoPlaylistsGetValidator } from '../../middlewares/validators/videos/video-playlists'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../../models/account/account'
2020-11-06 10:57:40 +01:00
import { AccountVideoRateModel } from '../../models/account/account-video-rate'
2021-05-11 11:15:29 +02:00
import { ActorFollowModel } from '../../models/actor/actor-follow'
2020-11-06 10:57:40 +01:00
import { VideoCaptionModel } from '../../models/video/video-caption'
2017-12-28 11:16:08 +01:00
import { VideoCommentModel } from '../../models/video/video-comment'
2020-11-06 10:57:40 +01:00
import { VideoPlaylistModel } from '../../models/video/video-playlist'
2017-12-12 17:53:50 +01:00
import { VideoShareModel } from '../../models/video/video-share'
import { activityPubResponse } from './utils'
2017-11-09 17:51:58 +01:00
const activityPubClientRouter = express.Router()
2020-04-10 15:52:01 +02:00
activityPubClientRouter.use(cors())
2017-11-09 17:51:58 +01:00
2020-02-04 16:14:33 +01:00
// Intercept ActivityPub client requests
activityPubClientRouter.get(
[ '/accounts?/:name', '/accounts?/:name/video-channels', '/a/:name', '/a/:name/video-channels' ],
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(localAccountValidator),
accountController
2017-11-09 17:51:58 +01:00
)
2018-01-15 09:46:46 +01:00
activityPubClientRouter.get('/accounts?/:name/followers',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(localAccountValidator),
asyncMiddleware(accountFollowersController)
2017-11-09 17:51:58 +01:00
)
2018-01-15 09:46:46 +01:00
activityPubClientRouter.get('/accounts?/:name/following',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(localAccountValidator),
asyncMiddleware(accountFollowingController)
2017-11-09 17:51:58 +01:00
)
2019-02-26 10:55:40 +01:00
activityPubClientRouter.get('/accounts?/:name/playlists',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(localAccountValidator),
asyncMiddleware(accountPlaylistsController)
2019-02-26 10:55:40 +01:00
)
2018-11-14 15:01:28 +01:00
activityPubClientRouter.get('/accounts?/:name/likes/:videoId',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS),
asyncMiddleware(getAccountVideoRateValidatorFactory('like')),
getAccountVideoRateFactory('like')
2018-11-14 15:01:28 +01:00
)
activityPubClientRouter.get('/accounts?/:name/dislikes/:videoId',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS),
asyncMiddleware(getAccountVideoRateValidatorFactory('dislike')),
getAccountVideoRateFactory('dislike')
2018-11-14 15:01:28 +01:00
)
2017-11-09 17:51:58 +01:00
activityPubClientRouter.get(
[ '/videos/watch/:id', '/w/:id' ],
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS),
2021-06-11 14:09:33 +02:00
asyncMiddleware(videosCustomGetValidator('all')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoController)
)
activityPubClientRouter.get('/videos/watch/:id/activity',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
2021-06-11 14:09:33 +02:00
asyncMiddleware(videosCustomGetValidator('all')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoController)
)
activityPubClientRouter.get('/videos/watch/:id/announces',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoAnnouncesController)
)
2018-11-14 15:01:28 +01:00
activityPubClientRouter.get('/videos/watch/:id/announces/:actorId',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videosShareValidator),
asyncMiddleware(videoAnnounceController)
2017-11-16 15:22:39 +01:00
)
activityPubClientRouter.get('/videos/watch/:id/likes',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoLikesController)
)
activityPubClientRouter.get('/videos/watch/:id/dislikes',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoDislikesController)
)
activityPubClientRouter.get('/videos/watch/:id/comments',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videosCustomGetValidator('only-immutable-attributes')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoCommentsController)
)
2017-12-28 11:16:08 +01:00
activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoCommentGetValidator),
asyncMiddleware(videoCommentController)
2017-12-28 11:16:08 +01:00
)
activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId/activity',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoCommentGetValidator),
asyncMiddleware(videoCommentController)
)
2017-12-28 11:16:08 +01:00
activityPubClientRouter.get(
[ '/video-channels/:nameWithHost', '/video-channels/:nameWithHost/videos', '/c/:nameWithHost', '/c/:nameWithHost/videos' ],
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoChannelsNameWithHostValidator),
ensureIsLocalChannel,
2020-01-31 16:56:52 +01:00
videoChannelController
2017-11-16 15:22:39 +01:00
)
activityPubClientRouter.get('/video-channels/:nameWithHost/followers',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoChannelsNameWithHostValidator),
ensureIsLocalChannel,
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoChannelFollowersController)
2018-01-15 09:46:46 +01:00
)
activityPubClientRouter.get('/video-channels/:nameWithHost/following',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoChannelsNameWithHostValidator),
ensureIsLocalChannel,
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoChannelFollowingController)
2018-01-15 09:46:46 +01:00
)
activityPubClientRouter.get('/video-channels/:nameWithHost/playlists',
executeIfActivityPub,
asyncMiddleware(videoChannelsNameWithHostValidator),
ensureIsLocalChannel,
asyncMiddleware(videoChannelPlaylistsController)
)
2017-11-16 15:22:39 +01:00
2018-09-11 16:27:07 +02:00
activityPubClientRouter.get('/redundancy/videos/:videoId/:resolution([0-9]+)(-:fps([0-9]+))?',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoFileRedundancyGetValidator),
asyncMiddleware(videoRedundancyController)
2019-01-29 08:37:25 +01:00
)
activityPubClientRouter.get('/redundancy/streaming-playlists/:streamingPlaylistType/:videoId',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoPlaylistRedundancyGetValidator),
asyncMiddleware(videoRedundancyController)
2018-09-11 16:27:07 +02:00
)
2021-06-17 16:02:38 +02:00
activityPubClientRouter.get(
[ '/video-playlists/:playlistId', '/videos/watch/playlist/:playlistId', '/w/p/:playlistId' ],
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
2019-08-15 11:53:26 +02:00
asyncMiddleware(videoPlaylistsGetValidator('all')),
2019-03-19 09:34:29 +01:00
asyncMiddleware(videoPlaylistController)
2019-02-26 10:55:40 +01:00
)
activityPubClientRouter.get('/video-playlists/:playlistId/videos/:playlistElementId',
2019-03-19 09:34:29 +01:00
executeIfActivityPub,
asyncMiddleware(videoPlaylistElementAPGetValidator),
2020-01-31 16:56:52 +01:00
videoPlaylistElementController
2019-02-26 10:55:40 +01:00
)
activityPubClientRouter.get('/videos/local-viewer/:localViewerId',
executeIfActivityPub,
asyncMiddleware(getVideoLocalViewerValidator),
getVideoLocalViewerController
)
2017-11-09 17:51:58 +01:00
// ---------------------------------------------------------------------------
export {
activityPubClientRouter
}
// ---------------------------------------------------------------------------
2019-02-26 10:55:40 +01:00
function accountController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const account = res.locals.account
2017-11-09 17:51:58 +01:00
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(account.toActivityPubObject(), 'Actor'), res)
2017-11-09 17:51:58 +01:00
}
2019-02-26 10:55:40 +01:00
async function accountFollowersController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const account = res.locals.account
2018-01-15 09:46:46 +01:00
const activityPubResult = await actorFollowers(req, account.Actor)
2017-11-09 17:51:58 +01:00
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
2017-11-09 17:51:58 +01:00
}
2019-02-26 10:55:40 +01:00
async function accountFollowingController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const account = res.locals.account
2018-01-15 09:46:46 +01:00
const activityPubResult = await actorFollowing(req, account.Actor)
2017-11-09 17:51:58 +01:00
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
2017-11-09 17:51:58 +01:00
}
2017-11-16 15:22:39 +01:00
2019-02-26 10:55:40 +01:00
async function accountPlaylistsController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const account = res.locals.account
const activityPubResult = await actorPlaylists(req, { account })
2022-03-23 16:14:33 +01:00
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 })
2019-02-26 10:55:40 +01:00
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
2019-02-26 10:55:40 +01:00
}
function getAccountVideoRateFactory (rateType: VideoRateType) {
2018-11-14 15:01:28 +01:00
return (req: express.Request, res: express.Response) => {
2019-03-19 10:35:15 +01:00
const accountVideoRate = res.locals.accountVideoRate
2018-11-14 15:01:28 +01:00
const byActor = accountVideoRate.Account.Actor
const APObject = rateType === 'like'
2020-11-20 11:21:08 +01:00
? buildLikeActivity(accountVideoRate.url, byActor, accountVideoRate.Video)
: buildDislikeActivity(accountVideoRate.url, byActor, accountVideoRate.Video)
2018-11-14 15:01:28 +01:00
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(APObject, 'Rate'), res)
2018-11-14 15:01:28 +01:00
}
}
2018-11-30 15:06:06 +01:00
async function videoController (req: express.Request, res: express.Response) {
2021-06-11 14:09:33 +02:00
const video = res.locals.videoAll
2017-11-16 15:22:39 +01:00
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(video.url, res)) return
2018-11-16 11:18:13 +01:00
2018-07-12 19:02:00 +02:00
// We need captions to render AP object
2019-08-15 11:53:26 +02:00
const captions = await VideoCaptionModel.listVideoCaptions(video.id)
2019-08-21 14:31:57 +02:00
const videoWithCaptions = Object.assign(video, { VideoCaptions: captions })
2018-07-12 19:02:00 +02:00
2019-08-15 11:53:26 +02:00
const audience = getAudience(videoWithCaptions.VideoChannel.Account.Actor, videoWithCaptions.privacy === VideoPrivacy.PUBLIC)
const videoObject = audiencify(videoWithCaptions.toActivityPubObject(), audience)
2018-01-10 17:18:12 +01:00
if (req.path.endsWith('/activity')) {
2019-08-15 11:53:26 +02:00
const data = buildCreateActivity(videoWithCaptions.url, video.VideoChannel.Account.Actor, videoObject, audience)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(data, 'Video'), res)
}
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(videoObject, 'Video'), res)
2017-11-16 15:22:39 +01:00
}
2018-11-30 15:06:06 +01:00
async function videoAnnounceController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const share = res.locals.videoShare
2018-11-16 11:18:13 +01:00
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(share.url, res)) return
2018-11-16 11:18:13 +01:00
2019-08-15 11:53:26 +02:00
const { activity } = await buildAnnounceWithVideoAudience(share.Actor, share, res.locals.videoAll, undefined)
return activityPubResponse(activityPubContextify(activity, 'Announce'), res)
}
2018-11-30 15:06:06 +01:00
async function videoAnnouncesController (req: express.Request, res: express.Response) {
const video = res.locals.onlyImmutableVideo
2020-11-20 11:21:08 +01:00
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)
}
}
2020-11-20 11:21:08 +01:00
const json = await activityPubCollectionPagination(getLocalVideoSharesActivityPubUrl(video), handler, req.query.page)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(json, 'Collection'), res)
}
2018-11-30 15:06:06 +01:00
async function videoLikesController (req: express.Request, res: express.Response) {
const video = res.locals.onlyImmutableVideo
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(video.url, res)) return
const json = await videoRates(req, 'like', video, getLocalVideoLikesActivityPubUrl(video))
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(json, 'Collection'), res)
}
2018-11-30 15:06:06 +01:00
async function videoDislikesController (req: express.Request, res: express.Response) {
const video = res.locals.onlyImmutableVideo
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(video.url, res)) return
const json = await videoRates(req, 'dislike', video, getLocalVideoDislikesActivityPubUrl(video))
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(json, 'Collection'), res)
}
2018-11-30 15:06:06 +01:00
async function videoCommentsController (req: express.Request, res: express.Response) {
const video = res.locals.onlyImmutableVideo
2020-11-20 11:21:08 +01:00
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)
}
}
2020-11-20 11:21:08 +01:00
const json = await activityPubCollectionPagination(getLocalVideoCommentsActivityPubUrl(video), handler, req.query.page)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(json, 'Collection'), res)
}
2020-01-31 16:56:52 +01:00
function videoChannelController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const videoChannel = res.locals.videoChannel
2017-11-16 15:22:39 +01:00
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(videoChannel.toActivityPubObject(), 'Actor'), res)
2017-11-16 15:22:39 +01:00
}
2017-12-28 11:16:08 +01:00
2018-11-30 15:06:06 +01:00
async function videoChannelFollowersController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const videoChannel = res.locals.videoChannel
2018-01-15 09:46:46 +01:00
const activityPubResult = await actorFollowers(req, videoChannel.Actor)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
2018-01-15 09:46:46 +01:00
}
2018-11-30 15:06:06 +01:00
async function videoChannelFollowingController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const videoChannel = res.locals.videoChannel
2018-01-15 09:46:46 +01:00
const activityPubResult = await actorFollowing(req, videoChannel.Actor)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(activityPubResult, 'Collection'), res)
2018-01-15 09:46:46 +01:00
}
2018-11-30 15:06:06 +01:00
async function videoCommentController (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const videoComment = res.locals.videoCommentFull
2017-12-28 11:16:08 +01:00
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(videoComment.url, res)) return
2018-11-16 11:18:13 +01:00
2018-01-05 11:19:25 +01:00
const threadParentComments = await VideoCommentModel.listThreadParentComments(videoComment, undefined)
2018-01-26 11:44:08 +01:00
const isPublic = true // Comments are always public
let videoCommentObject = videoComment.toActivityPubObject(threadParentComments)
2018-01-26 11:44:08 +01:00
if (videoComment.Account) {
const audience = getAudience(videoComment.Account.Actor, isPublic)
videoCommentObject = audiencify(videoCommentObject, audience)
2018-01-26 11:44:08 +01:00
if (req.path.endsWith('/activity')) {
const data = buildCreateActivity(videoComment.url, videoComment.Account.Actor, videoCommentObject, audience)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(data, 'Comment'), res)
}
}
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(videoCommentObject, 'Comment'), res)
2017-12-28 11:16:08 +01:00
}
2018-01-15 09:46:46 +01:00
2018-09-11 16:27:07 +02:00
async function videoRedundancyController (req: express.Request, res: express.Response) {
2019-03-19 10:35:15 +01:00
const videoRedundancy = res.locals.videoRedundancy
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(videoRedundancy.url, res)) return
2018-11-16 11:18:13 +01:00
2018-09-11 16:27:07 +02:00
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)
2020-02-04 16:34:46 +01:00
return activityPubResponse(activityPubContextify(data, 'CacheFile'), res)
2018-09-11 16:27:07 +02:00
}
2020-02-04 16:34:46 +01:00
return activityPubResponse(activityPubContextify(object, 'CacheFile'), res)
2018-09-11 16:27:07 +02:00
}
2019-02-26 10:55:40 +01:00
async function videoPlaylistController (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const playlist = res.locals.videoPlaylistFull
2019-02-26 10:55:40 +01:00
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(playlist.url, res)) return
2019-03-05 10:58:44 +01:00
// We need more attributes
playlist.OwnerAccount = await AccountModel.load(playlist.ownerAccountId)
const json = await playlist.toActivityPubObject(req.query.page, null)
2019-02-26 10:55:40 +01:00
const audience = getAudience(playlist.OwnerAccount.Actor, playlist.privacy === VideoPlaylistPrivacy.PUBLIC)
const object = audiencify(json, audience)
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(object, 'Playlist'), res)
2019-02-26 10:55:40 +01:00
}
2020-01-31 16:56:52 +01:00
function videoPlaylistElementController (req: express.Request, res: express.Response) {
2019-08-21 14:31:57 +02:00
const videoPlaylistElement = res.locals.videoPlaylistElementAP
2019-02-26 10:55:40 +01:00
2020-11-20 11:21:08 +01:00
if (redirectIfNotOwned(videoPlaylistElement.url, res)) return
2019-02-26 10:55:40 +01:00
const json = videoPlaylistElement.toActivityPubObject()
2022-03-23 16:14:33 +01:00
return activityPubResponse(activityPubContextify(json, 'Playlist'), res)
2019-02-26 10:55:40 +01:00
}
function getVideoLocalViewerController (req: express.Request, res: express.Response) {
const localViewer = res.locals.localViewerFull
return activityPubResponse(activityPubContextify(localViewer.toActivityPubObject(), 'WatchAction'), res)
}
2018-01-15 09:46:46 +01:00
// ---------------------------------------------------------------------------
function actorFollowing (req: express.Request, actor: MActorId) {
const handler = (start: number, count: number) => {
return ActorFollowModel.listAcceptedFollowingUrlsForApi([ actor.id ], undefined, start, count)
}
2018-01-15 09:46:46 +01:00
2019-04-11 11:33:44 +02:00
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
2018-01-15 09:46:46 +01:00
}
function actorFollowers (req: express.Request, actor: MActorId) {
const handler = (start: number, count: number) => {
2019-02-26 10:55:40 +01:00
return ActorFollowModel.listAcceptedFollowerUrlsForAP([ actor.id ], undefined, start, count)
}
2019-04-11 11:33:44 +02:00
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
2019-02-26 10:55:40 +01:00
}
function actorPlaylists (req: express.Request, options: { account: MAccountId } | { channel: MChannelId }) {
2019-02-26 10:55:40 +01:00
const handler = (start: number, count: number) => {
return VideoPlaylistModel.listPublicUrlsOfForAP(options, start, count)
}
2018-01-15 09:46:46 +01:00
2019-04-11 11:33:44 +02:00
return activityPubCollectionPagination(WEBSERVER.URL + req.path, handler, req.query.page)
2018-01-15 09:46:46 +01:00
}
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)
}
2020-11-20 11:21:08 +01:00
function redirectIfNotOwned (url: string, res: express.Response) {
if (url.startsWith(WEBSERVER.URL) === false) {
res.redirect(url)
return true
}
return false
}