-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathstorage-backup.js
34 lines (28 loc) · 1.2 KB
/
storage-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
32
33
34
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const serviceAccount = require("../serviceAccountKey.json");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount)
});
exports.backupStorage = functions.region("europe-west3")
.pubsub
.schedule('every day 00:00')
.timeZone('Europe/Bucharest')
.onRun(async (_) => {
const projectId = process.env.GCP_PROJECT || process.env.GCLOUD_PROJECT;
const sourceBucket = admin.storage().bucket(`${projectId}.appspot.com`);
const destBucket = admin.storage().bucket(`${projectId}-storage-backups`);
console.log("Starting storage backup...")
const timestamp = new Date().toISOString();
const [sourceFiles] = await sourceBucket.getFiles();
const sourceFileNames = sourceFiles.map((file) => file.name);
console.log(timestamp, "# Total", sourceFileNames.length);
let promises = [];
for (let fileName of sourceFileNames) {
const copyFilePromise = sourceBucket.file(fileName).copy(destBucket.file(`${timestamp}/${fileName}`));
promises.push(copyFilePromise);
}
await Promise.all(promises);
console.log("Storage backup completed.")
return "DONE";
});