2019-05-27 10:33:22 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Find the absolute path to this script file
|
|
|
|
|
SCRIPT_PATH=`dirname "$0"`
|
|
|
|
|
SCRIPT_PATH=`( cd "$SCRIPT_PATH" && pwd )`
|
|
|
|
|
# Remove temp file if it exists from last time
|
|
|
|
|
if [ -f "${SCRIPT_PATH}/del.tmp" ]; then
|
|
|
|
|
rm -f "${SCRIPT_PATH}/del.tmp"
|
|
|
|
|
fi
|
|
|
|
|
# Prompt for deleting database
|
|
|
|
|
echo "You are about to delete the entire eIquidus database."
|
|
|
|
|
echo "Are you sure you want to do this? [y/n]: ";
|
|
|
|
|
read -p "" DELETE_ANSWER
|
|
|
|
|
# Determine if the database should be deleted
|
|
|
|
|
case "$DELETE_ANSWER" in
|
|
|
|
|
y|Y|yes|Yes|YES) ;;
|
|
|
|
|
*) echo "Process aborted. Nothing was deleted." && exit ;;
|
|
|
|
|
esac
|
|
|
|
|
# Erase entire database
|
|
|
|
|
sudo touch "${SCRIPT_PATH}/del.tmp" && mongo <<EOF
|
|
|
|
|
use explorerdb
|
|
|
|
|
db.addresses.drop()
|
2020-11-21 20:23:58 -07:00
|
|
|
db.addresstxes.drop()
|
2022-04-11 01:37:27 -06:00
|
|
|
db.networkhistories.drop()
|
2019-05-27 10:33:22 -07:00
|
|
|
db.coinstats.drop()
|
|
|
|
|
db.heavies.drop()
|
|
|
|
|
db.markets.drop()
|
2020-12-30 18:22:02 -07:00
|
|
|
db.masternodes.drop()
|
2019-05-27 10:33:22 -07:00
|
|
|
db.peers.drop()
|
|
|
|
|
db.richlists.drop()
|
|
|
|
|
db.txes.drop()
|
|
|
|
|
exit
|
|
|
|
|
EOF
|
|
|
|
|
# Check if the temp file exists to determine if the delete was successful or not
|
|
|
|
|
if [ -f "${SCRIPT_PATH}/del.tmp" ]; then
|
|
|
|
|
rm -f "${SCRIPT_PATH}/del.tmp"
|
|
|
|
|
echo "Finished deleting database."
|
|
|
|
|
else
|
|
|
|
|
echo "Process aborted. Nothing was deleted."
|
2021-03-17 17:54:09 -06:00
|
|
|
fi
|