-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathfirestore-backup.js
31 lines (28 loc) · 996 Bytes
/
firestore-backup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const functions = require('firebase-functions');
const firestore = require('@google-cloud/firestore');
const client = new firestore.v1.FirestoreAdminClient();
exports.backupFirestore = functions.region("europe-west3")
.pubsub
.schedule('every day 00:00')
.timeZone('Europe/Bucharest')
.onRun((context) => {
const projectId = process.env.GCP_PROJECT || process.env.GCLOUD_PROJECT;
const databaseName =
client.databasePath(projectId, '(default)');
const timestamp = new Date().toISOString();
const bucket = `gs://${projectId}-firestore-backups/${timestamp}`;
return client.exportDocuments({
name: databaseName,
outputUriPrefix: bucket,
collectionIds: []
})
.then(responses => {
const response = responses[0];
console.log(`Operation Name: ${response['name']}`);
return null;
})
.catch(err => {
console.error(err);
throw new Error('Export operation failed');
});
});