forked from Paulomart/MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.py
609 lines (464 loc) · 17 KB
/
bootstrap.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
'''
If this is running then python is obviously installed, but we need to make sure that python3 is installed.
What we need to do:
0. (optional) Check disk space
0.1: The same env checks in run.py?
1: Make sure this is python 3.5+
1.1: If we installed python 3.5, restart using that
2. Check for and install required programs:
- brew (osx)
- git
- ffmpeg
- libopus (non windows)
- libffi (non windows)
- libsodium (sometimes needed, might need to check after pynacl)
- a compiler
3: Ensure pip and update pip
4: Git clone and clean out non arch related stuff (run scripts, bins/ on non-windows)
5: Install requirements.txt packages (if everything is ok then no errors should occur)
6. Copy configs and prompt the user for something (maybe)
The OSX specific steps might be a bit different so we just need to pay special attention to those steps
Remember to make sure the user knows the script might prompt for password
Print the command beforehand just so they know whats happening
When the script runs the user should be greeted with some text and a press [enter/whatever] to continue prompt
'''
from __future__ import print_function
import os
import re
import shutil
import sys
import logging
import platform
import tempfile
import traceback
import subprocess
import argparse
from glob import glob
from shutil import rmtree
from textwrap import dedent
try:
from urllib.request import urlopen, Request, urlretrieve
except ImportError:
# Use urllib2 for Python 2.
# noinspection PyUnresolvedReferences
from urllib2 import urlopen, Request
from urllib import urlretrieve
# Arguments
ap = argparse.ArgumentParser()
ap.add_argument('--dir', help='the name of the directory to install to (default: MusicBot)')
args = ap.parse_args()
# Logging setup goes here
PY_VERSION = sys.version_info # (3, 5, 1, ...)
SYS_PLATFORM = sys.platform # 'win32', 'linux', 'darwin'
SYS_UNAME = platform.uname()
SYS_ARCH = ('32', '64')[SYS_UNAME[4].endswith('64')]
SYS_PKGMANAGER = None # TODO: Figure this out
PLATFORMS = ['win32', 'linux', 'darwin', 'linux2']
MINIMUM_PY_VERSION = (3, 5)
TARGET_PY_VERSION = "3.5.2"
if SYS_PLATFORM not in PLATFORMS:
raise RuntimeError('Unsupported system "%s"' % SYS_PLATFORM)
if SYS_PLATFORM == 'linux2':
SYS_PLATFORM = 'linux'
TEMP_DIR = tempfile.TemporaryDirectory(prefix='musicbot-')
try:
PY_BUILD_DIR = os.path.join(TEMP_DIR, "Python-%s" % TARGET_PY_VERSION)
except TypeError: # expected str, bytes or os.PathLike object, not TemporaryDirectory
PY_BUILD_DIR = os.path.join(TEMP_DIR.name, "Python-%s" % TARGET_PY_VERSION)
INSTALL_DIR = args.dir if args.dir is not None else 'MusicBot'
GET_PIP = "https://bootstrap.pypa.io/get-pip.py"
# python2 compat bollocks
if PY_VERSION >= (3,):
raw_input = input
def read_from_urllib(r):
# Reads data from urllib in a version-independant way.
if PY_VERSION[0] == 2:
return r.read()
else:
return r.read().decode("utf-8")
def sudo_check_output(args, **kwargs):
if not isinstance(args, (list, tuple)):
args = args.split()
return subprocess.check_output(('sudo',) + tuple(args), **kwargs)
def sudo_check_call(args, **kwargs):
if not isinstance(args, (list, tuple)):
args = args.split()
return subprocess.check_call(('sudo',) + tuple(args), **kwargs)
def tmpdownload(url, name=None, subdir=''):
if name is None:
name = os.path.basename(url)
_name = os.path.join(TEMP_DIR.name, subdir, name)
return urlretrieve(url, _name)
def find_library(libname):
if SYS_PLATFORM == 'win32': return
# TODO: This
def yes_no(question):
while True: # spooky
ri = raw_input('{} (y/n): '.format(question))
if ri.lower() in ['yes', 'y']: return True
elif ri.lower() in ['no', 'n']: return False
"""
Finding lib dev headers:
1. Get include dirs and search for headers
"echo | gcc -xc++ -E -v -" and parse for include dirs
linux subprocess.check_output("find /usr[/local]/include -iname 'ffi.h'", shell=True) (find /usr/include /usr/local/include ...?)
2. Have gcc deal with it and check the error output
gcc -lffi (Fail: cannot find -lffi) vs (Success: ... undefined reference to `main')
"""
###############################################################################
class SetupTask(object):
def __getattribute__(self, item):
try:
# Check for platform variant of function first
return object.__getattribute__(self, item + '_' + SYS_PLATFORM)
except:
pass
if item.endswith('_dist'):
try:
# check for dist aliases, ex: setup_dist -> setup_win32
return object.__getattribute__(self, item.rsplit('_', 1)[0] + '_' + SYS_PLATFORM)
except:
try:
# If there's no dist variant, try to fallback to the generic, ex: setup_dist -> setup
return object.__getattribute__(self, item.rsplit('_', 1)[0])
except:
pass
return object.__getattribute__(self, item)
@classmethod
def run(cls):
self = cls()
if not self.check():
self.setup(self.download())
def check(self):
"""
Check to see if the component exists and works
"""
pass
def download(self):
"""
Download the component
"""
pass
def setup(self, data):
"""
Install the componenet and any other required tasks
"""
pass
###############################################################################
class EnsurePython(SetupTask):
PYTHON_BASE = "https://www.python.org/ftp/python/{ver}/"
# For some reason only the tgz's have a capital P
PYTHON_TGZ = PYTHON_BASE + "Python-{ver}.tgz"
PYTHON_EXE = PYTHON_BASE + "python-{ver}.exe"
PYTHON_PKG = PYTHON_BASE + "python-{ver}-macosx10.6.pkg"
def check(self):
if PY_VERSION >= MINIMUM_PY_VERSION:
return True
# TODO: Check for python 3.5 and restart if found
def download_win32(self):
exe, _ = tmpdownload(self.PYTHON_EXE.format(ver=TARGET_PY_VERSION))
return exe
def setup_win32(self, data):
# https://docs.python.org/3/using/windows.html#installing-without-ui
args = {
'PrependPath': '1',
'InstallLauncherAllUsers': '0',
'Include_test': '0'
}
command = [data, '/quiet'] + ['='.join(x) for x in args.items()]
subprocess.check_call(command)
self._restart(None)
def download_linux(self):
tgz, _ = tmpdownload(self.PYTHON_TGZ.format(ver=TARGET_PY_VERSION))
return tgz
def setup_linux(self, data):
# tar -xf data
# do build process
if os.path.exists(PY_BUILD_DIR):
try:
shutil.rmtree(PY_BUILD_DIR)
except OSError:
sudo_check_call("rm -rf %s" % PY_BUILD_DIR)
subprocess.check_output("tar -xf {} -C {}".format(data, TEMP_DIR.name).split())
olddir = os.getcwd()
# chdir into it
os.chdir(PY_BUILD_DIR)
# Configure and make.
subprocess.check_call('./configure --enable-ipv6 --enable-shared --with-system-ffi --without-ensurepip'.split())
subprocess.check_call('make')
sudo_check_call("make install")
# Change back.
os.chdir(olddir)
executable = "python{}".format(TARGET_PY_VERSION[0:3])
self._restart(None)
# TODO: Move to _restart
# Restart into the new executable.
print("Rebooting into Python {}...".format(TARGET_PY_VERSION))
# Use os.execl to switch program
os.execl("/usr/local/bin/{}".format(executable), "{}".format(executable), __file__)
def download_darwin(self):
pkg, _ = tmpdownload(self.PYTHON_PKG.format(ver=TARGET_PY_VERSION))
return pkg
def setup_darwin(self, data):
subprocess.check_call(data.split()) # I hope this works?
self._restart(None)
def _restart(self, *cmds):
# TODO: os.execl
pass # Restart with 3.5 if needed
class EnsureEnv(SetupTask):
pass # basically the important checks from run.py, not sure exactly what I need to check though
class EnsureBrew(SetupTask):
def check(self):
if SYS_PLATFORM == 'darwin':
try:
subprocess.check_output(['brew'])
except FileNotFoundError:
return False
except subprocess.CalledProcessError:
pass
return True
def download(self):
cmd = '/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"'
subprocess.check_call(cmd, shell=True)
def setup(self, data):
subprocess.check_call('brew update'.split())
class EnsureGit(SetupTask):
WIN_OPTS = dedent("""
[Setup]
Lang=default
Group=Git
NoIcons=0
SetupType=default
Components=ext,ext\shellhere,assoc
Tasks=
PathOption=Cmd
SSHOption=OpenSSH
CRLFOption=CRLFAlways
BashTerminalOption=MinTTY
PerformanceTweaksFSCache=Enabled
""")
def check(self):
try:
subprocess.check_output(['git', '--version'])
except FileNotFoundError:
return False
return True
@staticmethod
def _get_latest_win_git_version():
version = ('2.10.1', 'v2.10.1.windows.1')
try:
url = "https://github.com/git-for-windows/git/releases/latest"
req = Request(url, method='HEAD')
with urlopen(req) as resp:
full_ver = os.path.basename(resp.url)
match = re.match(r'v(\d+\.\d+\.\d+)', full_ver)
return match.groups()[0], full_ver
except:
return version
@classmethod
def _get_latest_win_get_download(cls):
dist_ver, full_ver = cls._get_latest_win_git_version()
url = "https://github.com/git-for-windows/git/releases/download/{fullver}/Git-{ver}-{arch}-bit.exe"
return url.format(full_ver=full_ver, ver=dist_ver, arch=SYS_ARCH)
def download_win32(self):
result, _ = tmpdownload(self._get_latest_win_git_version(), 'git-setup.exe')
return result
def setup_win32(self, data):
with tempfile.NamedTemporaryFile('w+', encoding='utf8') as f:
f.file.write(self.WIN_OPTS)
f.file.flush()
args = [
data,
'/SILENT',
'/NORESTART',
'/NOCANCEL',
'/SP-',
'/LOG',
'/SUPPRESSMSGBOXES',
'/LOADINF="%s"' % f.name
]
subprocess.check_call(args)
def download_linux(self):
pass # need package manager abstraction
# def setup_linux(self, data):
# pass # nothing really needed, I don't think setting any git options is necessary
def download_darwin(self):
subprocess.check_call('brew install git'.split())
# def setup_darwin(self, data):
# pass # same as linux, probably can just delete these stubs
class EnsureFFmpeg(SetupTask):
AVCONV_CHECK = b"Please use avconv instead"
def check_win32(self):
return True # ffmpeg comes with the bot
def check(self):
try:
data = subprocess.check_output(['ffmpeg', '-version'], stderr=subprocess.STDOUT)
except FileNotFoundError:
return False
else:
return self.AVCONV_CHECK not in data
def download_linux(self):
# check if ubuntu, add ppa's, install
# otherwise check for other repo variants
# if all else fails: https://trac.ffmpeg.org/wiki/CompilationGuide
pass
def setup_linux(self, data):
pass
def download_darwin(self):
subprocess.check_call('brew install ffmpeg'.split())
class EnsureOpus(SetupTask):
"""
Locate libopus.so.0 or whatever it'd be called (maybe ctypes.find_library)
"""
def check_win32(self):
return True # opus comes with the lib
def check(self):
pass
def download_linux(self):
pass
def setup_linux(self, data):
pass
def download_darwin(self):
pass
def setup_darwin(self, data):
pass
class EnsureFFI(SetupTask):
"""
see: find_library up above
"""
def check_win32(self):
return True # cffi has wheels
def check(self):
pass
def download_linux(self):
pass
def setup_linux(self, data):
pass
def download_darwin(self):
pass
def setup_darwin(self, data):
pass
class EnsureSodium(SetupTask):
# This one is going to be weird since sometimes its not needed (check python import)
def check_win32(self):
return True
class EnsureCompiler(SetupTask):
# oh god
def check_win32(self):
return True # yay wheels
class EnsurePip(SetupTask):
def check(self):
# Check if pip is installed by importing it.
try:
import pip
except ImportError:
return False
else:
return True
def download(self):
# Try and use ensurepip.
try:
import ensurepip
return False
except ImportError:
# Download `get-pip.py`.
# We hope we have urllib.request, otherwise we're sort of fucked.
f = tempfile.NamedTemporaryFile(delete=False)
f.close() # we only want the name
print("Downloading pip...")
urlretrieve(GET_PIP, f.name)
return f.name
def setup(self, data):
if not data:
# It's safe to use ensurepip.
print("Installing pip...")
try:
import ensurepip
ensurepip.bootstrap()
except PermissionError:
# panic and try and sudo it
sudo_check_call("python3.5 -m ensurepip")
return
# Instead, we have to run get-pip.py.
print("Installing pip...")
try:
sudo_check_call(["python3.5", "{}".format(data)])
except FileNotFoundError:
subprocess.check_call(["python3.5", "{}".format(data)])
class GitCloneMusicbot(SetupTask):
GIT_URL = "https://github.com/Just-Some-Bots/MusicBot.git"
GIT_CMD = "git clone --depth 10 --no-single-branch %s %s" % (GIT_URL, INSTALL_DIR)
def download(self):
print("Cloning files using Git...")
if os.path.isdir(INSTALL_DIR):
r = yes_no('A folder called %s already exists here. Overwrite?' % INSTALL_DIR)
if r is False:
print('Exiting. Use the --dir parameter when running this script to specify a different folder.')
sys.exit(1)
else:
os.rmdir(INSTALL_DIR)
subprocess.check_call(self.GIT_CMD.split())
def setup(self, data):
os.chdir(INSTALL_DIR)
import pip
pip.main("install --upgrade -r requirements.txt".split())
class SetupMusicbot(SetupTask):
def _rm(self, f):
try:
return os.unlink(f)
except:
pass
def _rm_glob(self, p):
fs = glob(p)
for f in fs:
self._rm(f)
def _rm_dir(self, d):
return rmtree(d, ignore_errors=True)
def download(self): # lazy way to call a function on all platforms
self._rm('.dockerignore')
self._rm('Dockerfile')
def setup_win32(self, data):
self._rm_glob('*.sh')
self._rm_glob('*.command')
def setup_linux(self, data):
self._rm_glob('*.bat')
self._rm_glob('*.command')
self._rm_dir('bin')
def setup_darwin(self, data):
self._rm_glob('*.bat')
self._rm_glob('*.sh')
self._rm_dir('bin')
###############################################################################
def preface():
print(" MusicBot Bootstrapper (v0.1) ".center(50, '#'))
print("This script will install the MusicBot into a folder called '%s' in your current directory." % INSTALL_DIR,
"\nDepending on your system and environment, several packages and dependencies will be installed.",
"\nTo ensure there are no issues, you should probably run this script as an administrator.")
print()
raw_input("Press enter to begin. ")
print()
def main():
preface()
print("Bootstrapping MusicBot on Python %s." % '.'.join(list(map(str, PY_VERSION))))
EnsurePython.run()
EnsureBrew.run()
EnsureGit.run()
EnsureFFmpeg.run()
EnsureOpus.run()
EnsureFFI.run()
EnsureSodium.run()
EnsureCompiler.run()
EnsurePip.run()
GitCloneMusicbot.run()
SetupMusicbot.run()
if __name__ == '__main__':
try:
main()
except SystemExit:
pass
except Exception:
traceback.print_exc()
# noinspection PyUnboundLocalVariable
raw_input("An error has occured, press enter to exit. ")
finally:
TEMP_DIR.cleanup()