]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/static.ts
Downsample to the closest divisor standard framerate
[github/Chocobozzz/PeerTube.git] / server / controllers / static.ts
CommitLineData
4d4e5cd4 1import * as cors from 'cors'
50d6de9c 2import * as express from 'express'
9c6ca37f 3import {
34dd7cb4
C
4 HLS_STREAMING_PLAYLIST_DIRECTORY,
5 PEERTUBE_VERSION,
9c6ca37f
C
6 ROUTE_CACHE_LIFETIME,
7 STATIC_DOWNLOAD_PATHS,
8 STATIC_MAX_AGE,
6dd9de95 9 STATIC_PATHS,
174e0855
RK
10 WEBSERVER,
11 CONSTRAINTS_FIELDS,
12 DEFAULT_THEME_NAME
74dc3bca 13} from '../initializers/constants'
98d3324d 14import { cacheRoute } from '../middlewares/cache'
eccf70f0 15import { asyncMiddleware, videosDownloadValidator } from '../middlewares'
02756fbd 16import { VideoModel } from '../models/video/video'
3f6d68d9
RK
17import { UserModel } from '../models/account/user'
18import { VideoCommentModel } from '../models/video/video-comment'
c75937d0 19import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../../shared/models/nodeinfo'
aac0118d
C
20import { join } from 'path'
21import { root } from '../helpers/core-utils'
6dd9de95 22import { CONFIG } from '../initializers/config'
174e0855 23import { Emailer } from '../lib/emailer'
557b13ae 24import { getPreview, getVideoCaption } from './lazy-static'
d7a25329
C
25import { VideoStreamingPlaylistType } from '@shared/models/videos/video-streaming-playlist.type'
26import { MVideoFile, MVideoFullLight } from '@server/typings/models'
27import { getTorrentFilePath, getVideoFilePath } from '@server/lib/video-paths'
174e0855
RK
28import { getThemeOrDefault } from '../lib/plugins/theme-utils'
29import { getEnabledResolutions, getRegisteredPlugins, getRegisteredThemes } from '@server/controllers/api/config'
65fcc311
C
30
31const staticRouter = express.Router()
32
62945f06
C
33staticRouter.use(cors())
34
65fcc311 35/*
60862425 36 Cors is very important to let other servers access torrent and video files
65fcc311
C
37*/
38
39const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR
40staticRouter.use(
41 STATIC_PATHS.TORRENTS,
42 cors(),
49379960 43 express.static(torrentsPhysicalPath, { maxAge: 0 }) // Don't cache because we could regenerate the torrent file
65fcc311 44)
02756fbd
C
45staticRouter.use(
46 STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+).torrent',
eccf70f0 47 asyncMiddleware(videosDownloadValidator),
02756fbd
C
48 asyncMiddleware(downloadTorrent)
49)
d7a25329
C
50staticRouter.use(
51 STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+)-hls.torrent',
eccf70f0 52 asyncMiddleware(videosDownloadValidator),
d7a25329
C
53 asyncMiddleware(downloadHLSVideoFileTorrent)
54)
65fcc311
C
55
56// Videos path for webseeding
65fcc311
C
57staticRouter.use(
58 STATIC_PATHS.WEBSEED,
59 cors(),
b9fffa29 60 express.static(CONFIG.STORAGE.VIDEOS_DIR, { fallthrough: false }) // 404 because we don't have this video
65fcc311 61)
6040f87d 62staticRouter.use(
b9fffa29 63 STATIC_PATHS.REDUNDANCY,
6040f87d 64 cors(),
b9fffa29 65 express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }) // 404 because we don't have this video
6040f87d
C
66)
67
02756fbd
C
68staticRouter.use(
69 STATIC_DOWNLOAD_PATHS.VIDEOS + ':id-:resolution([0-9]+).:extension',
eccf70f0 70 asyncMiddleware(videosDownloadValidator),
02756fbd
C
71 asyncMiddleware(downloadVideoFile)
72)
65fcc311 73
d7a25329 74staticRouter.use(
efcd6f2e 75 STATIC_DOWNLOAD_PATHS.HLS_VIDEOS + ':id-:resolution([0-9]+)-fragmented.:extension',
eccf70f0 76 asyncMiddleware(videosDownloadValidator),
d7a25329
C
77 asyncMiddleware(downloadHLSVideoFile)
78)
79
09209296
C
80// HLS
81staticRouter.use(
9c6ca37f 82 STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
09209296 83 cors(),
9c6ca37f 84 express.static(HLS_STREAMING_PLAYLIST_DIRECTORY, { fallthrough: false }) // 404 if the file does not exist
09209296
C
85)
86
65fcc311
C
87// Thumbnails path for express
88const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
89staticRouter.use(
90 STATIC_PATHS.THUMBNAILS,
cd4cb177 91 express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
65fcc311
C
92)
93
557b13ae 94// DEPRECATED: use lazy-static route instead
c5911fd3
C
95const avatarsPhysicalPath = CONFIG.STORAGE.AVATARS_DIR
96staticRouter.use(
97 STATIC_PATHS.AVATARS,
cd4cb177 98 express.static(avatarsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
c5911fd3
C
99)
100
557b13ae 101// DEPRECATED: use lazy-static route instead
65fcc311 102staticRouter.use(
f981dae8 103 STATIC_PATHS.PREVIEWS + ':uuid.jpg',
eb080476 104 asyncMiddleware(getPreview)
65fcc311
C
105)
106
557b13ae 107// DEPRECATED: use lazy-static route instead
40e87e9e
C
108staticRouter.use(
109 STATIC_PATHS.VIDEO_CAPTIONS + ':videoId-:captionLanguage([a-z]+).vtt',
110 asyncMiddleware(getVideoCaption)
111)
112
ac235c37 113// robots.txt service
3f6d68d9 114staticRouter.get('/robots.txt',
f2f0eda5 115 asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.ROBOTS)),
3f6d68d9
RK
116 (_, res: express.Response) => {
117 res.type('text/plain')
118 return res.send(CONFIG.INSTANCE.ROBOTS)
119 }
120)
121
5447516b
AH
122// security.txt service
123staticRouter.get('/security.txt',
124 (_, res: express.Response) => {
125 return res.redirect(301, '/.well-known/security.txt')
126 }
127)
128
129staticRouter.get('/.well-known/security.txt',
f2f0eda5 130 asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.SECURITYTXT)),
5447516b
AH
131 (_, res: express.Response) => {
132 res.type('text/plain')
133 return res.send(CONFIG.INSTANCE.SECURITYTXT + CONFIG.INSTANCE.SECURITYTXT_CONTACT)
134 }
135)
136
3f6d68d9
RK
137// nodeinfo service
138staticRouter.use('/.well-known/nodeinfo',
f2f0eda5 139 asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.NODEINFO)),
3f6d68d9
RK
140 (_, res: express.Response) => {
141 return res.json({
142 links: [
143 {
144 rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
6dd9de95 145 href: WEBSERVER.URL + '/nodeinfo/2.0.json'
3f6d68d9
RK
146 }
147 ]
148 })
149 }
150)
151staticRouter.use('/nodeinfo/:version.json',
f2f0eda5 152 asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.NODEINFO)),
3f6d68d9
RK
153 asyncMiddleware(generateNodeinfo)
154)
ac235c37 155
aad0ec24
RK
156// dnt-policy.txt service (see https://www.eff.org/dnt-policy)
157staticRouter.use('/.well-known/dnt-policy.txt',
f2f0eda5 158 asyncMiddleware(cacheRoute()(ROUTE_CACHE_LIFETIME.DNT_POLICY)),
aad0ec24
RK
159 (_, res: express.Response) => {
160 res.type('text/plain')
aac0118d 161
d1105b97 162 return res.sendFile(join(root(), 'dist/server/static/dnt-policy/dnt-policy-1.0.txt'))
aad0ec24
RK
163 }
164)
165
166// dnt service (see https://www.w3.org/TR/tracking-dnt/#status-resource)
167staticRouter.use('/.well-known/dnt/',
168 (_, res: express.Response) => {
169 res.json({ tracking: 'N' })
31414127
RK
170 }
171)
172
173staticRouter.use('/.well-known/change-password',
174 (_, res: express.Response) => {
175 res.redirect('/my-account/settings')
aad0ec24
RK
176 }
177)
178
3ddb1ec5
C
179staticRouter.use('/.well-known/host-meta',
180 (_, res: express.Response) => {
03371ad9 181 res.type('application/xml')
3ddb1ec5
C
182
183 const xml = '<?xml version="1.0" encoding="UTF-8"?>\n' +
184 '<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">\n' +
185 ` <Link rel="lrdd" type="application/xrd+xml" template="${WEBSERVER.URL}/.well-known/webfinger?resource={uri}"/>\n` +
186 '</XRD>'
187
188 res.send(xml).end()
189 }
190)
191
65fcc311
C
192// ---------------------------------------------------------------------------
193
194export {
195 staticRouter
196}
f981dae8
C
197
198// ---------------------------------------------------------------------------
199
536598cf 200async function generateNodeinfo (req: express.Request, res: express.Response) {
3f6d68d9
RK
201 const { totalVideos } = await VideoModel.getStats()
202 const { totalLocalVideoComments } = await VideoCommentModel.getStats()
203 const { totalUsers } = await UserModel.getStats()
204 let json = {}
205
206 if (req.params.version && (req.params.version === '2.0')) {
207 json = {
208 version: '2.0',
209 software: {
210 name: 'peertube',
66170ca8 211 version: PEERTUBE_VERSION
3f6d68d9
RK
212 },
213 protocols: [
214 'activitypub'
215 ],
216 services: {
217 inbound: [],
218 outbound: [
219 'atom1.0',
220 'rss2.0'
221 ]
222 },
223 openRegistrations: CONFIG.SIGNUP.ENABLED,
224 usage: {
225 users: {
226 total: totalUsers
227 },
228 localPosts: totalVideos,
229 localComments: totalLocalVideoComments
230 },
231 metadata: {
232 taxonomy: {
233 postsName: 'Videos'
234 },
235 nodeName: CONFIG.INSTANCE.NAME,
174e0855
RK
236 nodeDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION,
237 nodeConfig: {
238 plugin: {
239 registered: getRegisteredPlugins()
240 },
241 theme: {
242 registered: getRegisteredThemes(),
243 default: getThemeOrDefault(CONFIG.THEME.DEFAULT, DEFAULT_THEME_NAME)
244 },
245 email: {
246 enabled: Emailer.isEnabled()
247 },
248 contactForm: {
249 enabled: CONFIG.CONTACT_FORM.ENABLED
250 },
251 transcoding: {
252 hls: {
253 enabled: CONFIG.TRANSCODING.HLS.ENABLED
254 },
255 webtorrent: {
256 enabled: CONFIG.TRANSCODING.WEBTORRENT.ENABLED
257 },
258 enabledResolutions: getEnabledResolutions()
259 },
260 import: {
261 videos: {
262 http: {
263 enabled: CONFIG.IMPORT.VIDEOS.HTTP.ENABLED
264 },
265 torrent: {
266 enabled: CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED
267 }
268 }
269 },
270 autoBlacklist: {
271 videos: {
272 ofUsers: {
273 enabled: CONFIG.AUTO_BLACKLIST.VIDEOS.OF_USERS.ENABLED
274 }
275 }
276 },
277 avatar: {
278 file: {
279 size: {
280 max: CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max
281 },
282 extensions: CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME
283 }
284 },
285 video: {
286 image: {
287 extensions: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME,
288 size: {
289 max: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max
290 }
291 },
292 file: {
293 extensions: CONSTRAINTS_FIELDS.VIDEOS.EXTNAME
294 }
295 },
296 videoCaption: {
297 file: {
298 size: {
299 max: CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.FILE_SIZE.max
300 },
301 extensions: CONSTRAINTS_FIELDS.VIDEO_CAPTIONS.CAPTION_FILE.EXTNAME
302 }
303 },
304 user: {
305 videoQuota: CONFIG.USER.VIDEO_QUOTA,
306 videoQuotaDaily: CONFIG.USER.VIDEO_QUOTA_DAILY
307 },
308 trending: {
309 videos: {
310 intervalDays: CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
311 }
312 },
313 tracker: {
314 enabled: CONFIG.TRACKER.ENABLED
315 }
316 }
3f6d68d9
RK
317 }
318 } as HttpNodeinfoDiasporaSoftwareNsSchema20
98d3324d 319 res.contentType('application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.0#"')
3f6d68d9
RK
320 } else {
321 json = { error: 'Nodeinfo schema version not handled' }
322 res.status(404)
323 }
324
98d3324d 325 return res.send(json).end()
3f6d68d9
RK
326}
327
453e83ea 328async function downloadTorrent (req: express.Request, res: express.Response) {
d7a25329
C
329 const video = res.locals.videoAll
330
331 const videoFile = getVideoFile(req, video.VideoFiles)
332 if (!videoFile) return res.status(404).end()
333
334 return res.download(getTorrentFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p.torrent`)
335}
336
337async function downloadHLSVideoFileTorrent (req: express.Request, res: express.Response) {
338 const video = res.locals.videoAll
339
340 const playlist = getHLSPlaylist(video)
341 if (!playlist) return res.status(404).end
342
343 const videoFile = getVideoFile(req, playlist.VideoFiles)
02756fbd
C
344 if (!videoFile) return res.status(404).end()
345
d7a25329 346 return res.download(getTorrentFilePath(playlist, videoFile), `${video.name}-${videoFile.resolution}p-hls.torrent`)
02756fbd
C
347}
348
453e83ea 349async function downloadVideoFile (req: express.Request, res: express.Response) {
d7a25329
C
350 const video = res.locals.videoAll
351
352 const videoFile = getVideoFile(req, video.VideoFiles)
02756fbd
C
353 if (!videoFile) return res.status(404).end()
354
d7a25329 355 return res.download(getVideoFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p${videoFile.extname}`)
02756fbd
C
356}
357
d7a25329 358async function downloadHLSVideoFile (req: express.Request, res: express.Response) {
453e83ea 359 const video = res.locals.videoAll
d7a25329
C
360 const playlist = getHLSPlaylist(video)
361 if (!playlist) return res.status(404).end
362
363 const videoFile = getVideoFile(req, playlist.VideoFiles)
364 if (!videoFile) return res.status(404).end()
365
366 const filename = `${video.name}-${videoFile.resolution}p-${playlist.getStringType()}${videoFile.extname}`
367 return res.download(getVideoFilePath(playlist, videoFile), filename)
368}
369
370function getVideoFile (req: express.Request, files: MVideoFile[]) {
371 const resolution = parseInt(req.params.resolution, 10)
372 return files.find(f => f.resolution === resolution)
373}
02756fbd 374
d7a25329
C
375function getHLSPlaylist (video: MVideoFullLight) {
376 const playlist = video.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
377 if (!playlist) return undefined
02756fbd 378
d7a25329 379 return Object.assign(playlist, { Video: video })
02756fbd 380}