2018-04-24 11:05:32 -04:00
|
|
|
import * as express from 'express'
|
2020-12-08 04:30:33 -05:00
|
|
|
import { Hooks } from '@server/lib/plugins/hooks'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
2021-04-06 11:01:35 -04:00
|
|
|
import { MChannelBannerAccountDefault } from '@server/types/models'
|
2021-05-03 05:06:19 -04:00
|
|
|
import { ActorImageType, VideoChannelCreate, VideoChannelUpdate, VideosCommonQuery } from '../../../shared'
|
2021-02-26 08:22:25 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { auditLoggerFactory, getAuditIdFromRes, VideoChannelAuditView } from '../../helpers/audit-logger'
|
|
|
|
import { resetSequelizeInstance } from '../../helpers/database-utils'
|
|
|
|
import { buildNSFWFilter, createReqFiles, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils'
|
|
|
|
import { logger } from '../../helpers/logger'
|
2020-04-23 05:36:50 -04:00
|
|
|
import { getFormattedObjects } from '../../helpers/utils'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { CONFIG } from '../../initializers/config'
|
|
|
|
import { MIMETYPES } from '../../initializers/constants'
|
|
|
|
import { sequelizeTypescript } from '../../initializers/database'
|
|
|
|
import { sendUpdateActor } from '../../lib/activitypub/send'
|
2021-04-06 11:01:35 -04:00
|
|
|
import { deleteLocalActorImageFile, updateLocalActorImageFile } from '../../lib/actor-image'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { JobQueue } from '../../lib/job-queue'
|
|
|
|
import { createLocalVideoChannel, federateAllVideosOfChannel } from '../../lib/video-channel'
|
2018-04-24 11:05:32 -04:00
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware,
|
2018-08-14 09:28:30 -04:00
|
|
|
authenticate,
|
|
|
|
commonVideosFiltersValidator,
|
2018-04-25 10:15:39 -04:00
|
|
|
optionalAuthenticate,
|
2018-04-24 11:05:32 -04:00
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
|
|
|
setDefaultSort,
|
2020-08-20 03:19:21 -04:00
|
|
|
setDefaultVideosSort,
|
2018-04-25 10:15:39 -04:00
|
|
|
videoChannelsAddValidator,
|
|
|
|
videoChannelsRemoveValidator,
|
|
|
|
videoChannelsSortValidator,
|
2019-02-26 04:55:40 -05:00
|
|
|
videoChannelsUpdateValidator,
|
|
|
|
videoPlaylistsSortValidator
|
2018-04-24 11:05:32 -04:00
|
|
|
} from '../../middlewares'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { videoChannelsNameWithHostValidator, videoChannelsOwnSearchValidator, videosSortValidator } from '../../middlewares/validators'
|
2021-04-07 04:36:13 -04:00
|
|
|
import { updateAvatarValidator, updateBannerValidator } from '../../middlewares/validators/actor-image'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { commonVideoPlaylistFiltersValidator } from '../../middlewares/validators/videos/video-playlists'
|
2018-04-25 10:15:39 -04:00
|
|
|
import { AccountModel } from '../../models/account/account'
|
|
|
|
import { VideoModel } from '../../models/video/video'
|
2020-08-20 03:19:21 -04:00
|
|
|
import { VideoChannelModel } from '../../models/video/video-channel'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { VideoPlaylistModel } from '../../models/video/video-playlist'
|
2018-06-29 05:29:23 -04:00
|
|
|
|
2018-07-31 08:04:26 -04:00
|
|
|
const auditLogger = auditLoggerFactory('channels')
|
2018-12-11 08:52:50 -05:00
|
|
|
const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR })
|
2021-04-06 11:01:35 -04:00
|
|
|
const reqBannerFile = createReqFiles([ 'bannerfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { bannerfile: CONFIG.STORAGE.TMP_DIR })
|
2018-04-24 11:05:32 -04:00
|
|
|
|
|
|
|
const videoChannelRouter = express.Router()
|
|
|
|
|
|
|
|
videoChannelRouter.get('/',
|
|
|
|
paginationValidator,
|
|
|
|
videoChannelsSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
2020-07-15 05:17:03 -04:00
|
|
|
videoChannelsOwnSearchValidator,
|
2018-04-24 11:05:32 -04:00
|
|
|
asyncMiddleware(listVideoChannels)
|
|
|
|
)
|
|
|
|
|
2018-04-25 10:15:39 -04:00
|
|
|
videoChannelRouter.post('/',
|
|
|
|
authenticate,
|
2018-10-01 09:18:07 -04:00
|
|
|
asyncMiddleware(videoChannelsAddValidator),
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware(addVideoChannel)
|
2018-04-25 10:15:39 -04:00
|
|
|
)
|
|
|
|
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelRouter.post('/:nameWithHost/avatar/pick',
|
2018-06-29 05:29:23 -04:00
|
|
|
authenticate,
|
|
|
|
reqAvatarFile,
|
|
|
|
// Check the rights
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
|
|
|
updateAvatarValidator,
|
2018-09-26 04:15:50 -04:00
|
|
|
asyncMiddleware(updateVideoChannelAvatar)
|
2018-06-29 05:29:23 -04:00
|
|
|
)
|
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
videoChannelRouter.post('/:nameWithHost/banner/pick',
|
|
|
|
authenticate,
|
|
|
|
reqBannerFile,
|
|
|
|
// Check the rights
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
|
|
|
updateBannerValidator,
|
|
|
|
asyncMiddleware(updateVideoChannelBanner)
|
|
|
|
)
|
|
|
|
|
2021-01-13 03:12:55 -05:00
|
|
|
videoChannelRouter.delete('/:nameWithHost/avatar',
|
|
|
|
authenticate,
|
|
|
|
// Check the rights
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
|
|
|
asyncMiddleware(deleteVideoChannelAvatar)
|
|
|
|
)
|
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
videoChannelRouter.delete('/:nameWithHost/banner',
|
|
|
|
authenticate,
|
|
|
|
// Check the rights
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
|
|
|
asyncMiddleware(deleteVideoChannelBanner)
|
|
|
|
)
|
|
|
|
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelRouter.put('/:nameWithHost',
|
2018-04-25 10:15:39 -04:00
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware(updateVideoChannel)
|
2018-04-25 10:15:39 -04:00
|
|
|
)
|
|
|
|
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelRouter.delete('/:nameWithHost',
|
2018-04-25 10:15:39 -04:00
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(videoChannelsRemoveValidator),
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware(removeVideoChannel)
|
2018-04-25 10:15:39 -04:00
|
|
|
)
|
|
|
|
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelRouter.get('/:nameWithHost',
|
|
|
|
asyncMiddleware(videoChannelsNameWithHostValidator),
|
2018-04-25 10:15:39 -04:00
|
|
|
asyncMiddleware(getVideoChannel)
|
|
|
|
)
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
videoChannelRouter.get('/:nameWithHost/video-playlists',
|
|
|
|
asyncMiddleware(videoChannelsNameWithHostValidator),
|
|
|
|
paginationValidator,
|
|
|
|
videoPlaylistsSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
2019-03-05 04:58:44 -05:00
|
|
|
commonVideoPlaylistFiltersValidator,
|
2019-02-26 04:55:40 -05:00
|
|
|
asyncMiddleware(listVideoChannelPlaylists)
|
|
|
|
)
|
|
|
|
|
2018-08-17 09:45:42 -04:00
|
|
|
videoChannelRouter.get('/:nameWithHost/videos',
|
|
|
|
asyncMiddleware(videoChannelsNameWithHostValidator),
|
2018-04-25 10:15:39 -04:00
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
2020-08-20 03:19:21 -04:00
|
|
|
setDefaultVideosSort,
|
2018-04-25 10:15:39 -04:00
|
|
|
setDefaultPagination,
|
|
|
|
optionalAuthenticate,
|
2018-07-20 08:35:18 -04:00
|
|
|
commonVideosFiltersValidator,
|
2018-04-25 10:15:39 -04:00
|
|
|
asyncMiddleware(listVideoChannelVideos)
|
|
|
|
)
|
|
|
|
|
2018-04-24 11:05:32 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
videoChannelRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function listVideoChannels (req: express.Request, res: express.Response) {
|
2018-08-23 11:58:39 -04:00
|
|
|
const serverActor = await getServerActor()
|
2020-07-15 05:17:03 -04:00
|
|
|
const resultList = await VideoChannelModel.listForApi({
|
|
|
|
actorId: serverActor.id,
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
2020-07-23 15:30:04 -04:00
|
|
|
sort: req.query.sort
|
2020-07-15 05:17:03 -04:00
|
|
|
})
|
2018-04-24 11:05:32 -04:00
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
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 banner = await updateLocalActorImageFile(videoChannel, bannerPhysicalFile, ActorImageType.BANNER)
|
|
|
|
|
|
|
|
auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
|
|
|
|
|
|
|
|
return res.json({ banner: banner.toFormattedJSON() })
|
|
|
|
}
|
2019-03-19 05:35:15 -04:00
|
|
|
async function updateVideoChannelAvatar (req: express.Request, res: express.Response) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const avatarPhysicalFile = req.files['avatarfile'][0]
|
2019-03-19 05:35:15 -04:00
|
|
|
const videoChannel = res.locals.videoChannel
|
2018-07-31 08:04:26 -04:00
|
|
|
const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannel.toFormattedJSON())
|
2018-06-29 05:29:23 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
const avatar = await updateLocalActorImageFile(videoChannel, avatarPhysicalFile, ActorImageType.AVATAR)
|
2018-06-29 05:29:23 -04:00
|
|
|
|
2018-09-20 05:31:48 -04:00
|
|
|
auditLogger.update(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannel.toFormattedJSON()), oldVideoChannelAuditKeys)
|
2018-07-31 08:04:26 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
return res.json({ avatar: avatar.toFormattedJSON() })
|
2018-06-29 05:29:23 -04:00
|
|
|
}
|
|
|
|
|
2021-01-13 03:12:55 -05:00
|
|
|
async function deleteVideoChannelAvatar (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannel = res.locals.videoChannel
|
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
await deleteLocalActorImageFile(videoChannel, ActorImageType.AVATAR)
|
|
|
|
|
|
|
|
return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteVideoChannelBanner (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannel = res.locals.videoChannel
|
|
|
|
|
|
|
|
await deleteLocalActorImageFile(videoChannel, ActorImageType.BANNER)
|
2021-01-13 03:12:55 -05:00
|
|
|
|
|
|
|
return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
|
|
|
|
}
|
|
|
|
|
2018-04-25 10:15:39 -04:00
|
|
|
async function addVideoChannel (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannelInfo: VideoChannelCreate = req.body
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
const videoChannelCreated = await sequelizeTypescript.transaction(async t => {
|
2019-03-19 05:35:15 -04:00
|
|
|
const account = await AccountModel.load(res.locals.oauth.token.User.Account.id, t)
|
2018-09-20 04:13:13 -04:00
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
return createLocalVideoChannel(videoChannelInfo, account, t)
|
2018-04-25 10:15:39 -04:00
|
|
|
})
|
|
|
|
|
2021-02-26 08:22:25 -05:00
|
|
|
const payload = { actorId: videoChannelCreated.actorId }
|
|
|
|
await JobQueue.Instance.createJobWithPromise({ type: 'actor-keys', payload })
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2018-09-20 04:13:13 -04:00
|
|
|
auditLogger.create(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelCreated.toFormattedJSON()))
|
2019-05-31 08:02:26 -04:00
|
|
|
logger.info('Video channel %s created.', videoChannelCreated.Actor.url)
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
return res.json({
|
|
|
|
videoChannel: {
|
2019-05-31 08:02:26 -04:00
|
|
|
id: videoChannelCreated.id
|
2018-06-13 08:27:40 -04:00
|
|
|
}
|
2021-04-06 11:01:35 -04:00
|
|
|
})
|
2018-04-25 10:15:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function updateVideoChannel (req: express.Request, res: express.Response) {
|
2019-03-19 05:35:15 -04:00
|
|
|
const videoChannelInstance = res.locals.videoChannel
|
2018-04-25 10:15:39 -04:00
|
|
|
const videoChannelFieldsSave = videoChannelInstance.toJSON()
|
2018-07-31 08:04:26 -04:00
|
|
|
const oldVideoChannelAuditKeys = new VideoChannelAuditView(videoChannelInstance.toFormattedJSON())
|
2018-04-25 10:15:39 -04:00
|
|
|
const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
|
2019-05-31 10:30:11 -04:00
|
|
|
let doBulkVideoUpdate = false
|
2018-04-25 10:15:39 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
await sequelizeTypescript.transaction(async t => {
|
|
|
|
const sequelizeOptions = {
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
2019-05-31 10:30:11 -04:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
const videoChannelInstanceUpdated = await videoChannelInstance.save(sequelizeOptions) as MChannelBannerAccountDefault
|
2018-04-25 10:15:39 -04:00
|
|
|
await sendUpdateActor(videoChannelInstanceUpdated, t)
|
|
|
|
|
2018-07-31 08:04:26 -04:00
|
|
|
auditLogger.update(
|
2018-09-19 11:02:16 -04:00
|
|
|
getAuditIdFromRes(res),
|
2018-07-31 08:04:26 -04:00
|
|
|
new VideoChannelAuditView(videoChannelInstanceUpdated.toFormattedJSON()),
|
|
|
|
oldVideoChannelAuditKeys
|
|
|
|
)
|
2019-05-31 10:30:11 -04:00
|
|
|
|
2019-05-31 08:02:26 -04:00
|
|
|
logger.info('Video channel %s updated.', videoChannelInstance.Actor.url)
|
2018-07-31 08:04:26 -04:00
|
|
|
})
|
2018-04-25 10:15:39 -04:00
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot update the video channel.', { err })
|
|
|
|
|
|
|
|
// Force fields we want to update
|
|
|
|
// If the transaction is retried, sequelize will think the object has not changed
|
|
|
|
// So it will skip the SQL request, even if the last one was ROLLBACKed!
|
|
|
|
resetSequelizeInstance(videoChannelInstance, videoChannelFieldsSave)
|
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
|
2019-05-31 10:30:11 -04:00
|
|
|
|
|
|
|
// Don't process in a transaction, and after the response because it could be long
|
|
|
|
if (doBulkVideoUpdate) {
|
|
|
|
await federateAllVideosOfChannel(videoChannelInstance)
|
|
|
|
}
|
2018-04-25 10:15:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function removeVideoChannel (req: express.Request, res: express.Response) {
|
2019-03-19 05:35:15 -04:00
|
|
|
const videoChannelInstance = res.locals.videoChannel
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2019-03-05 04:58:44 -05:00
|
|
|
await VideoPlaylistModel.resetPlaylistsOfChannel(videoChannelInstance.id, t)
|
|
|
|
|
2018-04-25 10:15:39 -04:00
|
|
|
await videoChannelInstance.destroy({ transaction: t })
|
|
|
|
|
2018-09-19 11:02:16 -04:00
|
|
|
auditLogger.delete(getAuditIdFromRes(res), new VideoChannelAuditView(videoChannelInstance.toFormattedJSON()))
|
2019-05-31 08:02:26 -04:00
|
|
|
logger.info('Video channel %s deleted.', videoChannelInstance.Actor.url)
|
2018-04-25 10:15:39 -04:00
|
|
|
})
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
return res.type('json').status(HttpStatusCode.NO_CONTENT_204).end()
|
2018-04-25 10:15:39 -04:00
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function getVideoChannel (req: express.Request, res: express.Response) {
|
2021-04-06 11:01:35 -04:00
|
|
|
const videoChannel = res.locals.videoChannel
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
if (videoChannel.isOutdated()) {
|
|
|
|
JobQueue.Instance.createJob({ type: 'activitypub-refresher', payload: { type: 'actor', url: videoChannel.Actor.url } })
|
2019-01-14 05:30:15 -05:00
|
|
|
}
|
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
return res.json(videoChannel.toFormattedJSON())
|
2018-04-25 10:15:39 -04:00
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
async function listVideoChannelPlaylists (req: express.Request, res: express.Response) {
|
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
|
|
|
const resultList = await VideoPlaylistModel.listForApi({
|
|
|
|
followerActorId: serverActor.id,
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
|
|
|
sort: req.query.sort,
|
2019-03-05 04:58:44 -05:00
|
|
|
videoChannelId: res.locals.videoChannel.id,
|
|
|
|
type: req.query.playlistType
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
async function listVideoChannelVideos (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannelInstance = res.locals.videoChannel
|
2018-12-05 08:36:05 -05:00
|
|
|
const followerActorId = isUserAbleToSearchRemoteURI(res) ? null : undefined
|
2020-01-08 08:15:16 -05:00
|
|
|
const countVideos = getCountVideos(req)
|
2021-05-03 05:06:19 -04:00
|
|
|
const query = req.query as VideosCommonQuery
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2020-12-08 04:30:33 -05:00
|
|
|
const apiOptions = await Hooks.wrapObject({
|
2018-12-05 08:36:05 -05:00
|
|
|
followerActorId,
|
2021-05-03 05:06:19 -04:00
|
|
|
start: query.start,
|
|
|
|
count: query.count,
|
|
|
|
sort: query.sort,
|
2018-08-17 09:45:42 -04:00
|
|
|
includeLocalVideos: true,
|
2021-05-03 05:06:19 -04:00
|
|
|
categoryOneOf: query.categoryOneOf,
|
|
|
|
licenceOneOf: query.licenceOneOf,
|
|
|
|
languageOneOf: query.languageOneOf,
|
|
|
|
tagsOneOf: query.tagsOneOf,
|
|
|
|
tagsAllOf: query.tagsAllOf,
|
|
|
|
filter: query.filter,
|
|
|
|
nsfw: buildNSFWFilter(res, query.nsfw),
|
2018-04-25 10:15:39 -04:00
|
|
|
withFiles: false,
|
2018-10-10 05:46:50 -04:00
|
|
|
videoChannelId: videoChannelInstance.id,
|
2020-01-08 08:15:16 -05:00
|
|
|
user: res.locals.oauth ? res.locals.oauth.token.User : undefined,
|
|
|
|
countVideos
|
2020-12-08 04:30:33 -05:00
|
|
|
}, 'filter:api.video-channels.videos.list.params')
|
|
|
|
|
|
|
|
const resultList = await Hooks.wrapPromiseFun(
|
|
|
|
VideoModel.listForApi,
|
|
|
|
apiOptions,
|
|
|
|
'filter:api.video-channels.videos.list.result'
|
|
|
|
)
|
2018-04-25 10:15:39 -04:00
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|