| 123456789101112131415161718192021222324252627282930313233343536373839 |
- export default class Xss {
- constructor(crowi) {
- const xss = require('xss');
- const config = crowi.config;
- const isXssPrevented = config.isXssPrevented;
- const tagWhiteList = config.tagWhiteList;
- const attrWhiteList = config.attrWhiteList;
- let whiteListContent = {};
- // default
- let option = {
- stripIgnoreTag: true,
- stripIgnoreTagBody: false,
- css: false,
- whiteList: whiteListContent,
- escapeHtml: (html) => html, // resolve https://github.com/weseek/growi/issues/221
- };
- if (isXssPrevented) {
- tagWhiteList.forEach(tag => {
- whiteListContent[tag] = attrWhiteList;
- });
- }
- else {
- option['stripIgnoreTag'] = false;
- }
- // create the XSS Filter instance
- this.myxss = new xss.FilterXSS(option);
- }
- process(markdown) {
- return this.myxss.process(markdown);
- }
- }
|