]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/static.ts
Serve audit logs to client
[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
C
9 STATIC_PATHS,
10 WEBSERVER
74dc3bca 11} from '../initializers/constants'
98d3324d 12import { cacheRoute } from '../middlewares/cache'
eccf70f0 13import { asyncMiddleware, videosDownloadValidator } from '../middlewares'
02756fbd 14import { VideoModel } from '../models/video/video'
3f6d68d9
RK
15import { UserModel } from '../models/account/user'
16import { VideoCommentModel } from '../models/video/video-comment'
c75937d0 17import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../../shared/models/nodeinfo'
aac0118d
C
18import { join } from 'path'
19import { root } from '../helpers/core-utils'
6dd9de95 20import { CONFIG } from '../initializers/config'
557b13ae 21import { getPreview, getVideoCaption } from './lazy-static'
d7a25329
C
22import { VideoStreamingPlaylistType } from '@shared/models/videos/video-streaming-playlist.type'
23import { MVideoFile, MVideoFullLight } from '@server/typings/models'
24import { getTorrentFilePath, getVideoFilePath } from '@server/lib/video-paths'
65fcc311
C
25
26const staticRouter = express.Router()
27
62945f06
C
28staticRouter.use(cors())
29
65fcc311 30/*
60862425 31 Cors is very important to let other servers access torrent and video files
65fcc311
C
32*/
33
34const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR
35staticRouter.use(
36 STATIC_PATHS.TORRENTS,
37 cors(),
49379960 38 express.static(torrentsPhysicalPath, { maxAge: 0 }) // Don't cache because we could regenerate the torrent file
65fcc311 39)
02756fbd
C
40staticRouter.use(
41 STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+).torrent',
eccf70f0 42 asyncMiddleware(videosDownloadValidator),
02756fbd
C
43 asyncMiddleware(downloadTorrent)
44)
d7a25329
C
45staticRouter.use(
46 STATIC_DOWNLOAD_PATHS.TORRENTS + ':id-:resolution([0-9]+)-hls.torrent',
eccf70f0 47 asyncMiddleware(videosDownloadValidator),
d7a25329
C
48 asyncMiddleware(downloadHLSVideoFileTorrent)
49)
65fcc311
C
50
51// Videos path for webseeding
65fcc311
C
52staticRouter.use(
53 STATIC_PATHS.WEBSEED,
54 cors(),
b9fffa29 55 express.static(CONFIG.STORAGE.VIDEOS_DIR, { fallthrough: false }) // 404 because we don't have this video
65fcc311 56)
6040f87d 57staticRouter.use(
b9fffa29 58 STATIC_PATHS.REDUNDANCY,
6040f87d 59 cors(),
b9fffa29 60 express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }) // 404 because we don't have this video
6040f87d
C
61)
62
02756fbd
C
63staticRouter.use(
64 STATIC_DOWNLOAD_PATHS.VIDEOS + ':id-:resolution([0-9]+).:extension',
eccf70f0 65 asyncMiddleware(videosDownloadValidator),
02756fbd
C
66 asyncMiddleware(downloadVideoFile)
67)
65fcc311 68
d7a25329 69staticRouter.use(
efcd6f2e 70 STATIC_DOWNLOAD_PATHS.HLS_VIDEOS + ':id-:resolution([0-9]+)-fragmented.:extension',
eccf70f0 71 asyncMiddleware(videosDownloadValidator),
d7a25329
C
72 asyncMiddleware(downloadHLSVideoFile)
73)
74
09209296
C
75// HLS
76staticRouter.use(
9c6ca37f 77 STATIC_PATHS.STREAMING_PLAYLISTS.HLS,
09209296 78 cors(),
9c6ca37f 79 express.static(HLS_STREAMING_PLAYLIST_DIRECTORY, { fallthrough: false }) // 404 if the file does not exist
09209296
C
80)
81
65fcc311
C
82// Thumbnails path for express
83const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
84staticRouter.use(
85 STATIC_PATHS.THUMBNAILS,
cd4cb177 86 express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
65fcc311
C
87)
88
557b13ae 89// DEPRECATED: use lazy-static route instead
c5911fd3
C
90const avatarsPhysicalPath = CONFIG.STORAGE.AVATARS_DIR
91staticRouter.use(
92 STATIC_PATHS.AVATARS,
cd4cb177 93 express.static(avatarsPhysicalPath, { maxAge: STATIC_MAX_AGE.SERVER, fallthrough: false }) // 404 if the file does not exist
c5911fd3
C
94)
95
557b13ae 96// DEPRECATED: use lazy-static route instead
65fcc311 97staticRouter.use(
f981dae8 98 STATIC_PATHS.PREVIEWS + ':uuid.jpg',
eb080476 99 asyncMiddleware(getPreview)
65fcc311
C
100)
101
557b13ae 102// DEPRECATED: use lazy-static route instead
40e87e9e
C
103staticRouter.use(
104 STATIC_PATHS.VIDEO_CAPTIONS + ':videoId-:captionLanguage([a-z]+).vtt',
105 asyncMiddleware(getVideoCaption)
106)
107
ac235c37 108// robots.txt service
3f6d68d9 109staticRouter.get('/robots.txt',
98d3324d 110 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.ROBOTS)),
3f6d68d9
RK
111 (_, res: express.Response) => {
112 res.type('text/plain')
113 return res.send(CONFIG.INSTANCE.ROBOTS)
114 }
115)
116
5447516b
AH
117// security.txt service
118staticRouter.get('/security.txt',
119 (_, res: express.Response) => {
120 return res.redirect(301, '/.well-known/security.txt')
121 }
122)
123
124staticRouter.get('/.well-known/security.txt',
125 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.SECURITYTXT)),
126 (_, res: express.Response) => {
127 res.type('text/plain')
128 return res.send(CONFIG.INSTANCE.SECURITYTXT + CONFIG.INSTANCE.SECURITYTXT_CONTACT)
129 }
130)
131
3f6d68d9
RK
132// nodeinfo service
133staticRouter.use('/.well-known/nodeinfo',
98d3324d 134 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.NODEINFO)),
3f6d68d9
RK
135 (_, res: express.Response) => {
136 return res.json({
137 links: [
138 {
139 rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0',
6dd9de95 140 href: WEBSERVER.URL + '/nodeinfo/2.0.json'
3f6d68d9
RK
141 }
142 ]
143 })
144 }
145)
146staticRouter.use('/nodeinfo/:version.json',
aad0ec24 147 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.NODEINFO)),
3f6d68d9
RK
148 asyncMiddleware(generateNodeinfo)
149)
ac235c37 150
aad0ec24
RK
151// dnt-policy.txt service (see https://www.eff.org/dnt-policy)
152staticRouter.use('/.well-known/dnt-policy.txt',
153 asyncMiddleware(cacheRoute(ROUTE_CACHE_LIFETIME.DNT_POLICY)),
154 (_, res: express.Response) => {
155 res.type('text/plain')
aac0118d 156
d1105b97 157 return res.sendFile(join(root(), 'dist/server/static/dnt-policy/dnt-policy-1.0.txt'))
aad0ec24
RK
158 }
159)
160
161// dnt service (see https://www.w3.org/TR/tracking-dnt/#status-resource)
162staticRouter.use('/.well-known/dnt/',
163 (_, res: express.Response) => {
164 res.json({ tracking: 'N' })
31414127
RK
165 }
166)
167
168staticRouter.use('/.well-known/change-password',
169 (_, res: express.Response) => {
170 res.redirect('/my-account/settings')
aad0ec24
RK
171 }
172)
173
3ddb1ec5
C
174staticRouter.use('/.well-known/host-meta',
175 (_, res: express.Response) => {
03371ad9 176 res.type('application/xml')
3ddb1ec5
C
177
178 const xml = '<?xml version="1.0" encoding="UTF-8"?>\n' +
179 '<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">\n' +
180 ` <Link rel="lrdd" type="application/xrd+xml" template="${WEBSERVER.URL}/.well-known/webfinger?resource={uri}"/>\n` +
181 '</XRD>'
182
183 res.send(xml).end()
184 }
185)
186
65fcc311
C
187// ---------------------------------------------------------------------------
188
189export {
190 staticRouter
191}
f981dae8
C
192
193// ---------------------------------------------------------------------------
194
536598cf 195async function generateNodeinfo (req: express.Request, res: express.Response) {
3f6d68d9
RK
196 const { totalVideos } = await VideoModel.getStats()
197 const { totalLocalVideoComments } = await VideoCommentModel.getStats()
198 const { totalUsers } = await UserModel.getStats()
199 let json = {}
200
201 if (req.params.version && (req.params.version === '2.0')) {
202 json = {
203 version: '2.0',
204 software: {
205 name: 'peertube',
66170ca8 206 version: PEERTUBE_VERSION
3f6d68d9
RK
207 },
208 protocols: [
209 'activitypub'
210 ],
211 services: {
212 inbound: [],
213 outbound: [
214 'atom1.0',
215 'rss2.0'
216 ]
217 },
218 openRegistrations: CONFIG.SIGNUP.ENABLED,
219 usage: {
220 users: {
221 total: totalUsers
222 },
223 localPosts: totalVideos,
224 localComments: totalLocalVideoComments
225 },
226 metadata: {
227 taxonomy: {
228 postsName: 'Videos'
229 },
230 nodeName: CONFIG.INSTANCE.NAME,
231 nodeDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION
232 }
233 } as HttpNodeinfoDiasporaSoftwareNsSchema20
98d3324d 234 res.contentType('application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.0#"')
3f6d68d9
RK
235 } else {
236 json = { error: 'Nodeinfo schema version not handled' }
237 res.status(404)
238 }
239
98d3324d 240 return res.send(json).end()
3f6d68d9
RK
241}
242
453e83ea 243async function downloadTorrent (req: express.Request, res: express.Response) {
d7a25329
C
244 const video = res.locals.videoAll
245
246 const videoFile = getVideoFile(req, video.VideoFiles)
247 if (!videoFile) return res.status(404).end()
248
249 return res.download(getTorrentFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p.torrent`)
250}
251
252async function downloadHLSVideoFileTorrent (req: express.Request, res: express.Response) {
253 const video = res.locals.videoAll
254
255 const playlist = getHLSPlaylist(video)
256 if (!playlist) return res.status(404).end
257
258 const videoFile = getVideoFile(req, playlist.VideoFiles)
02756fbd
C
259 if (!videoFile) return res.status(404).end()
260
d7a25329 261 return res.download(getTorrentFilePath(playlist, videoFile), `${video.name}-${videoFile.resolution}p-hls.torrent`)
02756fbd
C
262}
263
453e83ea 264async function downloadVideoFile (req: express.Request, res: express.Response) {
d7a25329
C
265 const video = res.locals.videoAll
266
267 const videoFile = getVideoFile(req, video.VideoFiles)
02756fbd
C
268 if (!videoFile) return res.status(404).end()
269
d7a25329 270 return res.download(getVideoFilePath(video, videoFile), `${video.name}-${videoFile.resolution}p${videoFile.extname}`)
02756fbd
C
271}
272
d7a25329 273async function downloadHLSVideoFile (req: express.Request, res: express.Response) {
453e83ea 274 const video = res.locals.videoAll
d7a25329
C
275 const playlist = getHLSPlaylist(video)
276 if (!playlist) return res.status(404).end
277
278 const videoFile = getVideoFile(req, playlist.VideoFiles)
279 if (!videoFile) return res.status(404).end()
280
281 const filename = `${video.name}-${videoFile.resolution}p-${playlist.getStringType()}${videoFile.extname}`
282 return res.download(getVideoFilePath(playlist, videoFile), filename)
283}
284
285function getVideoFile (req: express.Request, files: MVideoFile[]) {
286 const resolution = parseInt(req.params.resolution, 10)
287 return files.find(f => f.resolution === resolution)
288}
02756fbd 289
d7a25329
C
290function getHLSPlaylist (video: MVideoFullLight) {
291 const playlist = video.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
292 if (!playlist) return undefined
02756fbd 293
d7a25329 294 return Object.assign(playlist, { Video: video })
02756fbd 295}