forked from vicke4/ghost-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
302 lines (236 loc) · 10.1 KB
/
setup.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import json
import os
import re
import requests
import time
from traceback import format_exc
from getpass import getpass
from misc import (
display_msg,
error_and_exit,
execute_command,
get_ecredentials,
install_package,
send_notif
)
backup_options = {}
def display_yn_prompt(prompt_msg, prompt_type, default_value='Y', save=True):
while(1):
print("\n{0}".format(prompt_msg))
display_msg('Y/N', 'options')
display_msg(default_value, 'default_value')
user_input = input().lower().strip() or default_value.lower()
if user_input in ['y', 'n', 'yes', 'no', '']:
boolean = False if user_input in [
'n', 'no', ''] else True
if save:
backup_options[prompt_type] = boolean
break
else:
return boolean
else:
display_msg('Invalid Input please try again', 'error')
if prompt_type in ['images', 'themes'] and backup_options[prompt_type]:
while(1):
print("\n{0} directory".format(prompt_type))
default_dir = '/var/www/ghost/content/{0}/'.format(prompt_type)
display_msg(default_dir, 'default_value')
user_input = input().lower().strip() or default_dir
if os.path.isdir(user_input):
backup_options['{0}_dir'.format(prompt_type)] = user_input
break
else:
display_msg('Invalid Input please try again', 'error')
def display_input_prompt(prompt_msg, prompt_default_value=''):
print(prompt_msg)
if prompt_default_value != '':
display_msg(prompt_default_value, 'default_value')
backup_key = re.sub(' ', '_', prompt_msg).lower().strip()
if backup_key.find('password') != -1:
user_input = getpass('')
else:
user_input = input().strip()
if user_input == '':
backup_options[backup_key] = prompt_default_value
else:
backup_options[backup_key] = user_input
return backup_options[backup_key]
def get_credentials():
from google_auth_oauthlib.flow import InstalledAppFlow
SCOPES = ['https://www.googleapis.com/auth/drive.file']
client_config = {
"installed": {
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"redirect_uris": ["urn:ietf:wg:oauth:2.0:oob", "http://localhost"],
"client_id": get_ecredentials('yatch'),
"client_secret": get_ecredentials('bakery')
}
}
flow = InstalledAppFlow.from_client_config(client_config, SCOPES)
print('\n')
try:
credentials = flow.run_console(
authorization_prompt_message='Please visit the below URL to get '
'autorization\ncode to authorize Google Drive access\n\n{url}',
authorization_code_message='\nAuthorization Code\n'
)
client_config['installed']['refresh_token'] = credentials.refresh_token
client_config['installed'].pop('client_id')
client_config['installed'].pop('client_secret')
backup_options['oauth'] = client_config['installed']
except Exception as e:
error_and_exit(
'\nAn Error occured while authenticating Gdrive access\n{0}'.format(e))
return credentials
def create_backup_folder(drive):
folder_query = ('mimeType="application/vnd.google-apps.folder" and '
'name = "Ghost Backup" and trashed = False')
try:
resp = drive.files().list(q=folder_query).execute()
except Exception as e:
error_and_exit(
'\n{0}\nAn Error occured while hitting request to Gdrive'.format(e))
use_existing_folder = False
if len(resp.get('files')) > 0:
use_existing_folder = display_yn_prompt("Ghost Backup folder found "
"on your Google Drive.\nDo you want to use it as your backup folder?\n"
"(No will create a new folder with the same name)", '', 'Y', False)
if use_existing_folder:
resp = resp['files'][0]
display_msg('Using existing folder', 'bold')
else:
file_metadata = {
'name': 'Ghost Backup',
'mimeType': 'application/vnd.google-apps.folder'
}
resp = drive.files().create(body=file_metadata, fields='id').execute()
return resp.get('id')
def setup_gdrive():
credentials = get_credentials()
display_msg('\nPlease wait till the Gdrive setup is complete..', 'bold')
from apiclient.discovery import build
from apiclient.http import MediaFileUpload
drive = build('drive', 'v3', credentials=credentials)
file_id = create_backup_folder(drive)
if file_id is not None:
file_metadata = {
'name': 'backup.tar.gz',
'parents': [file_id],
'mimeType': 'application/gzip'
}
status = execute_command(
"echo 'This text file is the initial backup' > backup.txt && "
"tar -czvf backup.tar.gz backup.txt"
)
if status.returncode == 0:
media = MediaFileUpload('backup.tar.gz')
resp = drive.files().create(body=file_metadata, media_body=media,
fields='id').execute()
backup_options['backup_file_id'] = resp.get('id')
execute_command('rm backup.txt backup.tar.gz')
display_msg('Google Drive configured successfully', 'options')
else:
error_and_exit('\nInitial file creation failed')
else:
error_and_exit('\nAn Error occured while creating folder on Gdrive')
def copy_files():
if not os.path.isdir('/opt/ghost-backup'):
os.makedirs('/opt/ghost-backup')
execute_command('cp backup.py misc.py .niceneeded.json /opt/ghost-backup')
def setup_cron():
from crontab import CronTab
try:
username = execute_command("whoami").stdout.strip()
username = str(username, 'utf-8')
cron = CronTab(user=username)
except Exception as e:
error_and_exit('\n{0}\n'
'An Error occured while scheduling backup task'.format(e))
script_command = 'python3 /opt/ghost-backup/backup.py > /opt/ghost-backup/backup.log 2>&1'
jobs = cron.find_command(script_command)
for job in jobs:
if job.command == script_command:
backup_options['cron_written'] = True
break
if not backup_options.get('cron_written', False):
job = cron.new(
command=script_command,
comment='Ghost blog daily backup'
)
job.hour.on(0)
job.minute.on(0)
cron.write()
backup_options['cron_written'] = True
def setup_notifications():
retries = 0
while(retries < 3):
print("\nSend any message to Telegram bot @GhostBackupBot\n"
"you can also use this link ", end="")
display_msg("https://t.me/GhostBackupBot", "link", "")
print("\nOnce done enter your Telegram username without '@'")
user_input = input().lower().strip()
print("\nWait for sometime to setup notifications..")
time.sleep(2)
resp = requests.get('https://api.telegram.org/bot484412347:'
'AAH0ZavyA0yiYx1MYDngPQMt1HJkhcqTpmc/getUpdates')
for message_obj in resp.json()['result']:
chat_obj = message_obj['message']['chat']
if chat_obj['username'] == user_input:
backup_options['telegram_user_id'] = chat_obj['id']
send_notif(chat_obj['id'],
"Hi {0},\n\nStarting today you'll receive updates about "
"your Ghost blog backup on this chat. Have a nice day 😉"
.format(chat_obj['first_name'])
)
break
if backup_options.get('telegram_user_id', None) != None:
display_msg("\nNotification setup successfully completed!!!",
'options')
break
else:
print("\nAre you sure your username is correct and you "
"sent a msg @GhostBackupBot?")
print("As the notification setup failed, retrying...")
retries += 1
if not backup_options.get('telegram_user_id'):
display_msg("\nNotification setup failed", "error")
def write_config():
config_file = open('/opt/ghost-backup/.config.json', 'w')
config_file.write(json.dumps(backup_options, indent=4, sort_keys=True))
config_file.write('\n')
config_file.close()
def main():
display_msg('\nInstalling required packages, please wait...', None, '')
install_package("google-api-python-client python-crontab "
"google-auth-httplib2 google-auth-oauthlib google-auth")
display_msg("\nGhost Backup Setup Wizard\n"
"-------------------------", 'bold')
print("1. Valid options will be displayed in ", end="")
display_msg('Green', 'options', "")
print(" and separated by forward slash (/)")
print("2. Default value will be displayed in ", end="")
display_msg('Red', 'default_value')
print("3. Just press ENTER to go with default value else input your custom value")
display_yn_prompt("\nWould you like to backup images?", 'images')
display_yn_prompt("\nWould you like to backup themes?", 'themes')
display_input_prompt('\nApp name')
display_input_prompt('\nMySQL hostname', 'localhost')
display_input_prompt('\nMySQL username', 'root')
display_input_prompt('\nMySQL password')
display_input_prompt('\nMySQL DB name')
setup_gdrive()
copy_files()
setup_cron()
display_yn_prompt("Would you like to get notifications\n"
"on Telegram about backup status?", 'notification', 'Y')
if backup_options['notification']:
setup_notifications()
write_config()
display_msg('\nBackup setup completed succesfully!!!\n', 'options')
if __name__ == '__main__':
try:
main()
except Exception as e:
error_and_exit("\nFollowing error occured:\n{0}\n\n"
"More info about the error:\n{1}".format(e, format_exc()))