All files / server/router error.js

93.33% Statements 14/15
83.33% Branches 5/6
100% Functions 3/3
100% Lines 14/14
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2527x 27x   27x   139x 139x   139x 139x     28x 28x     28x   28x 28x 28x   139x    
const normalize = require('../utils/normalize');
const params = require('./path-to-regexp-wrap')();
 
module.exports = (...all) => {
  // Extracted or otherwise it'd shift once per call; also more performant
  const { path, middle } = normalize(all);
  const match = params(path);
 
  const generic = () => {};
  generic.error = async ctx => {
 
    // Only do this if the correct path
    ctx.error.code = ctx.error.code || '';
    ctx.error.params = match(ctx.error.code);
 
    // Add an extra-allowing initial matching
    Iif (!ctx.error.params && ctx.error.code.slice(0, path.length) !== path) return;
 
    const ret = await middle[0](ctx);
    delete ctx.error;
    return ret;
  };
  return generic;
};