aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/createOriginMiddleware.js
blob: 98bb0e3b3996eab1cd0910f65e2ba1abb8d8a53b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = createOriginMiddleware

/**
 * Returns a middleware that appends the DApp origin to request
 * @param {{ origin: string }} opts - The middleware options
 * @returns {Function}
 */
function createOriginMiddleware (opts) {
  return function originMiddleware (/** @type {any} */ req, /** @type {any} */ _, /** @type {Function} */ next) {
    req.origin = opts.origin
    next()
  }
}