]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/cache.ts
Merge branch 'release/3.2.0' into develop
[github/Chocobozzz/PeerTube.git] / server / middlewares / cache.ts
index 1de44db703429a171386489a5914d474441141b4..0708ee8e8cc3b353421aa8acd6528b15ea4e1f19 100644 (file)
@@ -1,55 +1,26 @@
-import * as express from 'express'
-import * as AsyncLock from 'async-lock'
 import { Redis } from '../lib/redis'
-import { logger } from '../helpers/logger'
-
-const lock = new AsyncLock({ timeout: 5000 })
-
-function cacheRoute (lifetime: number) {
-  return async function (req: express.Request, res: express.Response, next: express.NextFunction) {
-    const redisKey = Redis.Instance.buildCachedRouteKey(req)
-
-    await lock.acquire(redisKey, async (done) => {
-      const cached = await Redis.Instance.getCachedRoute(req)
-
-      // Not cached
-      if (!cached) {
-        logger.debug('No cached results for route %s.', req.originalUrl)
-
-        const sendSave = res.send.bind(res)
-
-        res.send = (body) => {
-          if (res.statusCode >= 200 && res.statusCode < 400) {
-            const contentType = res.getHeader('content-type').toString()
-            Redis.Instance.setCachedRoute(req, body, lifetime, contentType, res.statusCode)
-                 .then(() => done())
-                 .catch(err => {
-                   logger.error('Cannot cache route.', { err })
-                   return done(err)
-                 })
-          }
-
-          return sendSave(body)
-        }
-
-        return next()
-      }
-
-      if (cached.contentType) res.contentType(cached.contentType)
-
-      if (cached.statusCode) {
-        const statusCode = parseInt(cached.statusCode, 10)
-        if (!isNaN(statusCode)) res.status(statusCode)
-      }
-
-      logger.debug('Use cached result for %s.', req.originalUrl)
-      res.send(cached.body).end()
-
-      return done()
-    })
+import * as apicache from 'apicache'
+import { HttpStatusCode } from '../../shared/core-utils/miscs/http-error-codes'
+
+// Ensure Redis is initialized
+Redis.Instance.init()
+
+const defaultOptions = {
+  redisClient: Redis.Instance.getClient(),
+  appendKey: () => Redis.Instance.getPrefix(),
+  statusCodes: {
+    exclude: [
+      HttpStatusCode.FORBIDDEN_403,
+      HttpStatusCode.NOT_FOUND_404
+    ]
   }
 }
 
+const cacheRoute = (extraOptions = {}) => apicache.options({
+  ...defaultOptions,
+  ...extraOptions
+}).middleware
+
 // ---------------------------------------------------------------------------
 
 export {