Files
node-red-contrib-firebase-a…/README.md
Fabio f26adad944 Update README.md
I didn't changed every thing because I was afraid of messy to mush, but on your example of set and push you didn't put that the json must have the "obj".
2019-06-19 10:48:49 -03:00

102 lines
3.3 KiB
Markdown

# node-red-contrib-firebase-admin
A node-red module that wraps the server-side admin SDK of firebase, firestore, et.c.
# Overview
The main difference of this module and all other firebase/store modules for node-red is
that it takes a service account credential token as configuration.
This means that the nodes can run outside of the normal security rules, in admin mode, which is usefule when running on the back-end.
The configuration needs two parameters, the first is the text of the service account credentials private key file. This can be found by going to the firebase console, then to the cogwheel icon at the top left then to project settings and then 'Service Accounts'. Click 'Generate new private key)'.
The second parameter is the database url for the database, and th url has the format of "https://myprojectname.firebaseio.com" and can also be fpund in the above place in the firebase console.
# Realtime Database (rtdb) Nodes
## rtdb-get
Get data from a path in the rtdb database
input: {payload: {path: 'foo/bar'}}
output: <whatever data was at the path 'foo/bar' in the rtdb database>
## rtdb-set
Set data at a path in the rtdb database. Use 'on' snapshot so will fire every time the data at the path changes and so drive flow execution from that point.
input: {payload: {"path": "foo/bar", "obj": {"some": "data", "foo": "17"}}}
## rtdb-push
Pushes the new object onto an array under the path
input: {payload: {"path": "foo/bar", "obj": {"some": "data", "foo": "17"}}}
## rtdb-query
Set up a reactive query for a path in the rtdb database.
input: {payload: {path: 'foo/bar', queries:[], on: 'value}}
on: 'value' (can also be 'child_added', 'child_removed', 'child_changed', 'child_moved').
If an 'on' property is missing, on: 'value' is assumed as default
Where each query is an object that can look like either of the following examples;
- {startAt: 'foo'}
- {endAt: 'bar'}
- {equalTo: 'quux'}
- {orderBy: 'child', value: 'height'} (can also be 'key' or 'value)
- {limitTo: 'last', value: 3} (can also be 'first')
output: [an array of results for the query]
# Firestore nodes
## firestore-get
Get data from a document path in the firestore database
input: {payload: {path: 'foo/bar'}}
output: <the document at the path 'foo/bar' in the firestore database>
## firestore-set
Set data at a path in the firestore database. Uses 'onSnapshot' so will fire every time the data at the path changes and so drive flow execution from that point.
input: {payload: {path: 'foo/bar'}, {some: 'object', foo: 17}}
## firestore-add
Adds the new object under the collection the path describes and assigns it a random id
input: {payload: {path: 'foo/bar'}, {some: 'object', foo: 17}}
## firestore-query
Set up a reactive query for a collection in the firestore database.
input:
{
payload: {
path: 'foo/bar',
queries:[],
limit: 7,
startAt: 4000, // follows the orderBy property
endAt: 4050, // follows the orderBy property
orderBy: 'shoeSize',
orderDirection: 'asc', //default is 'desc'
queries:[
{"company", "==", "ACME"},
{"createdAt", ">", 1560099394242}
]
}
output: An array of the results of the query.
# Storage nodes
TBD
# Auth nodes
TBD