Enforce Field Uniqueness

Made by Tomas Piaggio

Enforces uniqueness on a specified field of a document written to a specified Cloud Firestore collection.

10+
installs
Works with
Cloud Firestore
Version
0.1.6 | Source code
Tags
utilities
License
Apache-2.0
Publisher
Tomas Piaggio
Report
Bug
Abuse

How this extension works

Use this extension to ensure uniqueness on a specified field (for example, username) of a document within a specified to a Cloud Firestore collection (for example, users).

This extension listens to your specified Cloud Firestore collection. If you add a string to a specified field in any document within that collection, this extension:

  • Gets the type of event it listened to and the string value of the specified field.
  • Creates or deletes a document with that value as it’s key on a separate specified aux collection.
  • Allows you to decide if you want to check uniqueness for existing documents or only new ones.

Firestore Security Rules

This extension works in combination with Firestore Security Rules. The goal of this extension is to maintain documents on an aux collection, each document having the unique field value as the key, and thus checking for uniqueness of these documents using Firestore Security Rules.

In the following example, we’ll be using users and username as the collection and field respectively, but it could be any field name and collection name (the .lower() piece is optional in case uniqueness is not case sensitive).

function isUsernameAvailable() {
  return !exists(/databases/$(database)/documents/usernames/$(request.resource.data.username.lower()));
}

function usernameDidNotChange() {
  return request.resource.data.username == resource.data.username;
}

match /users/{userId} {
  allow read: if ...;
  allow create: if isUsernameAvailable();
  allow update: if usernameDidNotChange() || isUsernameAvailable();
  allow delete: if ...;
}

If you want, you can hash the value of the field due to constraints on document IDs. For that, you can select ‘Yes’ when you’re prompted to select if you want to hash the field or not. The Security Rules change slightly, looking like this:

function isUsernameAvailable() {
  let username = hashing.md5(request.resource.data.username).toHexString().lower();
  return !exists(/databases/$(database)/documents/usernames/$(username));
}

Additional setup

Before installing this extension, make sure that you’ve set up a Cloud Firestore database in your Firebase project.

Billing

To install an extension, your project must be on the Blaze (pay as you go) plan

  • You will be charged a small amount (typically around $0.01/month) for the Firebase resources required by this extension (even if it is not used).
  • This extension uses other Firebase and Google Cloud Platform services, which have associated charges if you exceed the service’s no-cost tier:
    • Cloud Firestore
    • Cloud Functions (Node.js 10+ runtime. See FAQs)