2022-02-07 21:11:25 +01:00
|
|
|
import RawAnswers, { BasicRawAnswers, HostRawAnswers } from './raw-answers';
|
|
|
|
|
|
|
|
export type RecordValue<T> = T extends Record<any, infer R> ? R : any;
|
|
|
|
|
2022-02-08 22:27:12 +01:00
|
|
|
export type ParsedHostAnswers = ({
|
2022-04-24 22:11:33 +02:00
|
|
|
present:
|
|
|
|
| 'not_mentioned'
|
|
|
|
| 'not_before_making_a_choice'
|
|
|
|
| 'mentioned_in_policy'
|
|
|
|
| 'mentioned_in_popup';
|
|
|
|
legal_basis_type: 'consent' | 'legitimate_interes' | 'not_mentioned';
|
|
|
|
was_processing_necessary: 'yes' | 'no' | 'not_sure';
|
2022-02-08 22:27:12 +01:00
|
|
|
} & (
|
2022-04-24 22:11:33 +02:00
|
|
|
| {
|
|
|
|
consent_problems:
|
|
|
|
| 'claims_consent_but_sends_before_consent'
|
|
|
|
| 'claims_consent_but_there_was_no_easy_refuse';
|
|
|
|
}
|
|
|
|
| { consent_problems: 'none'; outside_eu: 'yes' | 'no' | 'not_sure' }
|
2022-02-08 22:27:12 +01:00
|
|
|
)) & {
|
2022-04-24 22:11:33 +02:00
|
|
|
legitimate_interest_activity_specified: 'no' | 'precise' | 'vague';
|
|
|
|
outside_eu: 'yes' | 'no' | 'not_sure';
|
|
|
|
legitimate_interest_description?: string;
|
2022-02-08 22:27:12 +01:00
|
|
|
};
|
2022-02-07 21:11:25 +01:00
|
|
|
|
|
|
|
export type ParsedAnswers = BasicRawAnswers & { hosts: Record<string, ParsedHostAnswers> };
|
|
|
|
|
|
|
|
function parseHostAnswers(
|
2022-04-24 22:11:33 +02:00
|
|
|
raw_answers: Record<keyof HostRawAnswers, string>
|
2022-02-07 21:11:25 +01:00
|
|
|
): Record<string, ParsedHostAnswers> {
|
2022-04-24 22:11:33 +02:00
|
|
|
const result: Record<string, Record<string, string>> = {};
|
|
|
|
for (const [key, value] of Object.entries(raw_answers)) {
|
|
|
|
const [masked_host, attr] = key.split('|');
|
|
|
|
const host = masked_host.replace(/_/g, '.');
|
|
|
|
if (!result[host]) {
|
|
|
|
result[host] = {} as ParsedHostAnswers;
|
|
|
|
}
|
|
|
|
result[host][attr] = value;
|
|
|
|
}
|
|
|
|
return result as Record<string, ParsedHostAnswers>;
|
2022-02-07 21:11:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export function parseAnswers({
|
2022-04-24 22:11:33 +02:00
|
|
|
zaimek,
|
2022-07-08 20:53:12 +02:00
|
|
|
user_role,
|
|
|
|
email_type,
|
2022-04-24 22:11:33 +02:00
|
|
|
is_incognito_different,
|
|
|
|
policy_readable,
|
|
|
|
popup_type,
|
|
|
|
cookie_wall,
|
|
|
|
passive_consent_description,
|
|
|
|
mentions_passive_consent,
|
|
|
|
rejection_is_hard,
|
|
|
|
administrator_identity_available_before_choice,
|
2022-07-07 21:16:48 +02:00
|
|
|
popup_action,
|
2022-04-24 22:11:33 +02:00
|
|
|
...rest
|
2022-02-07 21:11:25 +01:00
|
|
|
}: RawAnswers): ParsedAnswers {
|
2022-04-24 22:11:33 +02:00
|
|
|
return {
|
|
|
|
zaimek,
|
2022-07-08 20:53:12 +02:00
|
|
|
user_role,
|
|
|
|
email_type,
|
2022-04-24 22:11:33 +02:00
|
|
|
is_incognito_different,
|
|
|
|
policy_readable,
|
|
|
|
popup_type,
|
|
|
|
cookie_wall,
|
|
|
|
passive_consent_description,
|
|
|
|
mentions_passive_consent,
|
|
|
|
rejection_is_hard,
|
|
|
|
administrator_identity_available_before_choice,
|
2022-07-07 21:16:48 +02:00
|
|
|
popup_action,
|
2022-04-24 22:11:33 +02:00
|
|
|
hosts: parseHostAnswers(rest),
|
|
|
|
} as ParsedAnswers;
|
2022-02-07 21:11:25 +01:00
|
|
|
}
|