PeerTube/server/controllers/activitypub/client.ts

376 lines
16 KiB
TypeScript
Raw Normal View History

2017-11-09 17:51:58 +01:00
// Intercept ActivityPub client requests
import * as express from 'express'
import { VideoPrivacy, VideoRateType } from '../../../shared/models/videos'
2018-01-26 11:44:08 +01:00
import { activityPubCollectionPagination, activityPubContextify } from '../../helpers/activitypub'
import { CONFIG, ROUTE_CACHE_LIFETIME } from '../../initializers'
import { buildAnnounceWithVideoAudience, buildLikeActivity } from '../../lib/activitypub/send'
2018-05-25 11:32:36 +02:00
import { audiencify, getAudience } from '../../lib/activitypub/audience'
2018-09-11 16:27:07 +02:00
import { buildCreateActivity } from '../../lib/activitypub/send/send-create'
import {
asyncMiddleware,
executeIfActivityPub,
localAccountValidator,
localVideoChannelValidator,
videosCustomGetValidator,
videosShareValidator
} from '../../middlewares'
2019-02-26 10:55:40 +01:00
import { getAccountVideoRateValidator, videoCommentGetValidator } from '../../middlewares/validators'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../../models/account/account'
2018-01-15 09:46:46 +01:00
import { ActorModel } from '../../models/activitypub/actor'
2017-12-14 17:38:41 +01:00
import { ActorFollowModel } from '../../models/activitypub/actor-follow'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../../models/video/video'
import { VideoChannelModel } from '../../models/video/video-channel'
2017-12-28 11:16:08 +01:00
import { VideoCommentModel } from '../../models/video/video-comment'
2017-12-12 17:53:50 +01:00
import { VideoShareModel } from '../../models/video/video-share'
2018-07-24 14:35:11 +02:00
import { cacheRoute } from '../../middlewares/cache'
import { activityPubResponse } from './utils'
import { AccountVideoRateModel } from '../../models/account/account-video-rate'
import {
2018-11-14 15:01:28 +01:00
getRateUrl,
getVideoCommentsActivityPubUrl,
getVideoDislikesActivityPubUrl,
getVideoLikesActivityPubUrl,
getVideoSharesActivityPubUrl
} from '../../lib/activitypub'
2018-07-12 19:02:00 +02:00
import { VideoCaptionModel } from '../../models/video/video-caption'
2019-01-29 08:37:25 +01:00
import { videoFileRedundancyGetValidator, videoPlaylistRedundancyGetValidator } from '../../middlewares/validators/redundancy'
2018-09-11 16:27:07 +02:00
import { getServerActor } from '../../helpers/utils'
2018-11-16 11:18:13 +01:00
import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy'
import { buildDislikeActivity } from '../../lib/activitypub/send/send-dislike'
2019-02-26 10:55:40 +01:00
import { videoPlaylistElementAPGetValidator, videoPlaylistsGetValidator } from '../../middlewares/validators/videos/video-playlists'
import { VideoPlaylistModel } from '../../models/video/video-playlist'
import { VideoPlaylistElementModel } from '../../models/video/video-playlist-element'
import { VideoPlaylistPrivacy } from '../../../shared/models/videos/playlist/video-playlist-privacy.model'
2017-11-09 17:51:58 +01:00
const activityPubClientRouter = express.Router()
2018-01-08 11:30:48 +01:00
activityPubClientRouter.get('/accounts?/:name',
2017-11-27 17:30:46 +01:00
executeIfActivityPub(asyncMiddleware(localAccountValidator)),
executeIfActivityPub(accountController)
2017-11-09 17:51:58 +01:00
)
2018-01-15 09:46:46 +01:00
activityPubClientRouter.get('/accounts?/:name/followers',
2017-11-27 17:30:46 +01:00
executeIfActivityPub(asyncMiddleware(localAccountValidator)),
2017-11-09 17:51:58 +01:00
executeIfActivityPub(asyncMiddleware(accountFollowersController))
)
2018-01-15 09:46:46 +01:00
activityPubClientRouter.get('/accounts?/:name/following',
2017-11-27 17:30:46 +01:00
executeIfActivityPub(asyncMiddleware(localAccountValidator)),
2017-11-09 17:51:58 +01:00
executeIfActivityPub(asyncMiddleware(accountFollowingController))
)
2019-02-26 10:55:40 +01:00
activityPubClientRouter.get('/accounts?/:name/playlists',
executeIfActivityPub(asyncMiddleware(localAccountValidator)),
executeIfActivityPub(asyncMiddleware(accountPlaylistsController))
)
2018-11-14 15:01:28 +01:00
activityPubClientRouter.get('/accounts?/:name/likes/:videoId',
executeIfActivityPub(asyncMiddleware(getAccountVideoRateValidator('like'))),
executeIfActivityPub(getAccountVideoRate('like'))
)
activityPubClientRouter.get('/accounts?/:name/dislikes/:videoId',
executeIfActivityPub(asyncMiddleware(getAccountVideoRateValidator('dislike'))),
executeIfActivityPub(getAccountVideoRate('dislike'))
)
2017-11-09 17:51:58 +01:00
2017-11-16 15:22:39 +01:00
activityPubClientRouter.get('/videos/watch/:id',
2018-07-24 14:35:11 +02:00
executeIfActivityPub(asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.ACTIVITY_PUB.VIDEOS))),
2019-01-29 08:37:25 +01:00
executeIfActivityPub(asyncMiddleware(videosCustomGetValidator('only-video-with-rights'))),
2017-12-28 11:16:08 +01:00
executeIfActivityPub(asyncMiddleware(videoController))
)
activityPubClientRouter.get('/videos/watch/:id/activity',
2019-01-29 08:37:25 +01:00
executeIfActivityPub(asyncMiddleware(videosCustomGetValidator('only-video-with-rights'))),
executeIfActivityPub(asyncMiddleware(videoController))
)
activityPubClientRouter.get('/videos/watch/:id/announces',
executeIfActivityPub(asyncMiddleware(videosCustomGetValidator('only-video'))),
executeIfActivityPub(asyncMiddleware(videoAnnouncesController))
)
2018-11-14 15:01:28 +01:00
activityPubClientRouter.get('/videos/watch/:id/announces/:actorId',
executeIfActivityPub(asyncMiddleware(videosShareValidator)),
executeIfActivityPub(asyncMiddleware(videoAnnounceController))
2017-11-16 15:22:39 +01:00
)
activityPubClientRouter.get('/videos/watch/:id/likes',
executeIfActivityPub(asyncMiddleware(videosCustomGetValidator('only-video'))),
executeIfActivityPub(asyncMiddleware(videoLikesController))
)
activityPubClientRouter.get('/videos/watch/:id/dislikes',
executeIfActivityPub(asyncMiddleware(videosCustomGetValidator('only-video'))),
executeIfActivityPub(asyncMiddleware(videoDislikesController))
)
activityPubClientRouter.get('/videos/watch/:id/comments',
executeIfActivityPub(asyncMiddleware(videosCustomGetValidator('only-video'))),
executeIfActivityPub(asyncMiddleware(videoCommentsController))
)
2017-12-28 11:16:08 +01:00
activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId',
executeIfActivityPub(asyncMiddleware(videoCommentGetValidator)),
executeIfActivityPub(asyncMiddleware(videoCommentController))
)
activityPubClientRouter.get('/videos/watch/:videoId/comments/:commentId/activity',
executeIfActivityPub(asyncMiddleware(videoCommentGetValidator)),
executeIfActivityPub(asyncMiddleware(videoCommentController))
)
2017-12-28 11:16:08 +01:00
2018-08-17 15:45:42 +02:00
activityPubClientRouter.get('/video-channels/:name',
executeIfActivityPub(asyncMiddleware(localVideoChannelValidator)),
2017-11-16 15:22:39 +01:00
executeIfActivityPub(asyncMiddleware(videoChannelController))
)
2018-08-17 15:45:42 +02:00
activityPubClientRouter.get('/video-channels/:name/followers',
executeIfActivityPub(asyncMiddleware(localVideoChannelValidator)),
2018-01-15 09:46:46 +01:00
executeIfActivityPub(asyncMiddleware(videoChannelFollowersController))
)
2018-08-17 15:45:42 +02:00
activityPubClientRouter.get('/video-channels/:name/following',
executeIfActivityPub(asyncMiddleware(localVideoChannelValidator)),
2018-01-15 09:46:46 +01:00
executeIfActivityPub(asyncMiddleware(videoChannelFollowingController))
)
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-01-29 08:37:25 +01:00
executeIfActivityPub(asyncMiddleware(videoFileRedundancyGetValidator)),
executeIfActivityPub(asyncMiddleware(videoRedundancyController))
)
activityPubClientRouter.get('/redundancy/streaming-playlists/:streamingPlaylistType/:videoId',
2019-01-29 08:37:25 +01:00
executeIfActivityPub(asyncMiddleware(videoPlaylistRedundancyGetValidator)),
2018-09-11 16:27:07 +02:00
executeIfActivityPub(asyncMiddleware(videoRedundancyController))
)
2019-02-26 10:55:40 +01:00
activityPubClientRouter.get('/video-playlists/:playlistId',
executeIfActivityPub(asyncMiddleware(videoPlaylistsGetValidator)),
executeIfActivityPub(asyncMiddleware(videoPlaylistController))
)
activityPubClientRouter.get('/video-playlists/:playlistId/:videoId',
executeIfActivityPub(asyncMiddleware(videoPlaylistElementAPGetValidator)),
executeIfActivityPub(asyncMiddleware(videoPlaylistElementController))
)
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) {
2017-12-12 17:53:50 +01:00
const account: AccountModel = res.locals.account
2017-11-09 17:51:58 +01:00
return activityPubResponse(activityPubContextify(account.toActivityPubObject()), 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) {
2017-12-12 17:53:50 +01:00
const account: AccountModel = 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
return activityPubResponse(activityPubContextify(activityPubResult), 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) {
2017-12-12 17:53:50 +01:00
const account: AccountModel = 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
return activityPubResponse(activityPubContextify(activityPubResult), 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) {
const account: AccountModel = res.locals.account
const activityPubResult = await actorPlaylists(req, account)
return activityPubResponse(activityPubContextify(activityPubResult), res)
}
2018-11-14 15:01:28 +01:00
function getAccountVideoRate (rateType: VideoRateType) {
return (req: express.Request, res: express.Response) => {
const accountVideoRate: AccountVideoRateModel = res.locals.accountVideoRate
const byActor = accountVideoRate.Account.Actor
const url = getRateUrl(rateType, byActor, accountVideoRate.Video)
const APObject = rateType === 'like'
? buildLikeActivity(url, byActor, accountVideoRate.Video)
: buildDislikeActivity(url, byActor, accountVideoRate.Video)
2018-11-14 15:01:28 +01:00
return activityPubResponse(activityPubContextify(APObject), res)
}
}
2018-11-30 15:06:06 +01:00
async function videoController (req: express.Request, res: express.Response) {
2019-01-29 08:37:25 +01:00
// We need more attributes
const video: VideoModel = await VideoModel.loadForGetAPI(res.locals.video.id)
2017-11-16 15:22:39 +01:00
2018-11-30 15:06:06 +01:00
if (video.url.startsWith(CONFIG.WEBSERVER.URL) === false) return res.redirect(video.url)
2018-11-16 11:18:13 +01:00
2018-07-12 19:02:00 +02:00
// We need captions to render AP object
video.VideoCaptions = await VideoCaptionModel.listVideoCaptions(video.id)
const audience = getAudience(video.VideoChannel.Account.Actor, video.privacy === VideoPrivacy.PUBLIC)
const videoObject = audiencify(video.toActivityPubObject(), audience)
2018-01-10 17:18:12 +01:00
if (req.path.endsWith('/activity')) {
2018-09-11 16:27:07 +02:00
const data = buildCreateActivity(video.url, video.VideoChannel.Account.Actor, videoObject, audience)
return activityPubResponse(activityPubContextify(data), res)
}
return activityPubResponse(activityPubContextify(videoObject), 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) {
2017-12-12 17:53:50 +01:00
const share = res.locals.videoShare as VideoShareModel
2018-11-16 11:18:13 +01:00
2018-11-30 15:06:06 +01:00
if (share.url.startsWith(CONFIG.WEBSERVER.URL) === false) return res.redirect(share.url)
2018-11-16 11:18:13 +01:00
2018-09-11 16:27:07 +02:00
const { activity } = await buildAnnounceWithVideoAudience(share.Actor, share, res.locals.video, undefined)
2018-09-11 16:27:07 +02:00
return activityPubResponse(activityPubContextify(activity), res)
}
2018-11-30 15:06:06 +01:00
async function videoAnnouncesController (req: express.Request, res: express.Response) {
const video: VideoModel = res.locals.video
const handler = async (start: number, count: number) => {
const result = await VideoShareModel.listAndCountByVideoId(video.id, start, count)
return {
total: result.count,
data: result.rows.map(r => r.url)
}
}
const json = await activityPubCollectionPagination(getVideoSharesActivityPubUrl(video), handler, req.query.page)
return activityPubResponse(activityPubContextify(json), res)
}
2018-11-30 15:06:06 +01:00
async function videoLikesController (req: express.Request, res: express.Response) {
const video: VideoModel = res.locals.video
const json = await videoRates(req, 'like', video, getVideoLikesActivityPubUrl(video))
return activityPubResponse(activityPubContextify(json), res)
}
2018-11-30 15:06:06 +01:00
async function videoDislikesController (req: express.Request, res: express.Response) {
const video: VideoModel = res.locals.video
const json = await videoRates(req, 'dislike', video, getVideoDislikesActivityPubUrl(video))
return activityPubResponse(activityPubContextify(json), res)
}
2018-11-30 15:06:06 +01:00
async function videoCommentsController (req: express.Request, res: express.Response) {
const video: VideoModel = res.locals.video
const handler = async (start: number, count: number) => {
const result = await VideoCommentModel.listAndCountByVideoId(video.id, start, count)
return {
total: result.count,
data: result.rows.map(r => r.url)
}
}
const json = await activityPubCollectionPagination(getVideoCommentsActivityPubUrl(video), handler, req.query.page)
return activityPubResponse(activityPubContextify(json), res)
}
2018-11-30 15:06:06 +01:00
async function videoChannelController (req: express.Request, res: express.Response) {
2017-12-12 17:53:50 +01:00
const videoChannel: VideoChannelModel = res.locals.videoChannel
2017-11-16 15:22:39 +01:00
return activityPubResponse(activityPubContextify(videoChannel.toActivityPubObject()), 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) {
2018-01-15 09:46:46 +01:00
const videoChannel: VideoChannelModel = res.locals.videoChannel
const activityPubResult = await actorFollowers(req, videoChannel.Actor)
return activityPubResponse(activityPubContextify(activityPubResult), 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) {
2018-01-15 09:46:46 +01:00
const videoChannel: VideoChannelModel = res.locals.videoChannel
const activityPubResult = await actorFollowing(req, videoChannel.Actor)
return activityPubResponse(activityPubContextify(activityPubResult), 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) {
2017-12-28 11:16:08 +01:00
const videoComment: VideoCommentModel = res.locals.videoComment
2018-11-30 15:06:06 +01:00
if (videoComment.url.startsWith(CONFIG.WEBSERVER.URL) === false) return res.redirect(videoComment.url)
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
const audience = getAudience(videoComment.Account.Actor, isPublic)
2018-01-26 11:44:08 +01:00
const videoCommentObject = audiencify(videoComment.toActivityPubObject(threadParentComments), audience)
if (req.path.endsWith('/activity')) {
2018-09-11 16:27:07 +02:00
const data = buildCreateActivity(videoComment.url, videoComment.Account.Actor, videoCommentObject, audience)
return activityPubResponse(activityPubContextify(data), res)
}
return activityPubResponse(activityPubContextify(videoCommentObject), 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) {
2018-11-16 11:18:13 +01:00
const videoRedundancy: VideoRedundancyModel = res.locals.videoRedundancy
2018-11-30 15:06:06 +01:00
if (videoRedundancy.url.startsWith(CONFIG.WEBSERVER.URL) === false) return res.redirect(videoRedundancy.url)
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)
return activityPubResponse(activityPubContextify(data), res)
}
return activityPubResponse(activityPubContextify(object), res)
}
2019-02-26 10:55:40 +01:00
async function videoPlaylistController (req: express.Request, res: express.Response) {
const playlist: VideoPlaylistModel = res.locals.videoPlaylist
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)
return activityPubResponse(activityPubContextify(object), res)
}
async function videoPlaylistElementController (req: express.Request, res: express.Response) {
const videoPlaylistElement: VideoPlaylistElementModel = res.locals.videoPlaylistElement
const json = videoPlaylistElement.toActivityPubObject()
return activityPubResponse(activityPubContextify(json), res)
}
2018-01-15 09:46:46 +01:00
// ---------------------------------------------------------------------------
async function actorFollowing (req: express.Request, actor: ActorModel) {
const handler = (start: number, count: number) => {
return ActorFollowModel.listAcceptedFollowingUrlsForApi([ actor.id ], undefined, start, count)
}
2018-01-15 09:46:46 +01:00
2018-11-16 15:38:09 +01:00
return activityPubCollectionPagination(CONFIG.WEBSERVER.URL + req.path, handler, req.query.page)
2018-01-15 09:46:46 +01:00
}
async function actorFollowers (req: express.Request, actor: ActorModel) {
const handler = (start: number, count: number) => {
2019-02-26 10:55:40 +01:00
return ActorFollowModel.listAcceptedFollowerUrlsForAP([ actor.id ], undefined, start, count)
}
return activityPubCollectionPagination(CONFIG.WEBSERVER.URL + req.path, handler, req.query.page)
}
async function actorPlaylists (req: express.Request, account: AccountModel) {
const handler = (start: number, count: number) => {
2019-03-13 16:03:03 +01:00
return VideoPlaylistModel.listPublicUrlsOfForAP(account.id, start, count)
}
2018-01-15 09:46:46 +01:00
2018-11-16 15:38:09 +01:00
return activityPubCollectionPagination(CONFIG.WEBSERVER.URL + req.path, handler, req.query.page)
2018-01-15 09:46:46 +01:00
}
function videoRates (req: express.Request, rateType: VideoRateType, video: VideoModel, url: string) {
const handler = async (start: number, count: number) => {
const result = await AccountVideoRateModel.listAndCountAccountUrlsByVideoId(rateType, video.id, start, count)
return {
total: result.count,
2018-11-14 15:01:28 +01:00
data: result.rows.map(r => r.url)
}
}
return activityPubCollectionPagination(url, handler, req.query.page)
}