PeerTube/server/controllers/api/videos/channel.ts

175 lines
6.2 KiB
TypeScript
Raw Normal View History

2017-10-24 17:41:09 +00:00
import * as express from 'express'
2017-11-10 16:27:49 +00:00
import { VideoChannelCreate, VideoChannelUpdate } from '../../../../shared'
import { getFormattedObjects, logger, resetSequelizeInstance, retryTransactionWrapper } from '../../../helpers'
2017-12-12 16:53:50 +00:00
import { sequelizeTypescript } from '../../../initializers'
2017-11-10 16:27:49 +00:00
import { createVideoChannel } from '../../../lib'
2017-11-27 16:30:46 +00:00
import { sendUpdateVideoChannel } from '../../../lib/activitypub/send/send-update'
2017-10-24 17:41:09 +00:00
import {
2017-11-10 16:27:49 +00:00
asyncMiddleware,
2017-10-24 17:41:09 +00:00
authenticate,
2017-11-10 16:27:49 +00:00
listVideoAccountChannelsValidator,
2017-10-24 17:41:09 +00:00
paginationValidator,
setPagination,
2017-11-10 16:27:49 +00:00
setVideoChannelsSort,
videoChannelsAddValidator,
2017-11-27 16:30:46 +00:00
videoChannelsGetValidator,
2017-11-10 16:27:49 +00:00
videoChannelsRemoveValidator,
videoChannelsSortValidator,
videoChannelsUpdateValidator
2017-10-24 17:41:09 +00:00
} from '../../../middlewares'
2017-12-12 16:53:50 +00:00
import { AccountModel } from '../../../models/account/account'
import { VideoChannelModel } from '../../../models/video/video-channel'
2017-10-24 17:41:09 +00:00
const videoChannelRouter = express.Router()
videoChannelRouter.get('/channels',
paginationValidator,
videoChannelsSortValidator,
setVideoChannelsSort,
setPagination,
2017-10-25 09:55:06 +00:00
asyncMiddleware(listVideoChannels)
2017-10-24 17:41:09 +00:00
)
2017-11-10 13:48:08 +00:00
videoChannelRouter.get('/accounts/:accountId/channels',
2017-11-27 16:30:46 +00:00
asyncMiddleware(listVideoAccountChannelsValidator),
2017-11-10 13:48:08 +00:00
asyncMiddleware(listVideoAccountChannels)
2017-10-24 17:41:09 +00:00
)
videoChannelRouter.post('/channels',
authenticate,
videoChannelsAddValidator,
2017-10-25 09:55:06 +00:00
asyncMiddleware(addVideoChannelRetryWrapper)
2017-10-24 17:41:09 +00:00
)
videoChannelRouter.put('/channels/:id',
authenticate,
2017-11-27 16:30:46 +00:00
asyncMiddleware(videoChannelsUpdateValidator),
2017-10-24 17:41:09 +00:00
updateVideoChannelRetryWrapper
)
videoChannelRouter.delete('/channels/:id',
authenticate,
2017-11-27 16:30:46 +00:00
asyncMiddleware(videoChannelsRemoveValidator),
2017-10-25 09:55:06 +00:00
asyncMiddleware(removeVideoChannelRetryWrapper)
2017-10-24 17:41:09 +00:00
)
videoChannelRouter.get('/channels/:id',
2017-11-27 16:30:46 +00:00
asyncMiddleware(videoChannelsGetValidator),
2017-10-25 09:55:06 +00:00
asyncMiddleware(getVideoChannel)
2017-10-24 17:41:09 +00:00
)
// ---------------------------------------------------------------------------
export {
videoChannelRouter
}
// ---------------------------------------------------------------------------
2017-10-25 09:55:06 +00:00
async function listVideoChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-12-12 16:53:50 +00:00
const resultList = await VideoChannelModel.listForApi(req.query.start, req.query.count, req.query.sort)
2017-10-25 09:55:06 +00:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
2017-10-24 17:41:09 +00:00
}
2017-11-10 13:48:08 +00:00
async function listVideoAccountChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-12-12 16:53:50 +00:00
const resultList = await VideoChannelModel.listByAccount(res.locals.account.id)
2017-10-25 09:55:06 +00:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
2017-10-24 17:41:09 +00:00
}
2017-10-25 09:55:06 +00:00
// Wrapper to video channel add that retry the async function if there is a database error
2017-10-24 17:41:09 +00:00
// We need this because we run the transaction in SERIALIZABLE isolation that can fail
2017-10-25 09:55:06 +00:00
async function addVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-10-24 17:41:09 +00:00
const options = {
arguments: [ req, res ],
errorMessage: 'Cannot insert the video video channel with many retries.'
}
2017-10-25 09:55:06 +00:00
await retryTransactionWrapper(addVideoChannel, options)
// TODO : include Location of the new video channel -> 201
return res.type('json').status(204).end()
2017-10-24 17:41:09 +00:00
}
2017-12-14 10:18:49 +00:00
function addVideoChannel (req: express.Request, res: express.Response) {
2017-10-24 17:41:09 +00:00
const videoChannelInfo: VideoChannelCreate = req.body
2017-12-12 16:53:50 +00:00
const account: AccountModel = res.locals.oauth.token.User.Account
2017-10-24 17:41:09 +00:00
2017-12-14 10:18:49 +00:00
return sequelizeTypescript.transaction(async t => {
const videoChannelCreated = await createVideoChannel(videoChannelInfo, account, t)
2017-10-25 09:55:06 +00:00
2017-12-14 10:18:49 +00:00
logger.info('Video channel with uuid %s created.', videoChannelCreated.uuid)
})
2017-10-24 17:41:09 +00:00
}
2017-10-25 09:55:06 +00:00
async function updateVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-10-24 17:41:09 +00:00
const options = {
arguments: [ req, res ],
errorMessage: 'Cannot update the video with many retries.'
}
2017-10-25 09:55:06 +00:00
await retryTransactionWrapper(updateVideoChannel, options)
return res.type('json').status(204).end()
2017-10-24 17:41:09 +00:00
}
2017-10-25 09:55:06 +00:00
async function updateVideoChannel (req: express.Request, res: express.Response) {
2017-12-12 16:53:50 +00:00
const videoChannelInstance = res.locals.videoChannel as VideoChannelModel
2017-10-24 17:41:09 +00:00
const videoChannelFieldsSave = videoChannelInstance.toJSON()
2017-12-12 16:53:50 +00:00
const videoChannelInfoToUpdate = req.body as VideoChannelUpdate
2017-10-24 17:41:09 +00:00
2017-10-25 09:55:06 +00:00
try {
2017-12-12 16:53:50 +00:00
await sequelizeTypescript.transaction(async t => {
2017-10-25 09:55:06 +00:00
const sequelizeOptions = {
transaction: t
}
2017-10-24 17:41:09 +00:00
2017-10-25 09:55:06 +00:00
if (videoChannelInfoToUpdate.name !== undefined) videoChannelInstance.set('name', videoChannelInfoToUpdate.name)
if (videoChannelInfoToUpdate.description !== undefined) videoChannelInstance.set('description', videoChannelInfoToUpdate.description)
2017-10-24 17:41:09 +00:00
2017-11-20 08:43:39 +00:00
const videoChannelInstanceUpdated = await videoChannelInstance.save(sequelizeOptions)
2017-10-24 17:41:09 +00:00
2017-11-20 08:43:39 +00:00
await sendUpdateVideoChannel(videoChannelInstanceUpdated, t)
2017-10-24 17:41:09 +00:00
})
2017-10-25 09:55:06 +00:00
logger.info('Video channel with name %s and uuid %s updated.', videoChannelInstance.name, videoChannelInstance.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
}
2017-10-24 17:41:09 +00:00
}
2017-10-25 09:55:06 +00:00
async function removeVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-10-24 17:41:09 +00:00
const options = {
arguments: [ req, res ],
errorMessage: 'Cannot remove the video channel with many retries.'
}
2017-10-25 09:55:06 +00:00
await retryTransactionWrapper(removeVideoChannel, options)
return res.type('json').status(204).end()
2017-10-24 17:41:09 +00:00
}
2017-10-25 09:55:06 +00:00
async function removeVideoChannel (req: express.Request, res: express.Response) {
2017-12-12 16:53:50 +00:00
const videoChannelInstance: VideoChannelModel = res.locals.videoChannel
2017-10-24 17:41:09 +00:00
2017-12-12 16:53:50 +00:00
await sequelizeTypescript.transaction(async t => {
2017-10-25 09:55:06 +00:00
await videoChannelInstance.destroy({ transaction: t })
2017-10-24 17:41:09 +00:00
})
2017-10-25 09:55:06 +00:00
logger.info('Video channel with name %s and uuid %s deleted.', videoChannelInstance.name, videoChannelInstance.uuid)
2017-10-24 17:41:09 +00:00
}
2017-10-25 09:55:06 +00:00
async function getVideoChannel (req: express.Request, res: express.Response, next: express.NextFunction) {
2017-12-12 16:53:50 +00:00
const videoChannelWithVideos = await VideoChannelModel.loadAndPopulateAccountAndVideos(res.locals.videoChannel.id)
2017-10-25 09:55:06 +00:00
return res.json(videoChannelWithVideos.toFormattedJSON())
2017-10-24 17:41:09 +00:00
}