diff options
Diffstat (limited to 'server/controllers/static.ts')
-rw-r--r-- | server/controllers/static.ts | 85 |
1 files changed, 80 insertions, 5 deletions
diff --git a/server/controllers/static.ts b/server/controllers/static.ts index 8de9c5a78..ce5d0c5fa 100644 --- a/server/controllers/static.ts +++ b/server/controllers/static.ts | |||
@@ -1,11 +1,16 @@ | |||
1 | import * as cors from 'cors' | 1 | import * as cors from 'cors' |
2 | import * as express from 'express' | 2 | import * as express from 'express' |
3 | import { CONFIG, STATIC_DOWNLOAD_PATHS, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers' | 3 | import { CONFIG, STATIC_DOWNLOAD_PATHS, STATIC_MAX_AGE, STATIC_PATHS, ROUTE_CACHE_LIFETIME } from '../initializers' |
4 | import { VideosPreviewCache } from '../lib/cache' | 4 | import { VideosPreviewCache } from '../lib/cache' |
5 | import { cache } from '../middlewares/cache' | ||
5 | import { asyncMiddleware, videosGetValidator } from '../middlewares' | 6 | import { asyncMiddleware, videosGetValidator } from '../middlewares' |
6 | import { VideoModel } from '../models/video/video' | 7 | import { VideoModel } from '../models/video/video' |
7 | import { VideosCaptionCache } from '../lib/cache/videos-caption-cache' | 8 | import { VideosCaptionCache } from '../lib/cache/videos-caption-cache' |
9 | import { UserModel } from '../models/account/user' | ||
10 | import { VideoCommentModel } from '../models/video/video-comment' | ||
11 | import { HttpNodeinfoDiasporaSoftwareNsSchema20 } from '../models/nodeinfo' | ||
8 | 12 | ||
13 | const packageJSON = require('../../../package.json') | ||
9 | const staticRouter = express.Router() | 14 | const staticRouter = express.Router() |
10 | 15 | ||
11 | staticRouter.use(cors()) | 16 | staticRouter.use(cors()) |
@@ -65,10 +70,32 @@ staticRouter.use( | |||
65 | ) | 70 | ) |
66 | 71 | ||
67 | // robots.txt service | 72 | // robots.txt service |
68 | staticRouter.get('/robots.txt', (req: express.Request, res: express.Response) => { | 73 | staticRouter.get('/robots.txt', |
69 | res.type('text/plain') | 74 | asyncMiddleware(cache(ROUTE_CACHE_LIFETIME.ROBOTS)), |
70 | return res.send(CONFIG.INSTANCE.ROBOTS) | 75 | (_, res: express.Response) => { |
71 | }) | 76 | res.type('text/plain') |
77 | return res.send(CONFIG.INSTANCE.ROBOTS) | ||
78 | } | ||
79 | ) | ||
80 | |||
81 | // nodeinfo service | ||
82 | staticRouter.use('/.well-known/nodeinfo', | ||
83 | asyncMiddleware(cache(ROUTE_CACHE_LIFETIME.NODEINFO)), | ||
84 | (_, res: express.Response) => { | ||
85 | return res.json({ | ||
86 | links: [ | ||
87 | { | ||
88 | rel: 'http://nodeinfo.diaspora.software/ns/schema/2.0', | ||
89 | href: CONFIG.WEBSERVER.URL + '/nodeinfo/2.0.json' | ||
90 | } | ||
91 | ] | ||
92 | }) | ||
93 | } | ||
94 | ) | ||
95 | staticRouter.use('/nodeinfo/:version.json', | ||
96 | asyncMiddleware(cache(ROUTE_CACHE_LIFETIME.NODEINFO)), | ||
97 | asyncMiddleware(generateNodeinfo) | ||
98 | ) | ||
72 | 99 | ||
73 | // --------------------------------------------------------------------------- | 100 | // --------------------------------------------------------------------------- |
74 | 101 | ||
@@ -95,6 +122,54 @@ async function getVideoCaption (req: express.Request, res: express.Response) { | |||
95 | return res.sendFile(path, { maxAge: STATIC_MAX_AGE }) | 122 | return res.sendFile(path, { maxAge: STATIC_MAX_AGE }) |
96 | } | 123 | } |
97 | 124 | ||
125 | async function generateNodeinfo (req: express.Request, res: express.Response, next: express.NextFunction) { | ||
126 | const { totalVideos } = await VideoModel.getStats() | ||
127 | const { totalLocalVideoComments } = await VideoCommentModel.getStats() | ||
128 | const { totalUsers } = await UserModel.getStats() | ||
129 | let json = {} | ||
130 | |||
131 | if (req.params.version && (req.params.version === '2.0')) { | ||
132 | json = { | ||
133 | version: '2.0', | ||
134 | software: { | ||
135 | name: 'peertube', | ||
136 | version: packageJSON.version | ||
137 | }, | ||
138 | protocols: [ | ||
139 | 'activitypub' | ||
140 | ], | ||
141 | services: { | ||
142 | inbound: [], | ||
143 | outbound: [ | ||
144 | 'atom1.0', | ||
145 | 'rss2.0' | ||
146 | ] | ||
147 | }, | ||
148 | openRegistrations: CONFIG.SIGNUP.ENABLED, | ||
149 | usage: { | ||
150 | users: { | ||
151 | total: totalUsers | ||
152 | }, | ||
153 | localPosts: totalVideos, | ||
154 | localComments: totalLocalVideoComments | ||
155 | }, | ||
156 | metadata: { | ||
157 | taxonomy: { | ||
158 | postsName: 'Videos' | ||
159 | }, | ||
160 | nodeName: CONFIG.INSTANCE.NAME, | ||
161 | nodeDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION | ||
162 | } | ||
163 | } as HttpNodeinfoDiasporaSoftwareNsSchema20 | ||
164 | res.set('Content-Type', 'application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.0#; charset=utf-8') | ||
165 | } else { | ||
166 | json = { error: 'Nodeinfo schema version not handled' } | ||
167 | res.status(404) | ||
168 | } | ||
169 | |||
170 | return res.end(JSON.stringify(json)) | ||
171 | } | ||
172 | |||
98 | async function downloadTorrent (req: express.Request, res: express.Response, next: express.NextFunction) { | 173 | async function downloadTorrent (req: express.Request, res: express.Response, next: express.NextFunction) { |
99 | const { video, videoFile } = getVideoAndFile(req, res) | 174 | const { video, videoFile } = getVideoAndFile(req, res) |
100 | if (!videoFile) return res.status(404).end() | 175 | if (!videoFile) return res.status(404).end() |