mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #3933 from overleaf/ae-csp-report-percentage
Add CSP_REPORT_PERCENTAGE GitOrigin-RevId: 4afde0da6e3660c83df8c5c9cd31a3f246e9e572
This commit is contained in:
parent
8b35db3fc1
commit
2621a1d5bb
2 changed files with 6 additions and 1 deletions
|
@ -3,6 +3,7 @@ const path = require('path')
|
|||
|
||||
module.exports = function ({
|
||||
reportUri,
|
||||
reportPercentage,
|
||||
reportOnly = false,
|
||||
exclude = [],
|
||||
percentage
|
||||
|
@ -29,7 +30,10 @@ module.exports = function ({
|
|||
`base-uri 'none'`
|
||||
]
|
||||
|
||||
if (reportUri) {
|
||||
// enable the report URI for a percentage of CSP-enabled requests
|
||||
const belowReportCutoff = Math.random() * 100 <= reportPercentage
|
||||
|
||||
if (reportUri && belowReportCutoff) {
|
||||
directives.push(`report-uri ${reportUri}`)
|
||||
// NOTE: implement report-to once it's more widely supported
|
||||
}
|
||||
|
|
|
@ -736,6 +736,7 @@ module.exports = settings =
|
|||
percentage: parseFloat(process.env.CSP_PERCENTAGE) || 0
|
||||
enabled: process.env.CSP_ENABLED == 'true'
|
||||
reportOnly: process.env.CSP_REPORT_ONLY == 'true'
|
||||
reportPercentage: parseFloat(process.env.CSP_REPORT_PERCENTAGE) || 0
|
||||
reportUri: process.env.CSP_REPORT_URI
|
||||
exclude: [
|
||||
'app/views/project/editor',
|
||||
|
|
Loading…
Reference in a new issue