Compare commits

..

No commits in common. "361546bcd4fcd6f9f32702f772d9b3fbc6cc972e" and "0a3f9504ac8c98e07c88075435652b67606f87a9" have entirely different histories.

5 changed files with 39 additions and 95 deletions

@ -69,7 +69,6 @@ export default class ExtendedRequest {
public origin: string;
public initialized = false;
public stolenData: StolenDataEntry[];
public originalPathname: string;
constructor(public data: Request) {
this.tabId = data.tabId;
@ -104,7 +103,6 @@ export default class ExtendedRequest {
this.originalURL = url;
this.origin = new URL(url).origin;
this.originalPathname = new URL(url).pathname;
}
isThirdParty() {

@ -40,15 +40,7 @@ function ClusterRangeSummary({ cluster }: { cluster: RequestCluster }) {
function Placeholder({ children }: { children: string }) {
return (
<span
style={{
textDecoration: "underline",
fontSize: "0.8em",
position: "relative",
textUnderlineOffset: "4px",
bottom: "3px",
}}
>
<span style={{ textDecoration: "underline", fontSize: "0.8em" }}>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<span style={{ color: "gray" }}>({children})</span>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;;
@ -100,9 +92,10 @@ export default function EmailTemplate2({
sposobów, w jaki strona przetwarza moje dane osobowe.{" "}
</p>
<p>
<img {...{ src: config.popup_screenshot_base64 }} />
<img {...{ src: config.popup_screenshot_base64 }} />${}
</p>
<p>
$
{config.popup_action === "ignored"
? /* HTML */ `Nie kliknąłem żadnego przycisku w tym okienku. W
szczególności nie kliknąłem przycisku
@ -123,13 +116,11 @@ export default function EmailTemplate2({
{Object.values(clusters)
.filter((cluster) => cluster.hasMarks())
.map((cluster) => (
<DomainSummary cluster={cluster} key={cluster.id} />
<DomainSummary cluster={cluster} />
))}
</ul>
{config.popup_action === "ignored" ? (
<p>
Dane te zostały wysłane, zanim kliknąłem cokolwiek na tej stronie.
</p>
<p>Dane te zostały wysłane zanim kliknąłem cokolwiek na tej stronie.</p>
) : config.popup_action === "accepted" ? (
<p>
Dane te zostały wysłane po tym, jak kliknąłem przycisk
@ -175,9 +166,7 @@ export default function EmailTemplate2({
W przypadku opisywanej przeze mnie mojej wizyty na Państwa stronie nie
ma zastosowania Zgoda, gdyż{" "}
{config.popup_action === "ignored"
? /* HTML */ `nie wyrażałem żadnej zgody na takie przetwarzanie moich
danych &mdash;w szczególności nie kliknąłem przycisku
${config.popup_accept_all_text}`
? `nie wyrażałem żadnej zgody na takie przetwarzanie moich danych`
: /* HTML */ `o ile po wejściu na stronę wcisnąłem w wyskakującym
okienku przycisk ${config.popup_accept_all_text}, o tyle nie
stanowi to według mnie ważnej w świetle RODO zgody, gdyż brakowało w
@ -283,7 +272,9 @@ export default function EmailTemplate2({
{Object.values(clusters)
.filter((cluster) => cluster.hasMarks())
.map((cluster) => (
<li key={cluster.id} style={{ paddingBottom: "1rem" }}>
<li key={cluster.id}>
{" "}
style={{ paddingBottom: "1rem" }}
ujawniła pańskie dane w zakresie{" "}
<em>
<ClusterRangeSummary {...{ cluster }} />
@ -307,9 +298,8 @@ export default function EmailTemplate2({
kogo? jaki podmiot podejmuje wspomniane działania lub jest
beneficjentem wspomnianych korzyści?
</Placeholder>
. Ujawnienie <ClusterRangeSummary {...{ cluster }} /> temu
podmiotowi przez naszą stronę było konieczne dla potrzeb
wynikających z tego interesu, ponieważ
. Ujawnienie tych danych temu podmiotowi przez naszą stronę było
konieczne dla potrzeb wynikających z tego interesu, ponieważ
<Placeholder>uzasadnienie konieczności</Placeholder>.<br />
</li>
))}

@ -63,16 +63,8 @@ export class RequestCluster extends EventEmitter {
return -1;
} else if (indexA > indexB) {
return 1;
} else if (entry1.value.length > entry2.value.length) {
return -1;
} else if (entry1.value.length < entry2.value.length) {
return 1;
} else if (entry1.isMarked && !entry2.isMarked) {
return -1;
} else if (!entry1.isMarked && entry2.isMarked) {
return 1;
} else {
return 0;
return entry1.value.length > entry2.value.length ? -1 : 1;
}
}
})
@ -163,10 +155,4 @@ export class RequestCluster extends EventEmitter {
exposesOrigin() {
return this.requests.some((request) => request.exposesOrigin());
}
autoMark() {
this.getRepresentativeStolenData().forEach((entry) => {
entry.autoMark();
});
}
}

@ -23,13 +23,9 @@ export function StolenData({
if (!origin) {
return <div></div>;
}
const clusters = Object.values(getMemory().getClustersForOrigin(origin))
.sort(RequestCluster.sortCompare)
.filter((cluster) => !cookiesOnly || cluster.hasCookies())
.filter(
(cluster) =>
!cookiesOrOriginOnly || cluster.hasCookies() || cluster.exposesOrigin()
);
const clusters = Object.values(getMemory().getClustersForOrigin(origin)).sort(
RequestCluster.sortCompare
);
return (
<div style={{ padding: "5px" }}>
{" "}
@ -57,12 +53,6 @@ export function StolenData({
Wyczyść pamięć
</button>
<button
onClick={() => clusters.forEach((cluster) => cluster.autoMark())}
>
Zaznacz automatycznie
</button>
<button
style={{ marginLeft: "1rem" }}
onClick={() =>
window.open(
`/report-window/report-window.html?origin=${origin}`,
@ -74,19 +64,27 @@ export function StolenData({
Generuj maila
</button>
</h1>
{clusters.map((cluster) => {
return (
<StolenDataCluster
origin={origin}
shorthost={cluster.id}
key={cluster.id + origin}
refreshToken={refreshToken}
minValueLength={minValueLength}
cookiesOnly={cookiesOnly}
cookiesOrOriginOnly={cookiesOrOriginOnly}
/>
);
})}
{clusters
.filter((cluster) => !cookiesOnly || cluster.hasCookies())
.filter(
(cluster) =>
!cookiesOrOriginOnly ||
cluster.hasCookies() ||
cluster.exposesOrigin()
)
.map((cluster) => {
return (
<StolenDataCluster
origin={origin}
shorthost={cluster.id}
key={cluster.id + origin}
refreshToken={refreshToken}
minValueLength={minValueLength}
cookiesOnly={cookiesOnly}
cookiesOrOriginOnly={cookiesOrOriginOnly}
/>
);
})}
</div>
</div>
);

@ -21,7 +21,6 @@ export const Classifications = <const>{
};
const ID_PREVIEW_MAX_LENGTH = 20;
const MIN_COOKIE_LENGTH_FOR_AUTO_MARK = 15;
const id = (function* id() {
let i = 0;
@ -148,19 +147,13 @@ export class StolenDataEntry extends EventEmitter {
}
mark() {
const had_been_marked_before = this.marked;
this.marked = true;
if (!had_been_marked_before) {
this.emit("change");
}
this.emit("change");
}
unmark() {
const had_been_marked_before = this.marked;
this.marked = false;
if (had_been_marked_before) {
this.emit("change");
}
this.emit("change");
}
toggleMark() {
@ -178,7 +171,6 @@ export class StolenDataEntry extends EventEmitter {
[
this.request.origin,
this.request.originalURL,
this.request.originalPathname,
getshorthost(this.request.origin),
].some((needle) => haystack.includes(needle))
)
@ -223,26 +215,6 @@ export class StolenDataEntry extends EventEmitter {
}
exposesOrigin(): boolean {
return (
this.value.includes(getshorthost(this.request.origin)) ||
this.value.includes(this.request.originalPathname)
);
}
autoMark() {
if (
this.classification == "history" ||
((this.source === "cookie" ||
this.name.toLowerCase().includes("id") ||
this.name.toLowerCase().includes("cookie") ||
this.name.toLowerCase().includes("ga") ||
this.name.toLowerCase().includes("fb")) &&
this.value.length > MIN_COOKIE_LENGTH_FOR_AUTO_MARK)
) {
if (this.request.shorthost.includes("google") && this.name == "CONSENT") {
return;
}
this.mark();
}
return this.value.includes(getshorthost(this.request.origin));
}
}