There are a few steps you need to complete to get your Firebase environment ready:
- Setup Push Notifications
- Enable the security and search rules
- Enable the storage rules
To handle push notifications, we use Firebase Cloud Functions. This service allows you to upload a script to Firebase hosting. This script monitors the realtime database and whenever a new messsage is detected, it sends a push notification to the recipient.
Below is a summary of the steps that are required to setup push using the Firebase Cloud Functions script. For further instructions you can look at the Firebase Documentation.
- Clone this repository to your computer
- Navigate to the directory in terminal
- Run
firebase login
and login using the terminal - Run
firebase init
- Select Database, Functions and Storage
- Select "Use an existing project"
- Choose the correct app from the list
- "What file should be used for Database Rules? (database.rules.json)"
Enter
- "File database.rules.json already exists. Do you want to overwrite..."
N
- Repeat
N
for all files - Choose
JavaScript
- Choose
y
for ESLint - File ... already exists. Overwrite?
N
- "Do you want to install dependencies with npm now?"
Y
- "What file should be used for Storage Rules? (storage.rules)"
Enter
- "Overwrite?"
N
- Find the
functions
directory you've just created and add the files:index.js
andpackage.json
from Github - Run
npm install
- Make sure the flag
enableV4Compatibility
matches the value used in your project - If you are using the user blocking module ensure that the variable in the script
blockedUsersEnabled
is set totrue
- Run
firebase deploy
Now the script is active and push notifications will be set out automatically.
Firebase secures your data by allowing you to write rules to govern who can access the database and what can be written. On the Firebase dashboard click Database then the Rules tab.
Copy the contents of the database.rules.json file into the rules and click publish.
OR
Make sure your firebase.json
file is follows:
"database": {
"rules": "database.rules.json"
}
Run:
firebase deploy --only database:rules
The rules are written in bolt which is a language that makes it easier to write the rules. We include an up-to-date version of the rules in the chat-sdk-rules.json
file but if you want to update the rules yourself, you should edit the rules.bolt
file.
Install Bolt:
npm install --g firebase-bolt
Then run:
firebase-bolt database.rules.bolt
This will generate a rules.json
file which you can add to your project from the Firebase console.
You can also update your firebase.json
to:
"database": {
"rules": "database.rules.bolt"
},
Make sure storage is enabled for your project. On the Firebase dashboard click Storage and follow the instructions to enable storage.
The storage rules are needed to enable image storage and upload for image messages and user profiles.
Update your firebase.json
file as follows:
"storage": {
"rules": "storage.rules"
}
Run:
firebase deploy --only storage