2017-06-05 15:53:49 -04:00
|
|
|
import * as cors from 'cors'
|
2017-12-14 11:38:41 -05:00
|
|
|
import * as express from 'express'
|
2019-03-05 06:00:31 -05:00
|
|
|
import {
|
2019-07-29 10:30:01 -04:00
|
|
|
HLS_STREAMING_PLAYLIST_DIRECTORY,
|
|
|
|
PEERTUBE_VERSION,
|
2019-03-05 06:00:31 -05:00
|
|
|
ROUTE_CACHE_LIFETIME,
|
|
|
|
STATIC_DOWNLOAD_PATHS,
|
|
|
|
STATIC_MAX_AGE,
|
2019-04-11 05:33:44 -04:00
|
|
|
STATIC_PATHS,
|
2019-12-17 07:07:50 -05:00
|
|
|
WEBSERVER,
|
|
|
|
CONSTRAINTS_FIELDS,
|
|
|
|
DEFAULT_THEME_NAME
|
2019-04-11 08:26:41 -04:00
|
|
|
} from '../initializers/constants'
|
2018-07-24 08:35:11 -04:00
|
|
|
import { cacheRoute } from '../middlewares/cache'
|
2019-12-03 04:41:23 -05:00
|
|
|
import { asyncMiddleware, videosDownloadValidator } from '../middlewares'
|
2018-05-29 12:30:11 -04:00
|
|
|
import { VideoModel } from '../models/video/video'
|
2018-07-21 17:00:25 -04:00
|
|
|
import { UserModel } from '../models/account/user'
|
|
|
|
import { VideoCommentModel } from '../models/video/video-comment'
|
2018-09-04 09:34:11 -04:00
|
|
|
import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../../shared/models/nodeinfo'
|
2018-09-25 05:13:34 -04:00
|
|
|
import { join } from 'path'
|
|
|
|
import { root } from '../helpers/core-utils'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2019-12-17 07:07:50 -05:00
|
|
|
import { Emailer } from '../lib/emailer'
|
2019-08-09 05:32:40 -04:00
|
|
|
import { getPreview, getVideoCaption } from './lazy-static'
|
2019-11-15 09:06:03 -05:00
|
|
|
import { VideoStreamingPlaylistType } from '@shared/models/videos/video-streaming-playlist.type'
|
|
|
|
import { MVideoFile, MVideoFullLight } from '@server/typings/models'
|
|
|
|
import { getTorrentFilePath, getVideoFilePath } from '@server/lib/video-paths'
|
2019-12-17 07:07:50 -05:00
|
|
|
import { getThemeOrDefault } from '../lib/plugins/theme-utils'
|
|
|
|
import { getEnabledResolutions, getRegisteredPlugins, getRegisteredThemes } from '@server/controllers/api/config'
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
const staticRouter = express.Router()
|
|
|
|
|
2018-07-17 09:04:54 -04:00
|
|
|
staticRouter.use(cors())
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
/*
|
2017-11-15 05:00:25 -05:00
|
|
|
Cors is very important to let other servers access torrent and video files
|
2017-05-15 16:22:03 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR
|
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.TORRENTS,
|
|
|
|
cors(),
|
2017-10-17 08:21:18 -04:00
|
|
|
express.static(torrentsPhysicalPath, { maxAge: 0 }) // Don't cache because we could regenerate the torrent file
|
2017-05-15 16:22:03 -04:00
|
|
|
)
|
2018-05-29 12:30:11 -04:00
|
|
|
staticRouter.use(
|
|
|
|
STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+).torrent',
|
2019-12-03 04:41:23 -05:00
|
|
|
asyncMiddleware(videosDownloadValidator),
|
2020-01-31 10:56:52 -05:00
|
|
|
downloadTorrent
|
2018-05-29 12:30:11 -04:00
|
|
|
)
|
2019-11-15 09:06:03 -05:00
|
|
|
staticRouter.use(
|
|
|
|
STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+)-hls.torrent',
|
2019-12-03 04:41:23 -05:00
|
|
|
asyncMiddleware(videosDownloadValidator),
|
2020-01-31 10:56:52 -05:00
|
|
|
downloadHLSVideoFileTorrent
|
2019-11-15 09:06:03 -05:00
|
|
|
)
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
// Videos path for webseeding
|
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.WEBSEED,
|
|
|
|
cors(),
|
2018-12-04 11:08:55 -05:00
|
|
|
express.static(CONFIG.STORAGE.VIDEOS_DIR, { fallthrough: false }) // 404 because we don't have this video
|
2017-05-15 16:22:03 -04:00
|
|
|
)
|
2018-12-04 10:02:49 -05:00
|
|
|
staticRouter.use(
|
2018-12-04 11:08:55 -05:00
|
|
|
STATIC_PATHS.REDUNDANCY,
|
2018-12-04 10:02:49 -05:00
|
|
|
cors(),
|
2018-12-04 11:08:55 -05:00
|
|
|
express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }) // 404 because we don't have this video
|
2018-12-04 10:02:49 -05:00
|
|
|
)
|
|
|
|
|
2018-05-29 12:30:11 -04:00
|
|
|
staticRouter.use(
|
|
|
|
STATIC_DOWNLOAD_PATHS.VIDEOS + ':id-:resolution([0-9]+).:extension',
|
2019-12-03 04:41:23 -05:00
|
|
|
asyncMiddleware(videosDownloadValidator),
|
2020-01-31 10:56:52 -05:00
|
|
|
downloadVideoFile
|
2018-05-29 12:30:11 -04:00
|
|
|
)
|
2017-05-15 16:22:03 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
staticRouter.use(
|
2019-11-22 11:27:46 -05:00
|
|
|
STATIC_DOWNLOAD_PATHS.HLS_VIDEOS + ':id-:resolution([0-9]+)-fragmented.:extension',
|
2019-12-03 04:41:23 -05:00
|
|
|
asyncMiddleware(videosDownloadValidator),
|
2020-01-31 10:56:52 -05:00
|
|
|
downloadHLSVideoFile
|
2019-11-15 09:06:03 -05:00
|
|
|
)
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
// HLS
|
|
|
|
staticRouter.use(
|
2019-03-05 06:00:31 -05:00
|
|
|
STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
|
2019-01-29 02:37:25 -05:00
|
|
|
cors(),
|
2019-03-05 06:00:31 -05:00
|
|
|
express.static(HLS_STREAMING_PLAYLIST_DIRECTORY, { fallthrough: false }) // 404 if the file does not exist
|
2019-01-29 02:37:25 -05:00
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
// Thumbnails path for express
|
|
|
|
const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
|
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.THUMBNAILS,
|
2019-07-29 09:20:36 -04:00
|
|
|
express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
|
2017-05-15 16:22:03 -04:00
|
|
|
)
|
|
|
|
|
2019-08-09 05:32:40 -04:00
|
|
|
// DEPRECATED: use lazy-static route instead
|
2017-12-29 13:10:13 -05:00
|
|
|
const avatarsPhysicalPath = CONFIG.STORAGE.AVATARS_DIR
|
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.AVATARS,
|
2019-07-29 09:20:36 -04:00
|
|
|
express.static(avatarsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
|
2017-12-29 13:10:13 -05:00
|
|
|
)
|
|
|
|
|
2019-08-09 05:32:40 -04:00
|
|
|
// DEPRECATED: use lazy-static route instead
|
2017-05-15 16:22:03 -04:00
|
|
|
staticRouter.use(
|
2017-07-12 05:56:02 -04:00
|
|
|
STATIC_PATHS.PREVIEWS + ':uuid.jpg',
|
2017-10-25 05:55:06 -04:00
|
|
|
asyncMiddleware(getPreview)
|
2017-05-15 16:22:03 -04:00
|
|
|
)
|
|
|
|
|
2019-08-09 05:32:40 -04:00
|
|
|
// DEPRECATED: use lazy-static route instead
|
2018-07-12 13:02:00 -04:00
|
|
|
staticRouter.use(
|
|
|
|
STATIC_PATHS.VIDEO_CAPTIONS + ':videoId-:captionLanguage([a-z]+).vtt',
|
|
|
|
asyncMiddleware(getVideoCaption)
|
|
|
|
)
|
|
|
|
|
2018-05-14 18:29:40 -04:00
|
|
|
// robots.txt service
|
2018-07-21 17:00:25 -04:00
|
|
|
staticRouter.get('/robots.txt',
|
2020-01-09 10:51:51 -05:00
|
|
|
asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.ROBOTS)),
|
2018-07-21 17:00:25 -04:00
|
|
|
(_, res: express.Response) => {
|
|
|
|
res.type('text/plain')
|
|
|
|
return res.send(CONFIG.INSTANCE.ROBOTS)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-09-06 08:23:46 -04:00
|
|
|
// security.txt service
|
|
|
|
staticRouter.get('/security.txt',
|
|
|
|
(_, res: express.Response) => {
|
|
|
|
return res.redirect(301, '/.well-known/security.txt')
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
staticRouter.get('/.well-known/security.txt',
|
2020-01-09 10:51:51 -05:00
|
|
|
asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.SECURITYTXT)),
|
2018-09-06 08:23:46 -04:00
|
|
|
(_, res: express.Response) => {
|
|
|
|
res.type('text/plain')
|
|
|
|
return res.send(CONFIG.INSTANCE.SECURITYTXT + CONFIG.INSTANCE.SECURITYTXT_CONTACT)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-07-21 17:00:25 -04:00
|
|
|
// nodeinfo service
|
|
|
|
staticRouter.use('/.well-known/nodeinfo',
|
2020-01-09 10:51:51 -05:00
|
|
|
asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.NODEINFO)),
|
2018-07-21 17:00:25 -04:00
|
|
|
(_, res: express.Response) => {
|
|
|
|
return res.json({
|
|
|
|
links: [
|
|
|
|
{
|
|
|
|
rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
|
2019-04-11 05:33:44 -04:00
|
|
|
href: WEBSERVER.URL + '/nodeinfo/2.0.json'
|
2018-07-21 17:00:25 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
staticRouter.use('/nodeinfo/:version.json',
|
2020-01-09 10:51:51 -05:00
|
|
|
asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.NODEINFO)),
|
2018-07-21 17:00:25 -04:00
|
|
|
asyncMiddleware(generateNodeinfo)
|
|
|
|
)
|
2018-05-14 18:29:40 -04:00
|
|
|
|
2018-08-02 20:02:01 -04:00
|
|
|
// dnt-policy.txt service (see https://www.eff.org/dnt-policy)
|
|
|
|
staticRouter.use('/.well-known/dnt-policy.txt',
|
2020-01-09 10:51:51 -05:00
|
|
|
asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.DNT_POLICY)),
|
2018-08-02 20:02:01 -04:00
|
|
|
(_, res: express.Response) => {
|
|
|
|
res.type('text/plain')
|
2018-09-25 05:13:34 -04:00
|
|
|
|
2018-10-01 07:29:38 -04:00
|
|
|
return res.sendFile(join(root(), 'dist/server/static/dnt-policy/dnt-policy-1.0.txt'))
|
2018-08-02 20:02:01 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// dnt service (see https://www.w3.org/TR/tracking-dnt/#status-resource)
|
|
|
|
staticRouter.use('/.well-known/dnt/',
|
|
|
|
(_, res: express.Response) => {
|
|
|
|
res.json({ tracking: 'N' })
|
2018-12-06 19:42:00 -05:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
staticRouter.use('/.well-known/change-password',
|
|
|
|
(_, res: express.Response) => {
|
|
|
|
res.redirect('/my-account/settings')
|
2018-08-02 20:02:01 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2019-06-07 04:56:59 -04:00
|
|
|
staticRouter.use('/.well-known/host-meta',
|
|
|
|
(_, res: express.Response) => {
|
2019-06-07 08:34:11 -04:00
|
|
|
res.type('application/xml')
|
2019-06-07 04:56:59 -04:00
|
|
|
|
|
|
|
const xml = '<?xml version="1.0" encoding="UTF-8"?>\n' +
|
|
|
|
'<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">\n' +
|
|
|
|
` <Link rel="lrdd" type="application/xrd+xml" template="${WEBSERVER.URL}/.well-known/webfinger?resource={uri}"/>\n` +
|
|
|
|
'</XRD>'
|
|
|
|
|
|
|
|
res.send(xml).end()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
staticRouter
|
|
|
|
}
|
2017-07-12 05:56:02 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
async function generateNodeinfo (req: express.Request, res: express.Response) {
|
2018-07-21 17:00:25 -04:00
|
|
|
const { totalVideos } = await VideoModel.getStats()
|
|
|
|
const { totalLocalVideoComments } = await VideoCommentModel.getStats()
|
|
|
|
const { totalUsers } = await UserModel.getStats()
|
|
|
|
let json = {}
|
|
|
|
|
|
|
|
if (req.params.version && (req.params.version === '2.0')) {
|
|
|
|
json = {
|
|
|
|
version: '2.0',
|
|
|
|
software: {
|
|
|
|
name: 'peertube',
|
2019-07-17 04:03:55 -04:00
|
|
|
version: PEERTUBE_VERSION
|
2018-07-21 17:00:25 -04:00
|
|
|
},
|
|
|
|
protocols: [
|
|
|
|
'activitypub'
|
|
|
|
],
|
|
|
|
services: {
|
|
|
|
inbound: [],
|
|
|
|
outbound: [
|
|
|
|
'atom1.0',
|
|
|
|
'rss2.0'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
openRegistrations: CONFIG.SIGNUP.ENABLED,
|
|
|
|
usage: {
|
|
|
|
users: {
|
|
|
|
total: totalUsers
|
|
|
|
},
|
|
|
|
localPosts: totalVideos,
|
|
|
|
localComments: totalLocalVideoComments
|
|
|
|
},
|
|
|
|
metadata: {
|
|
|
|
taxonomy: {
|
|
|
|
postsName: 'Videos'
|
|
|
|
},
|
|
|
|
nodeName: CONFIG.INSTANCE.NAME,
|
2019-12-17 07:07:50 -05:00
|
|
|
nodeDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION,
|
|
|
|
nodeConfig: {
|
|
|
|
plugin: {
|
|
|
|
registered: getRegisteredPlugins()
|
|
|
|
},
|
|
|
|
theme: {
|
|
|
|
registered: getRegisteredThemes(),
|
|
|
|
default: getThemeOrDefault(CONFIG.THEME.DEFAULT, DEFAULT_THEME_NAME)
|
|
|
|
},
|
|
|
|
email: {
|
|
|
|
enabled: Emailer.isEnabled()
|
|
|
|
},
|
|
|
|
contactForm: {
|
|
|
|
enabled: CONFIG.CONTACT_FORM.ENABLED
|
|
|
|
},
|
|
|
|
transcoding: {
|
|
|
|
hls: {
|
|
|
|
enabled: CONFIG.TRANSCODING.HLS.ENABLED
|
|
|
|
},
|
|
|
|
webtorrent: {
|
|
|
|
enabled: CONFIG.TRANSCODING.WEBTORRENT.ENABLED
|
|
|
|
},
|
|
|
|
enabledResolutions: getEnabledResolutions()
|
|
|
|
},
|
|
|
|
import: {
|
|
|
|
videos: {
|
|
|
|
http: {
|
|
|
|
enabled: CONFIG.IMPORT.VIDEOS.HTTP.ENABLED
|
|
|
|
},
|
|
|
|
torrent: {
|
|
|
|
enabled: CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
autoBlacklist: {
|
|
|
|
videos: {
|
|
|
|
ofUsers: {
|
|
|
|
enabled: CONFIG.AUTO_BLACKLIST.VIDEOS.OF_USERS.ENABLED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
avatar: {
|
|
|
|
file: {
|
|
|
|
size: {
|
|
|
|
max: CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max
|
|
|
|
},
|
|
|
|
extensions: CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME
|
|
|
|
}
|
|
|
|
},
|
|
|
|
video: {
|
|
|
|
image: {
|
|
|
|
extensions: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME,
|
|
|
|
size: {
|
|
|
|
max: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max
|
|
|
|
}
|
|
|
|
},
|
|
|
|
file: {
|
|
|
|
extensions: CONSTRAINTS_FIELDS.VIDEOS.EXTNAME
|
|
|
|
}
|
|
|
|
},
|
|
|
|
videoCaption: {
|
|
|
|
file: {
|
|
|
|
size: {
|
|
|
|
max: CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max
|
|
|
|
},
|
|
|
|
extensions: CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.EXTNAME
|
|
|
|
}
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
videoQuota: CONFIG.USER.VIDEO_QUOTA,
|
|
|
|
videoQuotaDaily: CONFIG.USER.VIDEO_QUOTA_DAILY
|
|
|
|
},
|
|
|
|
trending: {
|
|
|
|
videos: {
|
|
|
|
intervalDays: CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tracker: {
|
|
|
|
enabled: CONFIG.TRACKER.ENABLED
|
|
|
|
}
|
|
|
|
}
|
2018-07-21 17:00:25 -04:00
|
|
|
}
|
|
|
|
} as HttpNodeinfoDiasporaSoftwareNsSchema20
|
2018-07-24 08:35:11 -04:00
|
|
|
res.contentType('application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.0#"')
|
2018-07-21 17:00:25 -04:00
|
|
|
} else {
|
|
|
|
json = { error: 'Nodeinfo schema version not handled' }
|
|
|
|
res.status(404)
|
|
|
|
}
|
|
|
|
|
2018-07-24 08:35:11 -04:00
|
|
|
return res.send(json).end()
|
2018-07-21 17:00:25 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
function downloadTorrent (req: express.Request, res: express.Response) {
|
2019-11-15 09:06:03 -05:00
|
|
|
const video = res.locals.videoAll
|
|
|
|
|
|
|
|
const videoFile = getVideoFile(req, video.VideoFiles)
|
|
|
|
if (!videoFile) return res.status(404).end()
|
|
|
|
|
|
|
|
return res.download(getTorrentFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p.torrent`)
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
function downloadHLSVideoFileTorrent (req: express.Request, res: express.Response) {
|
2019-11-15 09:06:03 -05:00
|
|
|
const video = res.locals.videoAll
|
|
|
|
|
|
|
|
const playlist = getHLSPlaylist(video)
|
|
|
|
if (!playlist) return res.status(404).end
|
|
|
|
|
|
|
|
const videoFile = getVideoFile(req, playlist.VideoFiles)
|
2018-05-29 12:30:11 -04:00
|
|
|
if (!videoFile) return res.status(404).end()
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
return res.download(getTorrentFilePath(playlist, videoFile), `${video.name}-${videoFile.resolution}p-hls.torrent`)
|
2018-05-29 12:30:11 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
function downloadVideoFile (req: express.Request, res: express.Response) {
|
2019-11-15 09:06:03 -05:00
|
|
|
const video = res.locals.videoAll
|
|
|
|
|
|
|
|
const videoFile = getVideoFile(req, video.VideoFiles)
|
2018-05-29 12:30:11 -04:00
|
|
|
if (!videoFile) return res.status(404).end()
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
return res.download(getVideoFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p${videoFile.extname}`)
|
2018-05-29 12:30:11 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
function downloadHLSVideoFile (req: express.Request, res: express.Response) {
|
2019-08-15 05:53:26 -04:00
|
|
|
const video = res.locals.videoAll
|
2019-11-15 09:06:03 -05:00
|
|
|
const playlist = getHLSPlaylist(video)
|
|
|
|
if (!playlist) return res.status(404).end
|
|
|
|
|
|
|
|
const videoFile = getVideoFile(req, playlist.VideoFiles)
|
|
|
|
if (!videoFile) return res.status(404).end()
|
|
|
|
|
|
|
|
const filename = `${video.name}-${videoFile.resolution}p-${playlist.getStringType()}${videoFile.extname}`
|
|
|
|
return res.download(getVideoFilePath(playlist, videoFile), filename)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVideoFile (req: express.Request, files: MVideoFile[]) {
|
|
|
|
const resolution = parseInt(req.params.resolution, 10)
|
|
|
|
return files.find(f => f.resolution === resolution)
|
|
|
|
}
|
2018-05-29 12:30:11 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
function getHLSPlaylist (video: MVideoFullLight) {
|
|
|
|
const playlist = video.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
|
|
|
|
if (!playlist) return undefined
|
2018-05-29 12:30:11 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
return Object.assign(playlist, { Video: video })
|
2018-05-29 12:30:11 -04:00
|
|
|
}
|