-
Notifications
You must be signed in to change notification settings - Fork 66
/
mafiabot
52 lines (46 loc) · 1.65 KB
/
mafiabot
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
_get_repolink () {
local regex
regex='(https?)://github.com/.+/.+'
if [[ $MAFIA_REPO == "mafiabot" ]]
then
echo "aHR0cHM6Ly9naXRodWIuY29tL0gxTTRONUhVMFAvTUFGSUEtVVNFUkJPVC9hcmNoaXZlL21hc3Rlci56aXA=" | base64 -d
elif [[ $MAFIA_REPO == "MAFIABOT" ]]
then
echo "aHR0cHM6Ly9naXRodWIuY29tL0gxTTRONUhVMFAvTUFGSUEtVVNFUkJPVC9hcmNoaXZlL21hc3Rlci56aXA=" | base64 -d
elif [[ $MAFIA_REPO =~ $regex ]]
then
if [[ $MAFIA_REPO_BRANCH ]]
then
echo "${MAFIA_REPO}/archive/${MAFIA_REPO_BRANCH}.zip"
else
echo "${MAFIA_REPO}/archive/master.zip"
fi
else
echo "aHR0cHM6Ly9naXRodWIuY29tL0gxTTRONUhVMFAvTUFGSUEtVVNFUkJPVC9hcmNoaXZlL21hc3Rlci56aXA=" | base64 -d
fi
}
_set_bot () {
local zippath
zippath="mafiabot.zip"
echo " Downloading source code ..."
wget -q $(_get_repolink) -O "$zippath"
echo " Unpacking Data ..."
MAFIAPATH=$(zipinfo -1 "$zippath" | grep -v "/.");
unzip -qq "$zippath"
echo "Done"
echo " Cleaning ..."
rm -rf "$zippath"
sleep 5
cd $MAFIAPATH
echo " Starting MafiaBot "
echo "
╔═╦═╦══╦══╦══╦══╦══╦═╦══╗
║║║║║╔╗║═╦╩║║╣╔╗║╔╗║║╠╗╔╝
║║║║║╠╣║╔╝╔║║╣╠╣║╔╗║║║║║
╚╩═╩╩╝╚╩╝─╚══╩╝╚╩══╩═╝╚╝
"
python3 ./setup/updater.py ./requirements.txt requirements.txt
python3 -m userbot
}
_set_bot