2019-08-15 11:53:26 +02:00
|
|
|
import { Response } from 'express'
|
2020-07-01 16:05:30 +02:00
|
|
|
import { AbuseModel } from '../../models/abuse/abuse'
|
2020-04-16 14:22:27 +02:00
|
|
|
import { fetchVideo } from '../video'
|
2019-07-23 10:40:39 +02:00
|
|
|
|
2020-07-01 16:05:30 +02:00
|
|
|
// FIXME: deprecated in 2.3. Remove this function
|
2020-04-16 14:22:27 +02:00
|
|
|
async function doesVideoAbuseExist (abuseIdArg: number | string, videoUUID: string, res: Response) {
|
2019-10-21 14:50:55 +02:00
|
|
|
const abuseId = parseInt(abuseIdArg + '', 10)
|
2020-07-01 16:05:30 +02:00
|
|
|
let abuse = await AbuseModel.loadByIdAndVideoId(abuseId, null, videoUUID)
|
2020-04-16 14:22:27 +02:00
|
|
|
|
2020-07-01 16:05:30 +02:00
|
|
|
if (!abuse) {
|
2020-04-20 11:20:12 +02:00
|
|
|
const userId = res.locals.oauth?.token.User.id
|
2020-04-16 14:22:27 +02:00
|
|
|
const video = await fetchVideo(videoUUID, 'all', userId)
|
|
|
|
|
2020-07-01 16:05:30 +02:00
|
|
|
if (video) abuse = await AbuseModel.loadByIdAndVideoId(abuseId, video.id)
|
2020-04-16 14:22:27 +02:00
|
|
|
}
|
2019-07-23 10:40:39 +02:00
|
|
|
|
2020-07-01 16:05:30 +02:00
|
|
|
if (abuse === null) {
|
2019-07-23 10:40:39 +02:00
|
|
|
res.status(404)
|
2019-08-15 11:53:26 +02:00
|
|
|
.json({ error: 'Video abuse not found' })
|
2019-07-23 10:40:39 +02:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-07-01 16:05:30 +02:00
|
|
|
res.locals.abuse = abuse
|
2019-07-23 10:40:39 +02:00
|
|
|
return true
|
|
|
|
}
|
2019-08-15 11:53:26 +02:00
|
|
|
|
2020-07-07 10:57:04 +02:00
|
|
|
async function doesAbuseExist (abuseId: number | string, res: Response) {
|
2020-07-27 11:40:30 +02:00
|
|
|
const abuse = await AbuseModel.loadByIdWithReporter(parseInt(abuseId + '', 10))
|
2020-07-01 16:05:30 +02:00
|
|
|
|
2020-07-07 10:57:04 +02:00
|
|
|
if (!abuse) {
|
|
|
|
res.status(404)
|
2020-07-08 15:51:46 +02:00
|
|
|
.json({ error: 'Abuse not found' })
|
2020-07-07 10:57:04 +02:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.abuse = abuse
|
|
|
|
return true
|
2020-07-01 16:05:30 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-07-01 16:05:30 +02:00
|
|
|
doesAbuseExist,
|
2019-08-15 11:53:26 +02:00
|
|
|
doesVideoAbuseExist
|
|
|
|
}
|