1.0.4 • Published 5 years ago

botkit-storage-firestore-v2 v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

botkit-storage-firestore Build Status

A Fork of Firebase storage module for Botkit.

This version includes support for subqueries, and complex queries. More info to come here, feel free to contact me for changes, info, etc.

Usage

Just require botkit-storage-firestore-v2 and pass it a config with a firebase_uri option. Then pass the returned storage when creating your Botkit controller. Botkit will do the rest.

Make sure everything you store has an id property, that's what you'll use to look it up later.

const admin = require('firebase-admin');
var serviceAccount = require(process.env.FIREBASE_URI);
admin.initializeApp({
    credential: admin.credential.cert(serviceAccount)
});

var db = admin.firestore();

var Botkit = require('botkit'),
    firebaseStorage = require('botkit-storage-firestore')({database: db}),
    controller = Botkit.slackbot({
        storage: firebaseStorage
    });
// then you can use the Botkit storage api, make sure you have an id property
var beans = {id: 'cool', beans: ['pinto', 'garbanzo']};
controller.storage.teams.save(beans);
beans = controller.storage.teams.get('cool');