GithubHelp home page GithubHelp logo

isabella232 / user-privacy Goto Github PK

View Code? Open in Web Editor NEW

This project forked from firebaseextended/user-privacy

0.0 0.0 0.0 31.71 MB

Sample of general purpose functions for user data deletion and export

License: Apache License 2.0

JavaScript 65.62% HTML 34.38%

user-privacy's Introduction

What is this repository?

This is not an official Google product. This repo is an example of using Cloud Functions for Firebase to protect user privacy. Specifically, it demonstrates removing user data from specific services (Realtime Database, Firestore, and Storage) when they delete their account (the clearData function) and copying out data at when a user requests it (the exportData function). The functions are flexible and easy to change to fit the needs of your specific users and apps.

Status

Status: Archived

This sample is no longer actively maintained and is left here for reference only.

How to use these functions in your own project

The index.js file has comments about how the functions work; this is about how to wire it up.

The developer specifies the paths to data to clear or export. Those paths live in user_privacy.json. The data structures vary for each of the products:

  • For the RTDB, it’s a list of Strings to the path in the database of the form "/users/uid/follows/..."
  • For Firestore, it’s a list of Objects of the form:
{
    "collection": "admins",
    "doc": "UID_VARIABLE",
    "field": "email"
}
  • For Storage, it’s a list of Lists with two elements, a bucket name and file name of the form:
["cool-project.appspot.com", "users/uid/avatar.jpg"]

clearData function

The clearData function as written is triggered when a user deletes their account using Firebase Auth, and it performs a deletion from all three services.

Steps to start using clearData:

  • Include the clearData function and 3 supporting functions (and the requires and convenience variables) in functions/index.js
  • In user_privacy.json, add paths to personal information for all the products you’re using.
  • Make sure you’ve added the ability for the user to delete their account, because that’s what triggers the function
  • If you’re not using all three products, RTDB, Firestore, and Storage, remove the parts of the function that you don’t need.

Clearing the data is implemented by collecting a promise for every deletion event that needs to occur. Only when all promises resolve is the clear considered complete. Keep that in mind if you send a confirmation message that the data has been removed.

exportData function

The exportData function is triggered via a HTTP request. The sample app in /public has a button that’s wired up to trigger a data export; in a traditional app, this could be in settings.

In order to start using it:

  • Include the function and 4 supporting functions in functions/index.js.
  • In user_privacy.json, add:
    • A "exportDataUploadBucket" key that maps to the name of your primary bucket (or in the case of the free tier, your only bucket).
    • Paths to personal information for all the products you’re using.
  • Trigger the function via HTTP request, in a way appropriate for your platform. In the sample web app, a button in public/index.html makes a POST request and a rewrite entry in firebase.json reroutes the request to the function.
  • If you’re not using all three products, RTDB, Firestore, and Storage, remove the parts of the function you don’t need.

For Realtime Database and Firestore we write the user data into a JSON document. For Storage we write a JSON document containing an index of stored files, and copy the files themselves into a folder.

Security rules for exported data

Adding Storage Rules to protect the exported data is extremely important; without Rules, the exported data could be broadly available. The clearData function uploads to a top level /exportData folder, and the Storage Rules restrict access to the specific user who requested export. To protect the exported data:

  • Add the Rules for the exportData folder to the Storage Rules.
  • Look through any preexisting Storage Rules; if a rule grants broader access to the exported data, update that rule. Remember that if one rule grants access, another cannot restrict it.

How to contribute to this repo

  • Fork and clone this repository
  • Create a new firebase project and go through the firebase init flow. This project uses Hosting, Functions, the RealTime Database, Firestore, and Storage.
  • cd into the functions directory and npm install
  • Run firebase deploy
  • Make the changes you're interested in
  • Submit a Pull Request explaining the problem and solution.

user-privacy's People

Contributors

katowulf avatar rachelmyers avatar samtstern avatar vikrum avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.