PeerTube/server/controllers/static.ts

296 lines
9.0 KiB
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as cors from 'cors'
2017-12-14 17:38:41 +01:00
import * as express from 'express'
import {
2019-07-29 16:30:01 +02:00
HLS_STREAMING_PLAYLIST_DIRECTORY,
PEERTUBE_VERSION,
ROUTE_CACHE_LIFETIME,
STATIC_DOWNLOAD_PATHS,
STATIC_MAX_AGE,
2019-04-11 11:33:44 +02:00
STATIC_PATHS,
WEBSERVER
} from '../initializers/constants'
2018-07-24 14:35:11 +02:00
import { cacheRoute } from '../middlewares/cache'
2018-05-29 18:30:11 +02:00
import { asyncMiddleware, videosGetValidator } from '../middlewares'
import { VideoModel } from '../models/video/video'
2018-07-21 23:00:25 +02:00
import { UserModel } from '../models/account/user'
import { VideoCommentModel } from '../models/video/video-comment'
2018-09-04 15:34:11 +02:00
import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../../shared/models/nodeinfo'
2018-09-25 11:13:34 +02:00
import { join } from 'path'
import { root } from '../helpers/core-utils'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../initializers/config'
2019-08-09 11:32:40 +02:00
import { getPreview, getVideoCaption } from './lazy-static'
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'
2017-05-15 22:22:03 +02:00
const staticRouter = express.Router()
2018-07-17 15:04:54 +02:00
staticRouter.use(cors())
2017-05-15 22:22:03 +02:00
/*
2017-11-15 11:00:25 +01:00
Cors is very important to let other servers access torrent and video files
2017-05-15 22:22:03 +02:00
*/
const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR
staticRouter.use(
STATIC_PATHS.TORRENTS,
cors(),
2017-10-17 14:21:18 +02:00
express.static(torrentsPhysicalPath, { maxAge: 0 }) // Don't cache because we could regenerate the torrent file
2017-05-15 22:22:03 +02:00
)
2018-05-29 18:30:11 +02:00
staticRouter.use(
STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+).torrent',
asyncMiddleware(videosGetValidator),
asyncMiddleware(downloadTorrent)
)
staticRouter.use(
STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+)-hls.torrent',
asyncMiddleware(videosGetValidator),
asyncMiddleware(downloadHLSVideoFileTorrent)
)
2017-05-15 22:22:03 +02:00
// Videos path for webseeding
staticRouter.use(
STATIC_PATHS.WEBSEED,
cors(),
2018-12-04 17:08:55 +01:00
express.static(CONFIG.STORAGE.VIDEOS_DIR, { fallthrough: false }) // 404 because we don't have this video
2017-05-15 22:22:03 +02:00
)
2018-12-04 16:02:49 +01:00
staticRouter.use(
2018-12-04 17:08:55 +01:00
STATIC_PATHS.REDUNDANCY,
2018-12-04 16:02:49 +01:00
cors(),
2018-12-04 17:08:55 +01:00
express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }) // 404 because we don't have this video
2018-12-04 16:02:49 +01:00
)
2018-05-29 18:30:11 +02:00
staticRouter.use(
STATIC_DOWNLOAD_PATHS.VIDEOS + ':id-:resolution([0-9]+).:extension',
asyncMiddleware(videosGetValidator),
asyncMiddleware(downloadVideoFile)
)
2017-05-15 22:22:03 +02:00
staticRouter.use(
STATIC_DOWNLOAD_PATHS.HLS_VIDEOS + ':id-:resolution([0-9]+).:extension',
asyncMiddleware(videosGetValidator),
asyncMiddleware(downloadHLSVideoFile)
)
2019-01-29 08:37:25 +01:00
// HLS
staticRouter.use(
STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
2019-01-29 08:37:25 +01:00
cors(),
express.static(HLS_STREAMING_PLAYLIST_DIRECTORY, { fallthrough: false }) // 404 if the file does not exist
2019-01-29 08:37:25 +01:00
)
2017-05-15 22:22:03 +02:00
// Thumbnails path for express
const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
staticRouter.use(
STATIC_PATHS.THUMBNAILS,
2019-07-29 15:20:36 +02:00
express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
2017-05-15 22:22:03 +02:00
)
2019-08-09 11:32:40 +02:00
// DEPRECATED: use lazy-static route instead
2017-12-29 19:10:13 +01:00
const avatarsPhysicalPath = CONFIG.STORAGE.AVATARS_DIR
staticRouter.use(
STATIC_PATHS.AVATARS,
2019-07-29 15:20:36 +02:00
express.static(avatarsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
2017-12-29 19:10:13 +01:00
)
2019-08-09 11:32:40 +02:00
// DEPRECATED: use lazy-static route instead
2017-05-15 22:22:03 +02:00
staticRouter.use(
2017-07-12 11:56:02 +02:00
STATIC_PATHS.PREVIEWS + ':uuid.jpg',
2017-10-25 11:55:06 +02:00
asyncMiddleware(getPreview)
2017-05-15 22:22:03 +02:00
)
2019-08-09 11:32:40 +02:00
// DEPRECATED: use lazy-static route instead
2018-07-12 19:02:00 +02:00
staticRouter.use(
STATIC_PATHS.VIDEO_CAPTIONS + ':videoId-:captionLanguage([a-z]+).vtt',
asyncMiddleware(getVideoCaption)
)
2018-05-15 00:29:40 +02:00
// robots.txt service
2018-07-21 23:00:25 +02:00
staticRouter.get('/robots.txt',
2018-07-24 14:35:11 +02:00
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.ROBOTS)),
2018-07-21 23:00:25 +02:00
(_, res: express.Response) => {
res.type('text/plain')
return res.send(CONFIG.INSTANCE.ROBOTS)
}
)
// security.txt service
staticRouter.get('/security.txt',
(_, res: express.Response) => {
return res.redirect(301, '/.well-known/security.txt')
}
)
staticRouter.get('/.well-known/security.txt',
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.SECURITYTXT)),
(_, res: express.Response) => {
res.type('text/plain')
return res.send(CONFIG.INSTANCE.SECURITYTXT + CONFIG.INSTANCE.SECURITYTXT_CONTACT)
}
)
2018-07-21 23:00:25 +02:00
// nodeinfo service
staticRouter.use('/.well-known/nodeinfo',
2018-07-24 14:35:11 +02:00
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.NODEINFO)),
2018-07-21 23:00:25 +02:00
(_, res: express.Response) => {
return res.json({
links: [
{
rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
2019-04-11 11:33:44 +02:00
href: WEBSERVER.URL + '/nodeinfo/2.0.json'
2018-07-21 23:00:25 +02:00
}
]
})
}
)
staticRouter.use('/nodeinfo/:version.json',
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.NODEINFO)),
2018-07-21 23:00:25 +02:00
asyncMiddleware(generateNodeinfo)
)
2018-05-15 00:29:40 +02:00
// dnt-policy.txt service (see https://www.eff.org/dnt-policy)
staticRouter.use('/.well-known/dnt-policy.txt',
asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.DNT_POLICY)),
(_, res: express.Response) => {
res.type('text/plain')
2018-09-25 11:13:34 +02:00
2018-10-01 13:29:38 +02:00
return res.sendFile(join(root(), 'dist/server/static/dnt-policy/dnt-policy-1.0.txt'))
}
)
// 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-07 01:42:00 +01:00
}
)
staticRouter.use('/.well-known/change-password',
(_, res: express.Response) => {
res.redirect('/my-account/settings')
}
)
staticRouter.use('/.well-known/host-meta',
(_, res: express.Response) => {
res.type('application/xml')
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 22:22:03 +02:00
// ---------------------------------------------------------------------------
export {
staticRouter
}
2017-07-12 11:56:02 +02:00
// ---------------------------------------------------------------------------
2019-05-16 16:55:34 +02:00
async function generateNodeinfo (req: express.Request, res: express.Response) {
2018-07-21 23:00:25 +02: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 10:03:55 +02:00
version: PEERTUBE_VERSION
2018-07-21 23:00:25 +02: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,
nodeDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION
}
} as HttpNodeinfoDiasporaSoftwareNsSchema20
2018-07-24 14:35:11 +02:00
res.contentType('application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.0#"')
2018-07-21 23:00:25 +02:00
} else {
json = { error: 'Nodeinfo schema version not handled' }
res.status(404)
}
2018-07-24 14:35:11 +02:00
return res.send(json).end()
2018-07-21 23:00:25 +02:00
}
2019-08-15 11:53:26 +02:00
async function downloadTorrent (req: express.Request, res: express.Response) {
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`)
}
async function downloadHLSVideoFileTorrent (req: express.Request, res: express.Response) {
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 18:30:11 +02:00
if (!videoFile) return res.status(404).end()
return res.download(getTorrentFilePath(playlist, videoFile), `${video.name}-${videoFile.resolution}p-hls.torrent`)
2018-05-29 18:30:11 +02:00
}
2019-08-15 11:53:26 +02:00
async function downloadVideoFile (req: express.Request, res: express.Response) {
const video = res.locals.videoAll
const videoFile = getVideoFile(req, video.VideoFiles)
2018-05-29 18:30:11 +02:00
if (!videoFile) return res.status(404).end()
return res.download(getVideoFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p${videoFile.extname}`)
2018-05-29 18:30:11 +02:00
}
async function downloadHLSVideoFile (req: express.Request, res: express.Response) {
2019-08-15 11:53:26 +02:00
const video = res.locals.videoAll
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 18:30:11 +02:00
function getHLSPlaylist (video: MVideoFullLight) {
const playlist = video.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
if (!playlist) return undefined
2018-05-29 18:30:11 +02:00
return Object.assign(playlist, { Video: video })
2018-05-29 18:30:11 +02:00
}