156 lines
4.7 KiB
Python
156 lines
4.7 KiB
Python
import http.server
|
|
import urllib.parse
|
|
import socket
|
|
import threading
|
|
from logbook import Logger
|
|
import socketserver
|
|
|
|
pyfalog = Logger(__name__)
|
|
|
|
# noinspection PyPep8
|
|
HTML = '''
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
|
|
<title>pyfa Local Server</title>
|
|
<style type="text/css">
|
|
body {{ text-align: center; padding: 150px; }}
|
|
h1 {{ font-size: 40px; }}
|
|
h2 {{ font-size: 32px; }}
|
|
body {{ font: 20px Helvetica, sans-serif; color: #333; }}
|
|
#article {{ display: block; text-align: left; width: 650px; margin: 0 auto; }}
|
|
a {{ color: #dc8100; text-decoration: none; }}
|
|
a:hover {{ color: #333; text-decoration: none; }}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Layout from Short Circuit's CREST login. Shout out! https://github.com/farshield/shortcircuit -->
|
|
<div id="article">
|
|
<h1>pyfa</h1>
|
|
{0}
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
function extractFromHash(name, hash) {{
|
|
var match = hash.match(new RegExp(name + "=([^&]+)"));
|
|
return !!match && match[1];
|
|
}}
|
|
|
|
var hash = window.location.hash;
|
|
var token = extractFromHash("access_token", hash);
|
|
var step2 = extractFromHash("step2", hash);
|
|
|
|
function doRedirect() {{
|
|
if (token){{
|
|
// implicit authentication
|
|
var redirect = window.location.origin.concat('/?', window.location.hash.substr(1), '&step=2');
|
|
window.location = redirect;
|
|
}}
|
|
else {{
|
|
// user-defined
|
|
var redirect = window.location.href + '&step=2';
|
|
window.location = redirect;
|
|
}}
|
|
}}
|
|
|
|
// do redirect if we are not already on step 2
|
|
if (window.location.href.indexOf('step=2') == -1) {{
|
|
setTimeout(doRedirect(), 1000);
|
|
}}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
'''
|
|
|
|
|
|
# https://github.com/fuzzysteve/CREST-Market-Downloader/
|
|
class AuthHandler(http.server.BaseHTTPRequestHandler):
|
|
def do_GET(self):
|
|
if self.path == "/favicon.ico":
|
|
return
|
|
|
|
parsed_path = urllib.parse.urlparse(self.path)
|
|
parts = urllib.parse.parse_qs(parsed_path.query)
|
|
msg = ""
|
|
|
|
step2 = 'step' in parts
|
|
|
|
try:
|
|
if step2:
|
|
self.server.callback(parts)
|
|
pyfalog.info("Successfully logged into EVE.")
|
|
msg = "If you see this message then it means you should be logged into EVE SSO. You may close this window and return to the application."
|
|
else:
|
|
# For implicit mode, we have to serve up the page which will take the hash and redirect using a querystring
|
|
pyfalog.info("Processing response from EVE Online.")
|
|
msg = "Processing response from EVE Online"
|
|
except (KeyboardInterrupt, SystemExit):
|
|
raise
|
|
except Exception as ex:
|
|
pyfalog.error("Error logging into EVE")
|
|
pyfalog.error(ex)
|
|
msg = "<h2>Error</h2>\n<p>{}</p>".format(ex.message)
|
|
finally:
|
|
self.send_response(200)
|
|
self.end_headers()
|
|
self.wfile.write(str.encode(HTML.format(msg)))
|
|
|
|
if step2:
|
|
# Only stop once if we've received something in the querystring
|
|
self.server.stop()
|
|
|
|
def log_message(self, format, *args):
|
|
return
|
|
|
|
|
|
# http://code.activestate.com/recipes/425210-simple-stoppable-server-using-socket-timeout/
|
|
class StoppableHTTPServer(socketserver.TCPServer):
|
|
def server_bind(self):
|
|
# Can't use HTTPServer due to reliance on socket.getfqdn() which seems to be bugged.
|
|
# See https://github.com/pyfa-org/Pyfa/issues/1560#issuecomment-390095101
|
|
socketserver.TCPServer.server_bind(self)
|
|
host, port = self.server_address[:2]
|
|
self.server_name = host
|
|
self.server_port = port
|
|
|
|
# self.settings = CRESTSettings.getInstance()
|
|
|
|
self.socket.settimeout(1)
|
|
self.run = True
|
|
|
|
def get_request(self):
|
|
while self.run:
|
|
try:
|
|
sock, addr = self.socket.accept()
|
|
sock.settimeout(None)
|
|
return sock, addr
|
|
except socket.timeout:
|
|
pyfalog.warning("Server timed out waiting for connection")
|
|
pass
|
|
|
|
def stop(self):
|
|
pyfalog.warning("Setting pyfa server to stop.")
|
|
self.run = False
|
|
|
|
def serve(self, callback=None):
|
|
self.callback = callback
|
|
while self.run:
|
|
try:
|
|
self.handle_request()
|
|
except TypeError:
|
|
pyfalog.debug("Caught exception in serve")
|
|
pass
|
|
|
|
self.server_close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
httpd = StoppableHTTPServer(('', 6461), AuthHandler)
|
|
t = threading.Thread(target=httpd.serve)
|
|
input("Press <RETURN> to stop server\n")
|
|
httpd.stop()
|