aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/cache.ts
blob: c671b88c954f74fbb06ca9f255e9da5b03d3e28d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import * as express from 'express'
import * as AsyncLock from 'async-lock'
import { parseDuration } from '../helpers/utils'
import { Redis } from '../lib/redis'
import { logger } from '../helpers/logger'

const lock = new AsyncLock({ timeout: 5000 })

function cacheRoute (lifetimeArg: string | number) {
  return async function (req: express.Request, res: express.Response, next: express.NextFunction) {
    const redisKey = Redis.Instance.buildCachedRouteKey(req)

    try {
      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.get('content-type')
              const lifetime = parseDuration(lifetimeArg)

              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.set('content-type', 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()
      })
    } catch (err) {
      logger.error('Cannot serve cached route.', err)
      return next()
    }
  }
}

// ---------------------------------------------------------------------------

export {
  cacheRoute
}