diff options
Diffstat (limited to 'server/middlewares/validators/shared/video-channels.ts')
-rw-r--r-- | server/middlewares/validators/shared/video-channels.ts | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/server/middlewares/validators/shared/video-channels.ts b/server/middlewares/validators/shared/video-channels.ts deleted file mode 100644 index bed9f5dbe..000000000 --- a/server/middlewares/validators/shared/video-channels.ts +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | import express from 'express' | ||
2 | import { VideoChannelModel } from '@server/models/video/video-channel' | ||
3 | import { MChannelBannerAccountDefault } from '@server/types/models' | ||
4 | import { HttpStatusCode } from '@shared/models' | ||
5 | |||
6 | async function doesVideoChannelIdExist (id: number, res: express.Response) { | ||
7 | const videoChannel = await VideoChannelModel.loadAndPopulateAccount(+id) | ||
8 | |||
9 | return processVideoChannelExist(videoChannel, res) | ||
10 | } | ||
11 | |||
12 | async function doesVideoChannelNameWithHostExist (nameWithDomain: string, res: express.Response) { | ||
13 | const videoChannel = await VideoChannelModel.loadByNameWithHostAndPopulateAccount(nameWithDomain) | ||
14 | |||
15 | return processVideoChannelExist(videoChannel, res) | ||
16 | } | ||
17 | |||
18 | // --------------------------------------------------------------------------- | ||
19 | |||
20 | export { | ||
21 | doesVideoChannelIdExist, | ||
22 | doesVideoChannelNameWithHostExist | ||
23 | } | ||
24 | |||
25 | function processVideoChannelExist (videoChannel: MChannelBannerAccountDefault, res: express.Response) { | ||
26 | if (!videoChannel) { | ||
27 | res.fail({ | ||
28 | status: HttpStatusCode.NOT_FOUND_404, | ||
29 | message: 'Video channel not found' | ||
30 | }) | ||
31 | return false | ||
32 | } | ||
33 | |||
34 | res.locals.videoChannel = videoChannel | ||
35 | return true | ||
36 | } | ||