2018-01-03 09:38:50 -06:00
|
|
|
import * as express from 'express'
|
2018-04-24 10:05:32 -05:00
|
|
|
import { getFormattedObjects, resetSequelizeInstance } from '../../helpers/utils'
|
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
authenticate,
|
|
|
|
listVideoAccountChannelsValidator,
|
|
|
|
optionalAuthenticate,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
|
|
|
setDefaultSort,
|
|
|
|
videoChannelsAddValidator,
|
|
|
|
videoChannelsGetValidator,
|
|
|
|
videoChannelsRemoveValidator,
|
|
|
|
videoChannelsUpdateValidator
|
|
|
|
} from '../../middlewares'
|
2018-04-24 08:10:54 -05:00
|
|
|
import { accountsGetValidator, accountsSortValidator, videosSortValidator } from '../../middlewares/validators'
|
2018-01-03 09:38:50 -06:00
|
|
|
import { AccountModel } from '../../models/account/account'
|
2018-04-24 08:10:54 -05:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
|
|
|
import { isNSFWHidden } from '../../helpers/express-utils'
|
2018-04-24 10:05:32 -05:00
|
|
|
import { VideoChannelModel } from '../../models/video/video-channel'
|
|
|
|
import { VideoChannelCreate, VideoChannelUpdate } from '../../../shared'
|
|
|
|
import { sendUpdateActor } from '../../lib/activitypub/send'
|
|
|
|
import { createVideoChannel } from '../../lib/video-channel'
|
|
|
|
import { setAsyncActorKeys } from '../../lib/activitypub'
|
|
|
|
import { sequelizeTypescript } from '../../initializers'
|
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { retryTransactionWrapper } from '../../helpers/database-utils'
|
2018-01-03 09:38:50 -06:00
|
|
|
|
|
|
|
const accountsRouter = express.Router()
|
|
|
|
|
|
|
|
accountsRouter.get('/',
|
|
|
|
paginationValidator,
|
|
|
|
accountsSortValidator,
|
2018-01-17 03:50:33 -06:00
|
|
|
setDefaultSort,
|
2018-01-18 03:53:54 -06:00
|
|
|
setDefaultPagination,
|
2018-01-03 09:38:50 -06:00
|
|
|
asyncMiddleware(listAccounts)
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.get('/:id',
|
|
|
|
asyncMiddleware(accountsGetValidator),
|
|
|
|
getAccount
|
|
|
|
)
|
|
|
|
|
2018-04-24 08:10:54 -05:00
|
|
|
accountsRouter.get('/:id/videos',
|
|
|
|
asyncMiddleware(accountsGetValidator),
|
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
optionalAuthenticate,
|
2018-04-24 10:05:32 -05:00
|
|
|
asyncMiddleware(listAccountVideos)
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.get('/:accountId/video-channels',
|
|
|
|
asyncMiddleware(listVideoAccountChannelsValidator),
|
|
|
|
asyncMiddleware(listVideoAccountChannels)
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.post('/:accountId/video-channels',
|
|
|
|
authenticate,
|
|
|
|
videoChannelsAddValidator,
|
|
|
|
asyncMiddleware(addVideoChannelRetryWrapper)
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.put('/:accountId/video-channels/:id',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(videoChannelsUpdateValidator),
|
|
|
|
updateVideoChannelRetryWrapper
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.delete('/:accountId/video-channels/:id',
|
|
|
|
authenticate,
|
|
|
|
asyncMiddleware(videoChannelsRemoveValidator),
|
|
|
|
asyncMiddleware(removeVideoChannelRetryWrapper)
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.get('/:accountId/video-channels/:id',
|
|
|
|
asyncMiddleware(videoChannelsGetValidator),
|
|
|
|
asyncMiddleware(getVideoChannel)
|
|
|
|
)
|
|
|
|
|
|
|
|
accountsRouter.get('/:accountId/video-channels/:id/videos',
|
|
|
|
asyncMiddleware(videoChannelsGetValidator),
|
|
|
|
paginationValidator,
|
|
|
|
videosSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
optionalAuthenticate,
|
|
|
|
asyncMiddleware(listVideoChannelVideos)
|
2018-04-24 08:10:54 -05:00
|
|
|
)
|
|
|
|
|
2018-01-03 09:38:50 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
accountsRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getAccount (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2018-04-24 08:10:54 -05:00
|
|
|
const account: AccountModel = res.locals.account
|
|
|
|
|
|
|
|
return res.json(account.toFormattedJSON())
|
2018-01-03 09:38:50 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
async function listAccounts (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const resultList = await AccountModel.listForApi(req.query.start, req.query.count, req.query.sort)
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
2018-04-24 08:10:54 -05:00
|
|
|
|
2018-04-24 10:05:32 -05:00
|
|
|
async function listVideoAccountChannels (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const resultList = await VideoChannelModel.listByAccount(res.locals.account.id)
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper to video channel add that retry the async function if there is a database error
|
|
|
|
// We need this because we run the transaction in SERIALIZABLE isolation that can fail
|
|
|
|
async function addVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const options = {
|
|
|
|
arguments: [ req, res ],
|
|
|
|
errorMessage: 'Cannot insert the video video channel with many retries.'
|
|
|
|
}
|
|
|
|
|
|
|
|
const videoChannel = await retryTransactionWrapper(addVideoChannel, options)
|
|
|
|
return res.json({
|
|
|
|
videoChannel: {
|
2018-04-25 03:21:38 -05:00
|
|
|
id: videoChannel.id,
|
|
|
|
uuid: videoChannel.Actor.uuid
|
2018-04-24 10:05:32 -05:00
|
|
|
}
|
|
|
|
}).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
return videoChannelCreated
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updateVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const options = {
|
|
|
|
arguments: [ req, res ],
|
|
|
|
errorMessage: 'Cannot update the video with many retries.'
|
|
|
|
}
|
|
|
|
|
|
|
|
await retryTransactionWrapper(updateVideoChannel, options)
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
if (videoChannelInfoToUpdate.name !== undefined) videoChannelInstance.set('name', videoChannelInfoToUpdate.name)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function removeVideoChannelRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const options = {
|
|
|
|
arguments: [ req, res ],
|
|
|
|
errorMessage: 'Cannot remove the video channel with many retries.'
|
|
|
|
}
|
|
|
|
|
|
|
|
await retryTransactionWrapper(removeVideoChannel, options)
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
|
|
|
}
|
|
|
|
|
|
|
|
async function removeVideoChannel (req: express.Request, res: express.Response) {
|
|
|
|
const videoChannelInstance: VideoChannelModel = res.locals.videoChannel
|
|
|
|
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
|
|
|
await videoChannelInstance.destroy({ transaction: t })
|
|
|
|
|
|
|
|
logger.info('Video channel with name %s and uuid %s deleted.', videoChannelInstance.name, videoChannelInstance.Actor.uuid)
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
hideNSFW: isNSFWHidden(res),
|
|
|
|
withFiles: false,
|
|
|
|
videoChannelId: videoChannelInstance.id
|
|
|
|
})
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
|
|
|
async function listAccountVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2018-04-24 08:10:54 -05:00
|
|
|
const account: AccountModel = res.locals.account
|
|
|
|
|
2018-04-24 10:05:32 -05:00
|
|
|
const resultList = await VideoModel.listForApi({
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
|
|
|
sort: req.query.sort,
|
|
|
|
hideNSFW: isNSFWHidden(res),
|
|
|
|
withFiles: false,
|
|
|
|
accountId: account.id
|
|
|
|
})
|
2018-04-24 08:10:54 -05:00
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|