mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 21:37:59 +08:00
* run eslint --fix * camelcase * camelCase config part 1 * part 2 * part 3 - removing subscripts * fix "class-methods-use-this" * fix "class-methods-use-this" * fix eslint ignores * add eslint ignore for set state in update * reformat comments to appease eslint * add a11y features * sort-comp fix * a11y fix * add ignore for set state in update * add a11y htmlFor * remove unused toast * remove unnecessary bind * add ignore for set state in update * add rel="noopener noreferrer" Using target="_blank" without rel="noopener noreferrer" is a security risk: see https://mathiasbynens.github.io/rel-noopener * use arrow function to bind * remove unused definitions/declarations * prettier * remove unused state * add comments to empty catch blocks remove curly brackets * escape ' * use eqeqeq * switch from default export * remove ignore log * remove static * fix import * revert subscripting config * clean-up * remove unnecessary subscript * fix new errors from master * change category click handler to a class property * fix camelcase changes that slipped by * unused import * Fix newly introduced ESLint errors from addGenes
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
const cheerio = require("cheerio");
|
|
const crypto = require("crypto");
|
|
HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
|
|
class CspHashPlugin {
|
|
constructor(opts) {
|
|
this.opts = { ...opts };
|
|
}
|
|
|
|
apply(compiler) {
|
|
compiler.hooks.compilation.tap("CspHashPlugin", (compilation) => {
|
|
HtmlWebpackPlugin.getHooks(compilation).beforeEmit.tapAsync(
|
|
"CspHashPlugin",
|
|
(data, cb) => {
|
|
const { filename } = this.opts;
|
|
|
|
const $ = cheerio.load(data.html, { decodeEntities: false });
|
|
|
|
if (filename) {
|
|
const results = {};
|
|
results["script-hashes"] = $("script:not([src]):not([no-csp-hash])")
|
|
.map((i, elmt) => this.digest($(elmt).html()))
|
|
.get();
|
|
results["style-hashes"] = $("style:not([href]):not([no-csp-hash])")
|
|
.map((i, elmt) => this.digest($(elmt).html()))
|
|
.get();
|
|
|
|
const json = JSON.stringify(results);
|
|
compilation.assets[filename] = {
|
|
source: () => json,
|
|
size: () => json.length,
|
|
};
|
|
}
|
|
|
|
// Remove no-csp-hash attributes. Cheerio does not parse Jinja templates
|
|
// correctly, so we brute force this with a regular expression.
|
|
data.html = data.html
|
|
.replace(/(<script .*)no-csp-hash(.*>)/, (match, p1, p2) =>
|
|
[p1, p2].join("")
|
|
)
|
|
.replace(/(<style .*)no-csp-hash(.*>)/, (match, p1, p2) =>
|
|
[p1, p2].join("")
|
|
);
|
|
|
|
// Tell webpack to move on
|
|
cb(null, data);
|
|
}
|
|
);
|
|
});
|
|
}
|
|
|
|
digest(str) {
|
|
const hash = crypto
|
|
.createHash("sha256")
|
|
.update(str, "utf8")
|
|
.digest("base64");
|
|
return `sha256-${hash}`;
|
|
}
|
|
}
|
|
|
|
module.exports = CspHashPlugin;
|