|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- import express from 'express'
- import {
- ActorImageType,
- HttpStatusCode,
- VideoChannelCreate,
- VideoChannelUpdate,
- VideosImportInChannelCreate
- } from '@peertube/peertube-models'
- import { pickCommonVideoQuery } from '@server/helpers/query.js'
- import { Hooks } from '@server/lib/plugins/hooks.js'
- import { ActorFollowModel } from '@server/models/actor/actor-follow.js'
- import { getServerActor } from '@server/models/application/application.js'
- import { MChannelBannerAccountDefault } from '@server/types/models/index.js'
- import { auditLoggerFactory, getAuditIdFromRes, VideoChannelAuditView } from '../../helpers/audit-logger.js'
- import { resetSequelizeInstance } from '../../helpers/database-utils.js'
- import { buildNSFWFilter, createReqFiles, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils.js'
- import { logger } from '../../helpers/logger.js'
- import { getFormattedObjects } from '../../helpers/utils.js'
- import { MIMETYPES } from '../../initializers/constants.js'
- import { sequelizeTypescript } from '../../initializers/database.js'
- import { sendUpdateActor } from '../../lib/activitypub/send/index.js'
- import { JobQueue } from '../../lib/job-queue/index.js'
- import { deleteLocalActorImageFile, updateLocalActorImageFiles } from '../../lib/local-actor.js'
- import { createLocalVideoChannelWithoutKeys, federateAllVideosOfChannel } from '../../lib/video-channel.js'
- import {
- apiRateLimiter,
- asyncMiddleware,
- asyncRetryTransactionMiddleware,
- authenticate,
- commonVideosFiltersValidator,
- ensureCanManageChannelOrAccount,
- optionalAuthenticate,
- paginationValidator,
- setDefaultPagination,
- setDefaultSort,
- setDefaultVideosSort,
- videoChannelsAddValidator,
- videoChannelsRemoveValidator,
- videoChannelsSortValidator,
- videoChannelsUpdateValidator,
- videoPlaylistsSortValidator
- } from '../../middlewares/index.js'
- import { updateAvatarValidator, updateBannerValidator } from '../../middlewares/validators/actor-image.js'
- import {
- ensureChannelOwnerCanUpload,
- ensureIsLocalChannel,
- videoChannelImportVideosValidator,
- videoChannelsFollowersSortValidator,
- videoChannelsListValidator,
- videoChannelsNameWithHostValidator,
- videosSortValidator
- } from '../../middlewares/validators/index.js'
- import { commonVideoPlaylistFiltersValidator } from '../../middlewares/validators/videos/video-playlists.js'
- import { AccountModel } from '../../models/account/account.js'
- import { guessAdditionalAttributesFromQuery } from '../../models/video/formatter/index.js'
- import { VideoChannelModel } from '../../models/video/video-channel.js'
- import { VideoPlaylistModel } from '../../models/video/video-playlist.js'
- import { VideoModel } from '../../models/video/video.js'
-
- const auditLogger = auditLoggerFactory('channels')
- const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT)
- const reqBannerFile = createReqFiles([ 'bannerfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT)
-
- const videoChannelRouter = express.Router()
-
- videoChannelRouter.use(apiRateLimiter)
-
- videoChannelRouter.get('/',
- paginationValidator,
- videoChannelsSortValidator,
- setDefaultSort,
- setDefaultPagination,
- videoChannelsListValidator,
- asyncMiddleware(listVideoChannels)
- )
-
- videoChannelRouter.post('/',
- authenticate,
- asyncMiddleware(videoChannelsAddValidator),
- asyncRetryTransactionMiddleware(createVideoChannel)
- )
-
- videoChannelRouter.post('/:nameWithHost/avatar/pick',
- authenticate,
- reqAvatarFile,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- updateAvatarValidator,
- asyncMiddleware(updateVideoChannelAvatar)
- )
-
- videoChannelRouter.post('/:nameWithHost/banner/pick',
- authenticate,
- reqBannerFile,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- updateBannerValidator,
- asyncMiddleware(updateVideoChannelBanner)
- )
-
- videoChannelRouter.delete('/:nameWithHost/avatar',
- authenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- asyncMiddleware(deleteVideoChannelAvatar)
- )
-
- videoChannelRouter.delete('/:nameWithHost/banner',
- authenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- asyncMiddleware(deleteVideoChannelBanner)
- )
-
- videoChannelRouter.put('/:nameWithHost',
- authenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- videoChannelsUpdateValidator,
- asyncRetryTransactionMiddleware(updateVideoChannel)
- )
-
- videoChannelRouter.delete('/:nameWithHost',
- authenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- asyncMiddleware(videoChannelsRemoveValidator),
- asyncRetryTransactionMiddleware(removeVideoChannel)
- )
-
- videoChannelRouter.get('/:nameWithHost',
- asyncMiddleware(videoChannelsNameWithHostValidator),
- asyncMiddleware(getVideoChannel)
- )
-
- videoChannelRouter.get('/:nameWithHost/video-playlists',
- optionalAuthenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- paginationValidator,
- videoPlaylistsSortValidator,
- setDefaultSort,
- setDefaultPagination,
- commonVideoPlaylistFiltersValidator,
- asyncMiddleware(listVideoChannelPlaylists)
- )
-
- videoChannelRouter.get('/:nameWithHost/videos',
- asyncMiddleware(videoChannelsNameWithHostValidator),
- paginationValidator,
- videosSortValidator,
- setDefaultVideosSort,
- setDefaultPagination,
- optionalAuthenticate,
- commonVideosFiltersValidator,
- asyncMiddleware(listVideoChannelVideos)
- )
-
- videoChannelRouter.get('/:nameWithHost/followers',
- authenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- ensureCanManageChannelOrAccount,
- paginationValidator,
- videoChannelsFollowersSortValidator,
- setDefaultSort,
- setDefaultPagination,
- asyncMiddleware(listVideoChannelFollowers)
- )
-
- videoChannelRouter.post('/:nameWithHost/import-videos',
- authenticate,
- asyncMiddleware(videoChannelsNameWithHostValidator),
- asyncMiddleware(videoChannelImportVideosValidator),
- ensureIsLocalChannel,
- ensureCanManageChannelOrAccount,
- asyncMiddleware(ensureChannelOwnerCanUpload),
- asyncMiddleware(importVideosInChannel)
- )
-
- // ---------------------------------------------------------------------------
-
- export {
- videoChannelRouter
- }
-
- // ---------------------------------------------------------------------------
-
- async function listVideoChannels (req: express.Request, res: express.Response) {
- const serverActor = await getServerActor()
-
- const apiOptions = await Hooks.wrapObject({
- actorId: serverActor.id,
- start: req.query.start,
- count: req.query.count,
- sort: req.query.sort
- }, 'filter:api.video-channels.list.params')
-
- const resultList = await Hooks.wrapPromiseFun(
- VideoChannelModel.listForApi.bind(VideoChannelModel),
- apiOptions,
- 'filter:api.video-channels.list.result'
- )
-
- return res.json(getFormattedObjects(resultList.data, resultList.total))
- }
-
- async function updateVideoChannelBanner (req: express.Request, res: express.Response) {
- const bannerPhysicalFile = req.files['bannerfile'][0]
- const videoChannel = res.locals.videoChannel
- const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
-
- const banners = await updateLocalActorImageFiles({
- accountOrChannel: videoChannel,
- imagePhysicalFile: bannerPhysicalFile,
- type: ActorImageType.BANNER,
- sendActorUpdate: true
- })
-
- auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
-
- return res.json({
- banners: banners.map(b => b.toFormattedJSON())
- })
- }
-
- async function updateVideoChannelAvatar (req: express.Request, res: express.Response) {
- const avatarPhysicalFile = req.files['avatarfile'][0]
- const videoChannel = res.locals.videoChannel
- const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
-
- const avatars = await updateLocalActorImageFiles({
- accountOrChannel: videoChannel,
- imagePhysicalFile: avatarPhysicalFile,
- type: ActorImageType.AVATAR,
- sendActorUpdate: true
- })
-
- auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
-
- return res.json({
- avatars: avatars.map(a => a.toFormattedJSON())
- })
- }
-
- async function deleteVideoChannelAvatar (req: express.Request, res: express.Response) {
- const videoChannel = res.locals.videoChannel
-
- await deleteLocalActorImageFile(videoChannel, ActorImageType.AVATAR)
-
- return res.status(HttpStatusCode.NO_CONTENT_204).end()
- }
-
- async function deleteVideoChannelBanner (req: express.Request, res: express.Response) {
- const videoChannel = res.locals.videoChannel
-
- await deleteLocalActorImageFile(videoChannel, ActorImageType.BANNER)
-
- return res.status(HttpStatusCode.NO_CONTENT_204).end()
- }
-
- async function createVideoChannel (req: express.Request, res: express.Response) {
- const videoChannelInfo: VideoChannelCreate = req.body
-
- const videoChannelCreated = await sequelizeTypescript.transaction(async t => {
- const account = await AccountModel.load(res.locals.oauth.token.User.Account.id, t)
-
- return createLocalVideoChannelWithoutKeys(videoChannelInfo, account, t)
- })
-
- await JobQueue.Instance.createJob({
- type: 'actor-keys',
- payload: { actorId: videoChannelCreated.actorId }
- })
-
- auditLogger.create(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelCreated.toFormattedJSON()))
- logger.info('Video channel %s created.', videoChannelCreated.Actor.url)
-
- Hooks.runAction('action:api.video-channel.created', { videoChannel: videoChannelCreated, req, res })
-
- return res.json({
- videoChannel: {
- id: videoChannelCreated.id
- }
- })
- }
-
- async function updateVideoChannel (req: express.Request, res: express.Response) {
- const videoChannelInstance = res.locals.videoChannel
- const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannelInstance.toFormattedJSON())
- const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
- let doBulkVideoUpdate = false
-
- try {
- await sequelizeTypescript.transaction(async t => {
- if (videoChannelInfoToUpdate.displayName !== undefined) videoChannelInstance.name = videoChannelInfoToUpdate.displayName
- if (videoChannelInfoToUpdate.description !== undefined) videoChannelInstance.description = videoChannelInfoToUpdate.description
-
- if (videoChannelInfoToUpdate.support !== undefined) {
- const oldSupportField = videoChannelInstance.support
- videoChannelInstance.support = videoChannelInfoToUpdate.support
-
- if (videoChannelInfoToUpdate.bulkVideosSupportUpdate === true && oldSupportField !== videoChannelInfoToUpdate.support) {
- doBulkVideoUpdate = true
- await VideoModel.bulkUpdateSupportField(videoChannelInstance, t)
- }
- }
-
- const videoChannelInstanceUpdated = await videoChannelInstance.save({ transaction: t }) as MChannelBannerAccountDefault
- await sendUpdateActor(videoChannelInstanceUpdated, t)
-
- auditLogger.update(
- getAuditIdFromRes(res),
- new VideoChannelAuditView(videoChannelInstanceUpdated.toFormattedJSON()),
- oldVideoChannelAuditKeys
- )
-
- Hooks.runAction('action:api.video-channel.updated', { videoChannel: videoChannelInstanceUpdated, req, res })
-
- logger.info('Video channel %s updated.', videoChannelInstance.Actor.url)
- })
- } catch (err) {
- logger.debug('Cannot update the video channel.', { err })
-
- // If the transaction is retried, sequelize will think the object has not changed
- // So we need to restore the previous fields
- await resetSequelizeInstance(videoChannelInstance)
-
- throw err
- }
-
- res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
-
- // Don't process in a transaction, and after the response because it could be long
- if (doBulkVideoUpdate) {
- await federateAllVideosOfChannel(videoChannelInstance)
- }
- }
-
- async function removeVideoChannel (req: express.Request, res: express.Response) {
- const videoChannelInstance = res.locals.videoChannel
-
- await sequelizeTypescript.transaction(async t => {
- await VideoPlaylistModel.resetPlaylistsOfChannel(videoChannelInstance.id, t)
-
- await videoChannelInstance.destroy({ transaction: t })
-
- Hooks.runAction('action:api.video-channel.deleted', { videoChannel: videoChannelInstance, req, res })
-
- auditLogger.delete(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelInstance.toFormattedJSON()))
- logger.info('Video channel %s deleted.', videoChannelInstance.Actor.url)
- })
-
- return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
- }
-
- async function getVideoChannel (req: express.Request, res: express.Response) {
- const id = res.locals.videoChannel.id
- const videoChannel = await Hooks.wrapObject(res.locals.videoChannel, 'filter:api.video-channel.get.result', { id })
-
- if (videoChannel.isOutdated()) {
- JobQueue.Instance.createJobAsync({ type: 'activitypub-refresher', payload: { type: 'actor', url: videoChannel.Actor.url } })
- }
-
- return res.json(videoChannel.toFormattedJSON())
- }
-
- async function listVideoChannelPlaylists (req: express.Request, res: express.Response) {
- const serverActor = await getServerActor()
-
- const resultList = await VideoPlaylistModel.listForApi({
- followerActorId: isUserAbleToSearchRemoteURI(res)
- ? null
- : serverActor.id,
-
- start: req.query.start,
- count: req.query.count,
- sort: req.query.sort,
- videoChannelId: res.locals.videoChannel.id,
- type: req.query.playlistType
- })
-
- return res.json(getFormattedObjects(resultList.data, resultList.total))
- }
-
- async function listVideoChannelVideos (req: express.Request, res: express.Response) {
- const serverActor = await getServerActor()
-
- const videoChannelInstance = res.locals.videoChannel
-
- const displayOnlyForFollower = isUserAbleToSearchRemoteURI(res)
- ? null
- : {
- actorId: serverActor.id,
- orLocalVideos: true
- }
-
- const countVideos = getCountVideos(req)
- const query = pickCommonVideoQuery(req.query)
-
- const apiOptions = await Hooks.wrapObject({
- ...query,
-
- displayOnlyForFollower,
- nsfw: buildNSFWFilter(res, query.nsfw),
- videoChannelId: videoChannelInstance.id,
- user: res.locals.oauth ? res.locals.oauth.token.User : undefined,
- countVideos
- }, 'filter:api.video-channels.videos.list.params')
-
- const resultList = await Hooks.wrapPromiseFun(
- VideoModel.listForApi.bind(VideoModel),
- apiOptions,
- 'filter:api.video-channels.videos.list.result'
- )
-
- return res.json(getFormattedObjects(resultList.data, resultList.total, guessAdditionalAttributesFromQuery(query)))
- }
-
- async function listVideoChannelFollowers (req: express.Request, res: express.Response) {
- const channel = res.locals.videoChannel
-
- const resultList = await ActorFollowModel.listFollowersForApi({
- actorIds: [ channel.actorId ],
- start: req.query.start,
- count: req.query.count,
- sort: req.query.sort,
- search: req.query.search,
- state: 'accepted'
- })
-
- return res.json(getFormattedObjects(resultList.data, resultList.total))
- }
-
- async function importVideosInChannel (req: express.Request, res: express.Response) {
- const { externalChannelUrl } = req.body as VideosImportInChannelCreate
-
- await JobQueue.Instance.createJob({
- type: 'video-channel-import',
- payload: {
- externalChannelUrl,
- videoChannelId: res.locals.videoChannel.id,
- partOfChannelSyncId: res.locals.videoChannelSync?.id
- }
- })
-
- logger.info('Video import job for channel "%s" with url "%s" created.', res.locals.videoChannel.name, externalChannelUrl)
-
- return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
- }
|