mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import handlers from './handlers';
|
|
|
|
const handlerMap = handlers.reduce((map, handler) => {
|
|
for (const methodName of handler.methodNames) {
|
|
map.set(methodName, handler.implementation);
|
|
}
|
|
return map;
|
|
}, new Map());
|
|
|
|
/**
|
|
* Returns a middleware that implements the RPC methods defined in the handlers
|
|
* directory.
|
|
*
|
|
* The purpose of this middleware is to create portable RPC method
|
|
* implementations that are decoupled from the rest of our background
|
|
* architecture.
|
|
*
|
|
* Handlers consume functions that hook into the background, and only depend
|
|
* on their signatures, not e.g. controller internals.
|
|
*
|
|
* Eventually, we'll want to extract this middleware into its own package.
|
|
*
|
|
* @param {Object} opts - The middleware options
|
|
* @param {Function} opts.sendMetrics - A function for sending a metrics event
|
|
* @returns {(req: Object, res: Object, next: Function, end: Function) => void}
|
|
*/
|
|
export default function createMethodMiddleware(opts) {
|
|
return function methodMiddleware(req, res, next, end) {
|
|
if (handlerMap.has(req.method)) {
|
|
return handlerMap.get(req.method)(req, res, next, end, opts);
|
|
}
|
|
return next();
|
|
};
|
|
}
|