forked from jewelkepo/gdrive-clone-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.py
93 lines (78 loc) · 3.83 KB
/
update.py
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import logging
from os import path as ospath, environ
from subprocess import run as srun
from dotenv import load_dotenv
from web.log_config import configure_logger
configure_logger()
LOGGER = logging.getLogger(__name__)
if ospath.exists('info.log'):
with open('info.log', 'r+') as f:
f.truncate(0)
if ospath.exists('debug.log'):
with open('debug.log', 'r+') as f:
f.truncate(0)
CONFIG_ENV = environ.get('CONFIG_ENV', None)
if CONFIG_ENV:
LOGGER.info("CONFIG_ENV variable found! Downloading config file ...")
download_file = srun(["curl", "-sL", f"{CONFIG_ENV}", "-o", "config.env"])
if download_file.returncode == 0:
load_dotenv('config.env', override=True)
LOGGER.info("Config file has been downloaded and loaded in current environment")
else:
LOGGER.error("Something went wrong while downloading config file! please recheck the CONFIG_ENV variable")
exit(1)
else:
LOGGER.error("CONFIG_ENV variable not found! exiting ...")
exit(1)
TOKEN_PICKLE = environ.get('TOKEN_PICKLE', None)
if TOKEN_PICKLE:
LOGGER.info("TOKEN_PICKLE variable found! Downloading token.pickle file ...")
download_file = srun(["curl", "-sL", f"{TOKEN_PICKLE}", "-o", "token.pickle"])
if download_file.returncode == 0:
LOGGER.info("Pickle file downloaded as 'token.pickle'")
else:
LOGGER.error("Something went wrong while downloading token.pickle file! please recheck the TOKEN_PICKLE variable")
ACCOUNTS_ZIP = environ.get('ACCOUNTS_ZIP', None)
if ACCOUNTS_ZIP:
LOGGER.info("ACCOUNTS_ZIP variable found! Downloading accounts.zip file ...")
download_file = srun(["curl", "-sL", f"{ACCOUNTS_ZIP}", "-o", "accounts.zip"])
if download_file.returncode == 0:
LOGGER.info("Service Accounts zip file downloaded as 'accounts.zip'")
else:
LOGGER.error("Something went wrong while downloading Service Accounts zip file! please recheck the ACCOUNTS_ZIP variable")
if TOKEN_PICKLE is None and ACCOUNTS_ZIP is None:
LOGGER.warning("Neither TOKEN_PICKLE nor ACCOUNTS_ZIP variable has been provided! If you don't provide either token.pickle or accounts.zip you won't be able to use this bot.")
DRIVES_TXT = environ.get('DRIVES_TXT', None)
if DRIVES_TXT:
LOGGER.info("DRIVES_TXT variable found! Downloading drives.txt file ...")
download_file = srun(["curl", "-sL", f"{DRIVES_TXT}", "-o", "drives.txt"])
if download_file.returncode == 0:
LOGGER.info("Drives list downloaded as 'drives.txt'")
else:
LOGGER.error("Something went wrong while downloading drives list file! please recheck the DRIVES_TXT variable")
BOT_TOKEN = environ.get('BOT_TOKEN', '')
if len(BOT_TOKEN) == 0:
LOGGER.error("BOT_TOKEN variable is missing! Exiting now")
exit(1)
bot_id = int(BOT_TOKEN.split(':', 1)[0])
UPSTREAM_REPO = environ.get('UPSTREAM_REPO', '')
if len(UPSTREAM_REPO) == 0:
UPSTREAM_REPO = None
UPSTREAM_BRANCH = environ.get('UPSTREAM_BRANCH', '')
if len(UPSTREAM_BRANCH) == 0:
UPSTREAM_BRANCH = 'main'
if UPSTREAM_REPO:
if ospath.exists('.git'):
srun(["rm", "-rf", ".git"])
fetch_updates = srun([f"git init -q \
&& git config --global user.email [email protected] \
&& git config --global user.name pseudokawaii \
&& git add . \
&& git commit -sm update -q \
&& git remote add origin {UPSTREAM_REPO} \
&& git fetch origin -q \
&& git reset --hard origin/{UPSTREAM_BRANCH} -q"], shell=True)
if fetch_updates.returncode == 0:
LOGGER.info(f'Successfully pulled latest commits from \'{UPSTREAM_BRANCH}\' branch of {UPSTREAM_REPO}')
else:
LOGGER.error('Something went wrong while updating, recheck UPSTREAM_REPO variable!')