finish backup-script for export/import data

pull/1/head
Florian Hartwich 2017-05-28 00:51:23 +02:00
parent 2570a82cfa
commit a215d41ec3
2 changed files with 10 additions and 6 deletions

5
.gitignore vendored
View File

@ -44,14 +44,13 @@ Thumbs.db
/public
resource/
backup/collections/
mongodb-data/
backup/
.idea/
node_modules
*/nbproject*
.npm/
mongodb-data/
.bash_history
.bash_logout
.bashrc

View File

@ -1,13 +1,18 @@
#!/bin/bash
# array of available collection names
col=(app_user awarding decoration rank squad user)
for i in "${col[@]}"
do
if [ "$1" == "restore" ]
# provide date for restore process, if data import is needed
if [ -z "$1" ]
then
mongoimport --db cc --collection $i --file collections/${i}.json
mongoexport --db cc --collection $i --out $(date '+%Y-%m-%d')/collections/${i}.json;
cp -R ../api/resource $(date '+%Y-%m-%d')/
else
mongoexport --db cc --collection $i --out collections/${i}.json;
mongoimport --db cc --collection $i --drop --file ${1}/collections/${i}.json
rm -rf ../api/resource
cp -Rv ${1}/resource ../api/
fi
done