aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/middlewares/video-playlists.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/helpers/middlewares/video-playlists.ts')
-rw-r--r--server/helpers/middlewares/video-playlists.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/server/helpers/middlewares/video-playlists.ts b/server/helpers/middlewares/video-playlists.ts
new file mode 100644
index 000000000..735bf362f
--- /dev/null
+++ b/server/helpers/middlewares/video-playlists.ts
@@ -0,0 +1,25 @@
1import * as express from 'express'
2import { VideoPlaylistModel } from '../../models/video/video-playlist'
3
4async function doesVideoPlaylistExist (id: number | string, res: express.Response, fetchType: 'summary' | 'all' = 'summary') {
5 const videoPlaylist = fetchType === 'summary'
6 ? await VideoPlaylistModel.loadWithAccountAndChannelSummary(id, undefined)
7 : await VideoPlaylistModel.loadWithAccountAndChannel(id, undefined)
8
9 if (!videoPlaylist) {
10 res.status(404)
11 .json({ error: 'Video playlist not found' })
12 .end()
13
14 return false
15 }
16
17 res.locals.videoPlaylist = videoPlaylist
18 return true
19}
20
21// ---------------------------------------------------------------------------
22
23export {
24 doesVideoPlaylistExist
25}