2018-05-17 00:19:49 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import json
|
2018-06-20 10:05:43 +03:00
|
|
|
import os
|
|
|
|
import ssl
|
|
|
|
import subprocess
|
2018-05-17 00:19:49 +03:00
|
|
|
import sys
|
2018-06-20 10:05:43 +03:00
|
|
|
import urllib2
|
|
|
|
|
|
|
|
ctx = ssl.create_default_context()
|
|
|
|
ctx.check_hostname = False
|
|
|
|
ctx.verify_mode = ssl.CERT_NONE
|
2018-05-17 00:19:49 +03:00
|
|
|
|
|
|
|
def check_tls(verbose):
|
2018-06-20 10:05:43 +03:00
|
|
|
process = subprocess.Popen(
|
2018-09-13 19:57:39 +03:00
|
|
|
'node lib/tls',
|
2018-06-20 10:05:43 +03:00
|
|
|
cwd=os.path.dirname(os.path.realpath(__file__)),
|
|
|
|
shell=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT
|
|
|
|
)
|
|
|
|
|
|
|
|
port = process.stdout.readline()
|
2018-06-20 10:12:09 +03:00
|
|
|
localhost_url = 'https://localhost:' + port
|
2018-06-20 10:05:43 +03:00
|
|
|
|
2018-06-20 10:12:09 +03:00
|
|
|
response = json.load(urllib2.urlopen(localhost_url, context=ctx))
|
2018-06-20 10:05:43 +03:00
|
|
|
tls = response['protocol']
|
|
|
|
process.wait()
|
2018-05-17 00:19:49 +03:00
|
|
|
|
|
|
|
if sys.platform == "linux" or sys.platform == "linux2":
|
|
|
|
tutorial = "./docs/development/build-instructions-linux.md"
|
|
|
|
elif sys.platform == "darwin":
|
2018-09-28 06:16:38 +03:00
|
|
|
tutorial = "./docs/development/build-instructions-macos.md"
|
2018-05-17 00:19:49 +03:00
|
|
|
elif sys.platform == "win32":
|
|
|
|
tutorial = "./docs/development/build-instructions-windows.md"
|
|
|
|
else:
|
|
|
|
tutorial = "build instructions for your operating system" \
|
|
|
|
+ "in ./docs/development/"
|
|
|
|
|
2018-06-20 10:05:43 +03:00
|
|
|
if tls == "TLSv1" or tls == "TLSv1.1":
|
2018-05-17 00:19:49 +03:00
|
|
|
print "Your system/python combination is using an outdated security" \
|
|
|
|
+ "protocol and will not be able to compile Electron. Please see " \
|
|
|
|
+ tutorial + "." \
|
|
|
|
+ "for instructions on how to update Python."
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
if verbose:
|
2018-06-11 11:23:59 +03:00
|
|
|
print "Your Python is using " + tls + ", which is sufficient for " \
|
2018-05-17 00:19:49 +03:00
|
|
|
+ "building Electron."
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
check_tls(True)
|
|
|
|
sys.exit(0)
|