Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Last active August 15, 2017 21:16
Show Gist options
  • Save akopcz2/a1c36e616baac6e213eecd64852bba75 to your computer and use it in GitHub Desktop.
Save akopcz2/a1c36e616baac6e213eecd64852bba75 to your computer and use it in GitHub Desktop.
mongo-restore
require('dotenv').config()
let fs = require("fs");
let shell = require('shelljs');
const globby = require('globby');
let path = require('path');
let util = require('util');
//get db from env
let database = process.env.MONGO_URI;
database = database.split('/').pop();
let databaseServer = process.env.MONGO_URI;
databaseServer = databaseServer.split('/')[2];
init();
//Delete Database before restore to prevent any duplicate indexes
function deleteDump(){
shell.exec('rm -rf dump');
console.log('Deleted Dump');
}
function deleteDatabase(){
shell.exec(`mongo ${databaseServer}/${database} --eval "db.dropDatabase()"`);
console.log('Deleted Database');
};
//Unzips the Dump
/**
* @param {object} zip
*/
function unzipDump(zip){
shell.exec(`unzip -o ${zip}`, () => {
console.log('unziped');
});
}
//Runs Init Function
function init(){
let totalZips = [];
deleteDump();
deleteDatabase();
globby(['*.zip']).then(zip => {
let allZips = Object.keys(zip).map(function(key){
let eachZip = (zip[key]);
totalZips.push(eachZip);
});
let splitArray = [];
for (let i = 0; i< totalZips.length; i++){
splitArray[i] = [];
}
for(let [index, date] of totalZips.entries()) {
let splitDate = date.split(`${database}.zip`).join('_').split('_').join('');
splitArray[index].push(splitDate);
splitArray[index].push(date);
}
for(let i = 0 ; i< totalZips.length; i ++){
splitArray.sort(function(a, b){
if (a[i] === b[i]) {
return 0;
}
else {
if(a[i] < b[i]){
return(b[i][i]);
}
}
});
};
let latestZip = splitArray[0][1];
unzipDump(latestZip);
}).then(zip => {
restoreDataBase();
});
}
//Restores the database without indexes
function restoreDataBase(){
shell.exec(`mongorestore --host ${databaseServer} --port 27017 --db ${database} --noIndexRestore dump/${database}`, () => {
console.log('restored');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment