2018-04-24 11:05:32 -04:00
|
|
|
import * as express from 'express'
|
2018-04-25 10:15:39 -04:00
|
|
|
import { getFormattedObjects, resetSequelizeInstance } from '../../helpers/utils'
|
2018-04-24 11:05:32 -04:00
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware,
|
2018-07-20 08:35:18 -04:00
|
|
|
authenticate, commonVideosFiltersValidator,
|
2018-04-25 10:15:39 -04:00
|
|
|
optionalAuthenticate,
|
2018-04-24 11:05:32 -04:00
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
|
|
|
setDefaultSort,
|
2018-04-25 10:15:39 -04:00
|
|
|
videoChannelsAddValidator,
|
|
|
|
videoChannelsGetValidator,
|
|
|
|
videoChannelsRemoveValidator,
|
|
|
|
videoChannelsSortValidator,
|
|
|
|
videoChannelsUpdateValidator
|
2018-04-24 11:05:32 -04:00
|
|
|
} from '../../middlewares'
|
|
|
|
import { VideoChannelModel } from '../../models/video/video-channel'
|
2018-04-25 10:15:39 -04:00
|
|
|
import { videosSortValidator } from '../../middlewares/validators'
|
|
|
|
import { sendUpdateActor } from '../../lib/activitypub/send'
|
|
|
|
import { VideoChannelCreate, VideoChannelUpdate } from '../../../shared'
|
|
|
|
import { createVideoChannel } from '../../lib/video-channel'
|
2018-07-20 08:35:18 -04:00
|
|
|
import { createReqFiles, buildNSFWFilter } from '../../helpers/express-utils'
|
2018-04-25 10:15:39 -04:00
|
|
|
import { setAsyncActorKeys } from '../../lib/activitypub'
|
|
|
|
import { AccountModel } from '../../models/account/account'
|
2018-06-29 05:29:23 -04:00
|
|
|
import { CONFIG, IMAGE_MIMETYPE_EXT, sequelizeTypescript } from '../../initializers'
|
2018-04-25 10:15:39 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { VideoModel } from '../../models/video/video'
|
2018-06-29 05:29:23 -04:00
|
|
|
import { updateAvatarValidator } from '../../middlewares/validators/avatar'
|
|
|
|
import { updateActorAvatarFile } from '../../lib/avatar'
|
|
|
|
|
|
|
|
const reqAvatarFile = createReqFiles([ 'avatarfile' ], IMAGE_MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.AVATARS_DIR })
|
2018-04-24 11:05:32 -04:00
|
|
|
|
|
|
|
const videoChannelRouter = express.Router()
|
|
|
|
|
|
|
|
videoChannelRouter.get('/',
|
|
|
|
paginationValidator,
|
|
|
|
videoChannelsSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
asyncMiddleware(listVideoChannels)
|
|
|
|
)
|
|
|
|
|
2018-04-25 10:15:39 -04:00
|
|
|
videoChannelRouter.post('/',
|
|
|
|
authenticate,
|
|
|
|
videoChannelsAddValidator,
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware(addVideoChannel)
|
2018-04-25 10:15:39 -04:00
|
|
|
)
|
|
|
|
|
2018-06-29 05:29:23 -04:00
|
|
|
videoChannelRouter.post('/:id/avatar/pick',
|
|
|
|
authenticate,
|
|
|
|
reqAvatarFile,
|
|
|
|
// Check the rights
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
|
|
|
updateAvatarValidator,
|
|
|
|
asyncMiddleware(updateVideoChannelAvatar)
|
|
|
|
)
|
|
|
|
|
2018-04-25 10:15:39 -04:00
|
|
|
videoChannelRouter.put('/:id',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware(updateVideoChannel)
|
2018-04-25 10:15:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
videoChannelRouter.delete('/:id',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(videoChannelsRemoveValidator),
|
2018-06-13 08:27:40 -04:00
|
|
|
asyncRetryTransactionMiddleware(removeVideoChannel)
|
2018-04-25 10:15:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
videoChannelRouter.get('/:id',
|
|
|
|
asyncMiddleware(videoChannelsGetValidator),
|
|
|
|
asyncMiddleware(getVideoChannel)
|
|
|
|
)
|
|
|
|
|
|
|
|
videoChannelRouter.get('/:id/videos',
|
|
|
|
asyncMiddleware(videoChannelsGetValidator),
|
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function listVideoChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const resultList = await VideoChannelModel.listForApi(req.query.start, req.query.count, req.query.sort)
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
2018-04-25 10:15:39 -04:00
|
|
|
|
2018-06-29 05:29:23 -04:00
|
|
|
async function updateVideoChannelAvatar (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const avatarPhysicalFile = req.files[ 'avatarfile' ][ 0 ]
|
|
|
|
const videoChannel = res.locals.videoChannel
|
|
|
|
|
|
|
|
const avatar = await updateActorAvatarFile(avatarPhysicalFile, videoChannel.Actor, videoChannel)
|
|
|
|
|
|
|
|
return res
|
|
|
|
.json({
|
|
|
|
avatar: avatar.toFormattedJSON()
|
|
|
|
})
|
|
|
|
.end()
|
|
|
|
}
|
|
|
|
|
2018-04-25 10:15:39 -04:00
|
|
|
async function addVideoChannel (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannelInfo: VideoChannelCreate = req.body
|
|
|
|
const account: AccountModel = res.locals.oauth.token.User.Account
|
|
|
|
|
|
|
|
const videoChannelCreated: VideoChannelModel = await sequelizeTypescript.transaction(async t => {
|
|
|
|
return createVideoChannel(videoChannelInfo, account, t)
|
|
|
|
})
|
|
|
|
|
|
|
|
setAsyncActorKeys(videoChannelCreated.Actor)
|
|
|
|
.catch(err => logger.error('Cannot set async actor keys for account %s.', videoChannelCreated.Actor.uuid, { err }))
|
|
|
|
|
|
|
|
logger.info('Video channel with uuid %s created.', videoChannelCreated.Actor.uuid)
|
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
return res.json({
|
|
|
|
videoChannel: {
|
|
|
|
id: videoChannelCreated.id,
|
|
|
|
uuid: videoChannelCreated.Actor.uuid
|
|
|
|
}
|
|
|
|
}).end()
|
2018-04-25 10:15:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function updateVideoChannel (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannelInstance = res.locals.videoChannel as VideoChannelModel
|
|
|
|
const videoChannelFieldsSave = videoChannelInstance.toJSON()
|
|
|
|
const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
|
|
|
|
|
|
|
|
try {
|
|
|
|
await sequelizeTypescript.transaction(async t => {
|
|
|
|
const sequelizeOptions = {
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
2018-04-26 10:11:38 -04:00
|
|
|
if (videoChannelInfoToUpdate.displayName !== undefined) videoChannelInstance.set('name', videoChannelInfoToUpdate.displayName)
|
2018-04-25 10:15:39 -04:00
|
|
|
if (videoChannelInfoToUpdate.description !== undefined) videoChannelInstance.set('description', videoChannelInfoToUpdate.description)
|
|
|
|
if (videoChannelInfoToUpdate.support !== undefined) videoChannelInstance.set('support', videoChannelInfoToUpdate.support)
|
|
|
|
|
|
|
|
const videoChannelInstanceUpdated = await videoChannelInstance.save(sequelizeOptions)
|
|
|
|
await sendUpdateActor(videoChannelInstanceUpdated, t)
|
|
|
|
})
|
|
|
|
|
|
|
|
logger.info('Video channel with name %s and uuid %s updated.', videoChannelInstance.name, videoChannelInstance.Actor.uuid)
|
|
|
|
} 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
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
async function removeVideoChannel (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannelInstance: VideoChannelModel = res.locals.videoChannel
|
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2018-04-25 10:15:39 -04:00
|
|
|
await videoChannelInstance.destroy({ transaction: t })
|
|
|
|
|
|
|
|
logger.info('Video channel with name %s and uuid %s deleted.', videoChannelInstance.name, videoChannelInstance.Actor.uuid)
|
|
|
|
})
|
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
return res.type('json').status(204).end()
|
2018-04-25 10:15:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function getVideoChannel (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const videoChannelWithVideos = await VideoChannelModel.loadAndPopulateAccountAndVideos(res.locals.videoChannel.id)
|
|
|
|
|
|
|
|
return res.json(videoChannelWithVideos.toFormattedJSON())
|
|
|
|
}
|
|
|
|
|
|
|
|
async function listVideoChannelVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const videoChannelInstance: VideoChannelModel = res.locals.videoChannel
|
|
|
|
|
|
|
|
const resultList = await VideoModel.listForApi({
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
|
|
|
sort: req.query.sort,
|
2018-07-20 08:35:18 -04:00
|
|
|
categoryOneOf: req.query.categoryOneOf,
|
|
|
|
licenceOneOf: req.query.licenceOneOf,
|
|
|
|
languageOneOf: req.query.languageOneOf,
|
|
|
|
tagsOneOf: req.query.tagsOneOf,
|
|
|
|
tagsAllOf: req.query.tagsAllOf,
|
|
|
|
nsfw: buildNSFWFilter(res, req.query.nsfw),
|
2018-04-25 10:15:39 -04:00
|
|
|
withFiles: false,
|
|
|
|
videoChannelId: videoChannelInstance.id
|
|
|
|
})
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|