forked from aseigneurin/spark-ui-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spark-ui-proxy.py
133 lines (113 loc) · 5.17 KB
/
spark-ui-proxy.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
#!/usr/bin/env python
# MIT License
#
# Copyright (c) 2016 Alexis Seigneurin
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import SocketServer
import logging
import os
import sys
import urllib2
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
BIND_ADDR = os.environ.get("BIND_ADDR", "0.0.0.0")
SERVER_PORT = int(os.environ.get("SERVER_PORT", "80"))
URL_PREFIX = os.environ.get("URL_PREFIX", "").rstrip('/') + '/'
SPARK_MASTER_HOST = ""
class ProxyHandler(BaseHTTPRequestHandler):
def do_GET(self):
# Add an health checking endpoint.
if self.path in ["/healthz"]:
self.send_response(code=200)
self.send_header("Content-type", "text/plain")
self.end_headers()
self.wfile.write("OK")
return
# redirect if we are hitting the home page
if self.path in ["", URL_PREFIX]:
self.send_response(302)
self.send_header("Location", URL_PREFIX + "proxy:" + SPARK_MASTER_HOST)
self.end_headers()
return
self.proxyRequest(None)
def do_POST(self):
length = int(self.headers.getheader('content-length'))
postData = self.rfile.read(length)
self.proxyRequest(postData)
def proxyRequest(self, data):
targetHost, path = self.extractUrlDetails(self.path)
targetUrl = "http://" + targetHost + path
print("get: %s host: %s path: %s target: %s" % (self.path, targetHost, path, targetUrl))
try:
proxiedRequest = urllib2.urlopen(targetUrl, data)
except Exception as ue:
logging.error("Caught an exception trying to reach [ {0} ]".format(targetUrl))
raise ue
resCode = proxiedRequest.getcode()
if resCode == 200:
page = proxiedRequest.read()
page = self.rewriteLinks(page, targetHost)
resContentType = proxiedRequest.info()["Content-Type"]
self.send_response(200)
self.send_header("Content-Type", resContentType)
self.end_headers()
self.wfile.write(page)
elif resCode == 302:
self.send_response(302)
self.send_header("Location", URL_PREFIX + "proxy:" + SPARK_MASTER_HOST)
self.end_headers()
else:
raise Exception("Unsupported response: " + resCode)
def extractUrlDetails(self, path):
if path.startswith(URL_PREFIX + "proxy:"):
start_idx = len(URL_PREFIX) + 6 # len('proxy:') == 6
idx = path.find("/", start_idx)
targetHost = path[start_idx:] if idx == -1 else path[start_idx:idx]
path = "" if idx == -1 else path[idx:]
else:
targetHost = SPARK_MASTER_HOST
path = path
return (targetHost, path)
def rewriteLinks(self, page, targetHost):
target = "{0}proxy:{1}/".format(URL_PREFIX, targetHost)
page = page.replace('href="/', 'href="' + target)
page = page.replace("'<div><a href=' + logUrl + '>'",
"'<div><a href=' + location.origin + logUrl.replace('http://', '/proxy:') + '>'")
page = page.replace('href="log', 'href="' + target + 'log')
page = page.replace('href="http://', 'href="' + URL_PREFIX + 'proxy:')
page = page.replace('src="/', 'src="' + target)
page = page.replace('action="', 'action="' + target)
page = page.replace('"/api/v1/', '"' + target + 'api/v1/')
page = page.replace('{{uiroot}}/history', '{{uiroot}}' + target + 'history')
return page
if __name__ == '__main__':
if len(sys.argv) < 2:
print("Usage: <proxied host:port> [<proxy port>]")
sys.exit(1)
SPARK_MASTER_HOST = sys.argv[1]
if len(sys.argv) >= 3:
SERVER_PORT = int(sys.argv[2])
print("Starting server on http://{0}:{1}".format(BIND_ADDR, SERVER_PORT))
class ForkingHTTPServer(SocketServer.ForkingMixIn, HTTPServer):
def finish_request(self, request, client_address):
request.settimeout(30)
HTTPServer.finish_request(self, request, client_address)
server_address = (BIND_ADDR, SERVER_PORT)
httpd = ForkingHTTPServer(server_address, ProxyHandler)
httpd.serve_forever()