AIL-framework/reset_AIL.sh

128 lines
2.2 KiB
Bash
Raw Normal View History

2017-08-22 17:16:06 +02:00
#!/bin/bash
RED="\\033[1;31m"
DEFAULT="\\033[0;39m"
GREEN="\\033[1;32m"
[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1;
2019-07-30 15:21:27 +02:00
function soft_reset {
# Access dirs and delete
cd $AIL_HOME
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
# Kill all screens
screen -ls | grep Detached | cut -d. -f1 | awk '{print $1}' | xargs kill
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
# Access dirs and delete
cd $AIL_HOME
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d indexdir/ ]; then
pushd indexdir/
rm -r *
echo 'cleaned indexdir'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ $userInput -eq $num ]
then
if [ -d DATA_ARDB/ ]; then
pushd DATA_ARDB/
rm -r *
echo 'cleaned DATA_ARDB'
popd
fi
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d logs/ ]; then
pushd logs/
rm *
echo 'cleaned logs'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d PASTES/ ]; then
pushd PASTES/
rm -r *
echo 'cleaned PASTES'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d HASHS/ ]; then
pushd HASHS/
rm -r *
echo 'cleaned HASHS'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d CRAWLED_SCREESHOT/ ]; then
pushd CRAWLED_SCREESHOT/
rm -r *
echo 'cleaned CRAWLED_SCREESHOT'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d temp/ ]; then
pushd temp/
rm -r *
echo 'cleaned temp'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
if [ -d var/www/submitted/ ]; then
pushd var/www/submitted
rm -r *
echo 'cleaned submitted'
popd
fi
2017-08-22 17:16:06 +02:00
2019-07-30 15:21:27 +02:00
echo -e $GREEN"* AIL has been reset *"$DEFAULT
exit
}
#If no params,
[[ $@ ]] || {
# Make sure the reseting is intentional
num=$(( ( RANDOM % 100 ) + 1 ))
echo -e $RED"To reset the platform, enter the following number: "$DEFAULT $num
read userInput
if [ $userInput -eq $num ]
then
echo "Reseting AIL..."
else
echo "Wrong number"
exit 1;
fi
num=$(( ( RANDOM % 100 ) + 1 ))
echo -e $RED"If yes you want to delete the DB , enter the following number: "$DEFAULT $num
read userInput
soft_reset;
if [ $userInput -eq $num ]
then
if [ -d DATA_ARDB/ ]; then
pushd DATA_ARDB/
rm -r *
echo 'cleaned DATA_ARDB'
popd
fi
fi
echo -e $GREEN"* AIL has been reset *"$DEFAULT
exit
}
while [ "$1" != "" ]; do
case $1 in
--softReset ) soft_reset;
;;
* ) exit 1
esac
shift
done