display the currently set FLoC header in the checkup page's warning message.

Addresses #757
pull/1/head
ansuz 4 years ago
parent 8074a6191c
commit e143873a20

@ -391,21 +391,32 @@ define([
assert(function (cb, msg) { assert(function (cb, msg) {
setWarningClass(msg); setWarningClass(msg);
var printMessage = function (value) {
msg.appendChild(h('span', [ msg.appendChild(h('span', [
"You haven't opted out of participation in Google's ", "This instance hasn't opted out of participation in Google's ",
code('FLoC'), code('FLoC'),
" targeted advertizing network. This can be done by adding a ", " targeted advertizing network. ",
"This can be done by setting a ",
code('permissions-policy'), code('permissions-policy'),
" HTTP header with a value of ", " HTTP header with a value of ",
code('interest-cohort=()'), code('"interest-cohort=()"'),
" in your reverse proxy's configuration. See the provided NGINX configuration file for an example. ", " in the configuration of its reverse proxy instead of the current value (",
code(value),
"). See the provided NGINX configuration file for an example. ",
h('p', [ h('p', [
link("https://www.eff.org/deeplinks/2021/04/am-i-floced-launch", 'Learn more'), link("https://www.eff.org/deeplinks/2021/04/am-i-floced-launch", 'Learn more'),
]), ]),
])); ]));
};
$.ajax('/?'+ (+new Date()), { $.ajax('/?'+ (+new Date()), {
complete: function (xhr) { complete: function (xhr) {
cb(xhr.getResponseHeader('permissions-policy') === 'interest-cohort=()'); var header = xhr.getResponseHeader('permissions-policy');
printMessage(JSON.stringify(header));
cb(header === 'interest-cohort=()' || header);
}, },
}); });
}); });
@ -735,11 +746,18 @@ define([
}; };
var failureReport = function (obj) { var failureReport = function (obj) {
var printableValue = obj.output;
try {
printableValue = JSON.stringify(obj.output);
} catch (err) {
console.error(err);
}
return h('div.error', [ return h('div.error', [
h('h5', obj.message), h('h5', obj.message),
h('table', [ h('table', [
row(["Failed test number", obj.test + 1]), row(["Failed test number", obj.test + 1]),
row(["Returned value", obj.output]), row(["Returned value", code(printableValue)]),
]), ]),
]); ]);
}; };

Loading…
Cancel
Save