2016-05-02 17:22:56 -07:00
|
|
|
import csurf from 'csurf';
|
|
|
|
|
|
|
|
export default function() {
|
2019-02-18 19:32:49 +00:00
|
|
|
const protection = csurf({
|
|
|
|
cookie: {
|
|
|
|
domain: process.env.COOKIE_DOMAIN || 'localhost'
|
2018-05-23 21:10:56 +01:00
|
|
|
}
|
2019-02-18 19:32:49 +00:00
|
|
|
});
|
2016-05-02 21:11:49 -07:00
|
|
|
return function csrf(req, res, next) {
|
|
|
|
const path = req.path.split('/')[1];
|
2019-02-19 01:59:12 +03:00
|
|
|
if (/(^api$|^unauthenticated$|^internal$|^p$)/.test(path)) {
|
2016-05-02 21:11:49 -07:00
|
|
|
return next();
|
|
|
|
}
|
|
|
|
return protection(req, res, next);
|
|
|
|
};
|
2016-05-02 17:22:56 -07:00
|
|
|
}
|