2019-07-23 04:40:39 -04:00
|
|
|
import { Response } from 'express'
|
|
|
|
import { fetchVideo, VideoFetchType } from '../video'
|
|
|
|
import { UserRight } from '../../../shared/models/users'
|
|
|
|
import { VideoChannelModel } from '../../models/video/video-channel'
|
2020-02-04 09:00:47 -05:00
|
|
|
import {
|
|
|
|
MUser,
|
|
|
|
MUserAccountId,
|
|
|
|
MVideoAccountLight,
|
|
|
|
MVideoFullLight,
|
|
|
|
MVideoIdThumbnail,
|
|
|
|
MVideoImmutable,
|
|
|
|
MVideoThumbnail,
|
|
|
|
MVideoWithRights
|
2020-06-18 04:45:25 -04:00
|
|
|
} from '@server/types/models'
|
2020-03-10 09:39:40 -04:00
|
|
|
import { VideoFileModel } from '@server/models/video/video-file'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2019-07-23 04:40:39 -04:00
|
|
|
|
|
|
|
async function doesVideoExist (id: number | string, res: Response, fetchType: VideoFetchType = 'all') {
|
|
|
|
const userId = res.locals.oauth ? res.locals.oauth.token.User.id : undefined
|
|
|
|
|
|
|
|
const video = await fetchVideo(id, fetchType, userId)
|
|
|
|
|
|
|
|
if (video === null) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2019-07-23 04:40:39 -04:00
|
|
|
.json({ error: 'Video not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
switch (fetchType) {
|
|
|
|
case 'all':
|
|
|
|
res.locals.videoAll = video as MVideoFullLight
|
|
|
|
break
|
|
|
|
|
2020-02-04 09:00:47 -05:00
|
|
|
case 'only-immutable-attributes':
|
|
|
|
res.locals.onlyImmutableVideo = video as MVideoImmutable
|
|
|
|
break
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
case 'id':
|
2020-02-04 09:00:47 -05:00
|
|
|
res.locals.videoId = video as MVideoIdThumbnail
|
2019-08-15 05:53:26 -04:00
|
|
|
break
|
|
|
|
|
|
|
|
case 'only-video':
|
2019-08-20 07:52:49 -04:00
|
|
|
res.locals.onlyVideo = video as MVideoThumbnail
|
2019-08-15 05:53:26 -04:00
|
|
|
break
|
|
|
|
|
|
|
|
case 'only-video-with-rights':
|
|
|
|
res.locals.onlyVideoWithRights = video as MVideoWithRights
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-07-23 04:40:39 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-03-10 09:39:40 -04:00
|
|
|
async function doesVideoFileOfVideoExist (id: number, videoIdOrUUID: number | string, res: Response) {
|
|
|
|
if (!await VideoFileModel.doesVideoExistForVideoFile(id, videoIdOrUUID)) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404)
|
2020-03-10 09:39:40 -04:00
|
|
|
.json({ error: 'VideoFile matching Video not found' })
|
|
|
|
.end()
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function doesVideoChannelOfAccountExist (channelId: number, user: MUserAccountId, res: Response) {
|
2021-04-06 11:01:35 -04:00
|
|
|
const videoChannel = await VideoChannelModel.loadAndPopulateAccount(channelId)
|
2019-07-23 04:40:39 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
if (videoChannel === null) {
|
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
|
|
|
.json({ error: 'Unknown video "video channel" for this instance.' })
|
2019-07-23 04:40:39 -04:00
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't check account id if the user can update any video
|
|
|
|
if (user.hasRight(UserRight.UPDATE_ANY_VIDEO) === true) {
|
2019-07-23 04:40:39 -04:00
|
|
|
res.locals.videoChannel = videoChannel
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-04-06 11:01:35 -04:00
|
|
|
if (videoChannel.Account.id !== user.Account.id) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.BAD_REQUEST_400)
|
2021-04-06 11:01:35 -04:00
|
|
|
.json({ error: 'Unknown video "video channel" for this account.' })
|
2019-07-23 04:40:39 -04:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.videoChannel = videoChannel
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-11-02 09:43:44 -05:00
|
|
|
function checkUserCanManageVideo (user: MUser, video: MVideoAccountLight, right: UserRight, res: Response, onlyOwned = true) {
|
2019-07-23 04:40:39 -04:00
|
|
|
// Retrieve the user who did the request
|
2020-11-02 09:43:44 -05:00
|
|
|
if (onlyOwned && video.isOwned() === false) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.FORBIDDEN_403)
|
2019-07-23 04:40:39 -04:00
|
|
|
.json({ error: 'Cannot manage a video of another server.' })
|
|
|
|
.end()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user can delete the video
|
|
|
|
// The user can delete it if he has the right
|
|
|
|
// Or if s/he is the video's account
|
|
|
|
const account = video.VideoChannel.Account
|
|
|
|
if (user.hasRight(right) === false && account.userId !== user.id) {
|
2020-12-07 08:32:36 -05:00
|
|
|
res.status(HttpStatusCode.FORBIDDEN_403)
|
2019-07-23 04:40:39 -04:00
|
|
|
.json({ error: 'Cannot manage a video of another user.' })
|
|
|
|
.end()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
doesVideoChannelOfAccountExist,
|
|
|
|
doesVideoExist,
|
2020-03-10 09:39:40 -04:00
|
|
|
doesVideoFileOfVideoExist,
|
2019-07-23 04:40:39 -04:00
|
|
|
checkUserCanManageVideo
|
|
|
|
}
|