freeCodeCamp/api-server/server/middlewares/csurf.js

18 lines
435 B
JavaScript
Raw Normal View History

2016-05-03 00:22:56 +00:00
import csurf from 'csurf';
export default function() {
const protection = csurf({
cookie: {
domain: process.env.COOKIE_DOMAIN || 'localhost'
}
});
2020-03-13 09:25:57 +00:00
// Note: paypal webhook goes through /internal
2016-05-03 04:11:49 +00:00
return function csrf(req, res, next) {
const path = req.path.split('/')[1];
if (/(^api$|^unauthenticated$|^internal$|^p$)/.test(path)) {
2016-05-03 04:11:49 +00:00
return next();
}
return protection(req, res, next);
};
2016-05-03 00:22:56 +00:00
}