Skip to content
Snippets Groups Projects
Commit 4274cb5d authored by Benjamin Bellamy's avatar Benjamin Bellamy :speech_balloon: Committed by Yassine Doghri
Browse files

docs(gdpr.txt): add purpose block for analytics data

parent 0188b673
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,29 @@
# in particular. As a hosting provider, you must inform your users of their
# rights and how their data are used and protected.
purpose:
Deduplicate number of audio file downloads made by the same listener
for analytics purposes
lawfulness: legitimate interest
data: (User IP address + Browser User Agent)
required: yes
visibility: none
description:
In order to produce analytics data comparable to the podcasting
ecosystem standards, the User IP address (REMOTE_ADDR) with the
browser User Agent (HTTP_USER_AGENT) are stored when an audio file
is downloaded.
mitigation:
The data (User IP address + Browser User Agent) is never stored in plain
format.
The data is concatenated with a cryptographic salt, the current date,
and the podcast or episode IDs.
The data is hashed (using sha1) after being concatenated and before
being stored.
The data is stored in a cache database (eg. Redis).
The data expires every day at midnight (server time).
purpose: Connect users to their accounts
lawfulness: legitimate interest
......
......@@ -7,6 +7,30 @@
# rights and how their data are used and protected.
purposes:
- description: |
Deduplicate number of audio file downloads made by the same listener for
analytics purposes
lawfulness: legitimate interest
data:
- field: (User IP address + Browser User Agent)
required: yes
visibility: none
description: |
In order to produce analytics data comparable to the podcasting
ecosystem standards, the User IP address (REMOTE_ADDR) with the
browser User Agent (HTTP_USER_AGENT) are stored when an audio file
is downloaded.
mitigation: |
The data (User IP address + Browser User Agent) is never stored in
plain format.
The data is concatenated with a cryptographic salt, the current date,
and the podcast or episode IDs.
The data is hashed (using sha1) after being concatenated and before
being stored.
The data is stored in a cache database (eg. Redis).
The data expires every day at midnight (server time).
retention: 24 hours maximum
- description: Connect users to their accounts
lawfulness: legitimate interest
data:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment