2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2019-07-25 10:23:44 -04:00
|
|
|
import { param, query } from 'express-validator'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
|
2018-04-16 18:49:04 -04:00
|
|
|
import { isValidRSSFeed } from '../../helpers/custom-validators/feeds'
|
2021-06-28 11:30:59 -04:00
|
|
|
import { exists, isIdOrUUIDValid, isIdValid, toCompleteUUID } from '../../helpers/custom-validators/misc'
|
2020-11-25 05:04:18 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2019-07-23 04:40:39 -04:00
|
|
|
import {
|
2021-06-03 11:33:44 -04:00
|
|
|
areValidationErrors,
|
2019-07-23 04:40:39 -04:00
|
|
|
doesAccountIdExist,
|
|
|
|
doesAccountNameWithHostExist,
|
2020-11-25 05:04:18 -05:00
|
|
|
doesUserFeedTokenCorrespond,
|
2019-07-23 04:40:39 -04:00
|
|
|
doesVideoChannelIdExist,
|
2021-06-03 11:33:44 -04:00
|
|
|
doesVideoChannelNameWithHostExist,
|
|
|
|
doesVideoExist
|
|
|
|
} from './shared'
|
2018-04-16 18:49:04 -04:00
|
|
|
|
2020-01-09 10:51:51 -05:00
|
|
|
const feedsFormatValidator = [
|
2018-04-16 18:49:04 -04:00
|
|
|
param('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)'),
|
2020-01-09 10:51:51 -05:00
|
|
|
query('format').optional().custom(isValidRSSFeed).withMessage('Should have a valid format (rss, atom, json)')
|
|
|
|
]
|
|
|
|
|
|
|
|
function setFeedFormatContentType (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const format = req.query.format || req.params.format || 'rss'
|
|
|
|
|
|
|
|
let acceptableContentTypes: string[]
|
|
|
|
if (format === 'atom' || format === 'atom1') {
|
2020-01-31 10:56:52 -05:00
|
|
|
acceptableContentTypes = [ 'application/atom+xml', 'application/xml', 'text/xml' ]
|
2020-01-09 10:51:51 -05:00
|
|
|
} else if (format === 'json' || format === 'json1') {
|
2020-01-31 10:56:52 -05:00
|
|
|
acceptableContentTypes = [ 'application/json' ]
|
2020-01-09 10:51:51 -05:00
|
|
|
} else if (format === 'rss' || format === 'rss2') {
|
2020-01-31 10:56:52 -05:00
|
|
|
acceptableContentTypes = [ 'application/rss+xml', 'application/xml', 'text/xml' ]
|
2020-01-09 10:51:51 -05:00
|
|
|
} else {
|
2020-01-31 10:56:52 -05:00
|
|
|
acceptableContentTypes = [ 'application/xml', 'text/xml' ]
|
2020-01-09 10:51:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (req.accepts(acceptableContentTypes)) {
|
|
|
|
res.set('Content-Type', req.accepts(acceptableContentTypes) as string)
|
|
|
|
} else {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_ACCEPTABLE_406,
|
|
|
|
message: `You should accept at least one of the following content-types: ${acceptableContentTypes.join(', ')}`
|
|
|
|
})
|
2020-01-09 10:51:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
|
|
|
const videoFeedsValidator = [
|
2020-11-25 05:04:18 -05:00
|
|
|
query('accountId')
|
|
|
|
.optional()
|
|
|
|
.custom(isIdValid)
|
|
|
|
.withMessage('Should have a valid account id'),
|
|
|
|
|
|
|
|
query('accountName')
|
|
|
|
.optional(),
|
|
|
|
|
|
|
|
query('videoChannelId')
|
|
|
|
.optional()
|
|
|
|
.custom(isIdValid)
|
|
|
|
.withMessage('Should have a valid channel id'),
|
|
|
|
|
|
|
|
query('videoChannelName')
|
|
|
|
.optional(),
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking feeds parameters', { parameters: req.query })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (req.query.accountId && !await doesAccountIdExist(req.query.accountId, res)) return
|
|
|
|
if (req.query.videoChannelId && !await doesVideoChannelIdExist(req.query.videoChannelId, res)) return
|
|
|
|
if (req.query.accountName && !await doesAccountNameWithHostExist(req.query.accountName, res)) return
|
|
|
|
if (req.query.videoChannelName && !await doesVideoChannelNameWithHostExist(req.query.videoChannelName, res)) return
|
2018-04-16 18:49:04 -04:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-11-25 05:04:18 -05:00
|
|
|
const videoSubscriptionFeedsValidator = [
|
|
|
|
query('accountId')
|
|
|
|
.custom(isIdValid)
|
|
|
|
.withMessage('Should have a valid account id'),
|
|
|
|
|
|
|
|
query('token')
|
|
|
|
.custom(exists)
|
|
|
|
.withMessage('Should have a token'),
|
2020-08-13 09:07:23 -04:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
2020-11-25 05:04:18 -05:00
|
|
|
logger.debug('Checking subscription feeds parameters', { parameters: req.query })
|
2020-08-13 09:07:23 -04:00
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2020-11-25 05:04:18 -05:00
|
|
|
if (!await doesAccountIdExist(req.query.accountId, res)) return
|
|
|
|
if (!await doesUserFeedTokenCorrespond(res.locals.account.userId, req.query.token, res)) return
|
2020-08-13 09:07:23 -04:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-06-08 14:34:37 -04:00
|
|
|
const videoCommentsFeedsValidator = [
|
2021-06-28 11:30:59 -04:00
|
|
|
query('videoId')
|
|
|
|
.customSanitizer(toCompleteUUID)
|
|
|
|
.optional()
|
|
|
|
.custom(isIdOrUUIDValid),
|
2018-06-08 14:34:37 -04:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
logger.debug('Checking feeds parameters', { parameters: req.query })
|
|
|
|
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2020-06-27 07:12:30 -04:00
|
|
|
if (req.query.videoId && (req.query.videoChannelId || req.query.videoChannelName)) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({ message: 'videoId cannot be mixed with a channel filter' })
|
2020-06-27 07:12:30 -04:00
|
|
|
}
|
|
|
|
|
2019-03-19 04:26:50 -04:00
|
|
|
if (req.query.videoId && !await doesVideoExist(req.query.videoId, res)) return
|
2018-06-08 14:34:37 -04:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2018-04-16 18:49:04 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-01-09 10:51:51 -05:00
|
|
|
feedsFormatValidator,
|
|
|
|
setFeedFormatContentType,
|
2018-06-08 14:34:37 -04:00
|
|
|
videoFeedsValidator,
|
2020-11-25 05:04:18 -05:00
|
|
|
videoSubscriptionFeedsValidator,
|
2018-06-08 14:34:37 -04:00
|
|
|
videoCommentsFeedsValidator
|
2018-04-16 18:49:04 -04:00
|
|
|
}
|