PeerTube/server/controllers/static.ts

311 lines
8.9 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import cors from 'cors'
import express from 'express'
import { join } from 'path'
import { serveIndexHTML } from '@server/lib/client-html'
import { ServerConfigManager } from '@server/lib/server-config-manager'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '@shared/models'
2021-05-11 11:27:40 +02:00
import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../../shared/models/nodeinfo/nodeinfo.model'
import { root } from '../helpers/core-utils'
import { CONFIG, isEmailEnabled } from '../initializers/config'
import {
2020-02-17 10:27:00 +01:00
CONSTRAINTS_FIELDS,
DEFAULT_THEME_NAME,
2019-07-29 16:30:01 +02:00
HLS_STREAMING_PLAYLIST_DIRECTORY,
PEERTUBE_VERSION,
ROUTE_CACHE_LIFETIME,
STATIC_MAX_AGE,
2019-04-11 11:33:44 +02:00
STATIC_PATHS,
2020-02-17 10:27:00 +01:00
WEBSERVER
} from '../initializers/constants'
import { getThemeOrDefault } from '../lib/plugins/theme-utils'
import { asyncMiddleware } from '../middlewares'
import { cacheRoute } from '../middlewares/cache/cache'
2021-05-11 11:15:29 +02:00
import { UserModel } from '../models/user/user'
import { VideoModel } from '../models/video/video'
2018-07-21 23:00:25 +02:00
import { VideoCommentModel } from '../models/video/video-comment'
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
*/
// FIXME: deprecated in 3.2, use lazy-statics instead
2021-02-18 14:06:12 +01:00
// Due to historical reasons, we can't really remove this controller
2017-05-15 22:22:03 +02:00
const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR
staticRouter.use(
STATIC_PATHS.TORRENTS,
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
)
// Videos path for webseed
2017-05-15 22:22:03 +02:00
staticRouter.use(
STATIC_PATHS.WEBSEED,
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,
express.static(CONFIG.STORAGE.REDUNDANCY_DIR, { fallthrough: false }) // 404 because we don't have this video
2018-12-04 16:02:49 +01:00
)
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
)
2018-05-15 00:29:40 +02:00
// robots.txt service
2018-07-21 23:00:25 +02:00
staticRouter.get('/robots.txt',
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)
}
)
staticRouter.all('/teapot',
getCup,
asyncMiddleware(serveIndexHTML)
)
// security.txt service
staticRouter.get('/security.txt',
(_, res: express.Response) => {
return res.redirect(HttpStatusCode.MOVED_PERMANENTLY_301, '/.well-known/security.txt')
}
)
staticRouter.get('/.well-known/security.txt',
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',
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',
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',
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, totalMonthlyActiveUsers, totalHalfYearActiveUsers } = await UserModel.getStats()
2018-07-21 23:00:25 +02:00
2021-06-08 13:49:41 +02:00
if (!req.params.version || req.params.version !== '2.0') {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Nodeinfo schema version not handled'
})
}
const json = {
version: '2.0',
software: {
name: 'peertube',
version: PEERTUBE_VERSION
},
protocols: [
'activitypub'
],
services: {
inbound: [],
outbound: [
'atom1.0',
'rss2.0'
]
},
openRegistrations: CONFIG.SIGNUP.ENABLED,
usage: {
users: {
total: totalUsers,
activeMonth: totalMonthlyActiveUsers,
activeHalfyear: totalHalfYearActiveUsers
2018-07-21 23:00:25 +02:00
},
2021-06-08 13:49:41 +02:00
localPosts: totalVideos,
localComments: totalLocalVideoComments
},
metadata: {
taxonomy: {
postsName: 'Videos'
2018-07-21 23:00:25 +02:00
},
2021-06-08 13:49:41 +02:00
nodeName: CONFIG.INSTANCE.NAME,
nodeDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION,
nodeConfig: {
search: {
remoteUri: {
users: CONFIG.SEARCH.REMOTE_URI.USERS,
anonymous: CONFIG.SEARCH.REMOTE_URI.ANONYMOUS
}
2018-07-21 23:00:25 +02:00
},
2021-06-08 13:49:41 +02:00
plugin: {
registered: ServerConfigManager.Instance.getRegisteredPlugins()
2018-07-21 23:00:25 +02:00
},
2021-06-08 13:49:41 +02:00
theme: {
registered: ServerConfigManager.Instance.getRegisteredThemes(),
default: getThemeOrDefault(CONFIG.THEME.DEFAULT, DEFAULT_THEME_NAME)
},
email: {
enabled: isEmailEnabled()
},
contactForm: {
enabled: CONFIG.CONTACT_FORM.ENABLED
},
transcoding: {
hls: {
enabled: CONFIG.TRANSCODING.HLS.ENABLED
},
2021-06-08 13:49:41 +02:00
webtorrent: {
enabled: CONFIG.TRANSCODING.WEBTORRENT.ENABLED
},
2021-06-08 13:49:41 +02:00
enabledResolutions: ServerConfigManager.Instance.getEnabledResolutions('vod')
},
live: {
enabled: CONFIG.LIVE.ENABLED,
transcoding: {
2021-06-08 13:49:41 +02:00
enabled: CONFIG.LIVE.TRANSCODING.ENABLED,
enabledResolutions: ServerConfigManager.Instance.getEnabledResolutions('live')
}
},
import: {
videos: {
http: {
enabled: CONFIG.IMPORT.VIDEOS.HTTP.ENABLED
},
2021-06-08 13:49:41 +02:00
torrent: {
enabled: CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED
}
2021-06-08 13:49:41 +02:00
}
},
autoBlacklist: {
videos: {
ofUsers: {
enabled: CONFIG.AUTO_BLACKLIST.VIDEOS.OF_USERS.ENABLED
}
2021-06-08 13:49:41 +02:00
}
},
avatar: {
file: {
size: {
max: CONSTRAINTS_FIELDS.ACTORS.IMAGE.FILE_SIZE.max
},
2021-06-08 13:49:41 +02:00
extensions: CONSTRAINTS_FIELDS.ACTORS.IMAGE.EXTNAME
}
},
video: {
image: {
extensions: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME,
size: {
max: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max
}
},
2021-06-08 13:49:41 +02:00
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
}
2021-06-08 13:49:41 +02:00
},
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 23:00:25 +02:00
}
2021-06-08 13:49:41 +02:00
}
} as HttpNodeinfoDiasporaSoftwareNsSchema20
2018-07-21 23:00:25 +02:00
2021-06-08 13:49:41 +02:00
res.contentType('application/json; profile="http://nodeinfo.diaspora.software/ns/schema/2.0#"')
.send(json)
.end()
2018-07-21 23:00:25 +02:00
}
function getCup (req: express.Request, res: express.Response, next: express.NextFunction) {
res.status(HttpStatusCode.I_AM_A_TEAPOT_418)
res.setHeader('Accept-Additions', 'Non-Dairy;1,Sugar;1')
res.setHeader('Safe', 'if-sepia-awake')
return next()
}