import { RequestCluster } from '../../../request-cluster'; import { ExplainerKey } from '../explainers'; import { ParsedHostAnswers } from '../parse-answers'; import { v } from '../verbs'; import { Problem } from './problem'; const testCluster: (cluster: RequestCluster, answers: ParsedHostAnswers | undefined) => boolean = ( cluster, hostAnswers ) => { if (!hostAnswers) { return false; } if (cluster.hasMarkedCookies()) { /* if it has cookies, it will be picked up by the UnlawfulCookieAccess problem, and that one is pretty detailed, so no need to mention it here. */ return false; } return hostAnswers.legal_basis_type == 'not_mentioned'; }; export class UnknownLegalBasis extends Problem { getNecessaryExplainers(): ExplainerKey[] { return ['responsibility_for_third_parties']; } qualifies(): boolean { return Object.values(this.clusters).some((cluster) => testCluster(cluster, this.answers.hosts[cluster.id]) ); } getRelatedClusters() { return Object.values(this.clusters).filter((cluster) => testCluster(cluster, this.answers.hosts[cluster.id]) ); } getEmailContent() { const clusters = this.getRelatedClusters(); const _ = (key: string) => v(key, this.answers.zaimek); return ( <>

Przetwarzanie danych osobowych bez podania podstawy prawnej

Państwa strona przetworzyła {_('moje')} dane osobowe poprzez ujawnienie:

{_('Moja')} historia przeglądania stanowi {_('moje')} dane osobowe. Zgodnie z treścią Artykułu 13 p. 1 lit. c){' '} RODO , aby przetwarzać dane osobowe, trzeba poinformować osobę, której dane dotyczą, o tym, jaka jest podstawa prawna takiego przetwarzania danych.

Zwracam się zatem z pytaniem:{' '} jakie były podstawy prawne ujawnienia moich danych każdemu z wyżej wymienionych podmiotów przez Państwa stronę?

); } }