-
Notifications
You must be signed in to change notification settings - Fork 299
/
cors_webserver.py
executable file
·62 lines (50 loc) · 2.01 KB
/
cors_webserver.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
#!/usr/bin/env python
# @license
# Copyright 2017 Google Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Simple web server serving local files that permits cross-origin requests.
This can be used to view local data with Neuroglancer.
WARNING: Because this web server permits cross-origin requests, it exposes any
data in the directory that is served to any web page running on a machine that
can connect to the web server.
"""
import argparse
import os
import sys
from http.server import HTTPServer, SimpleHTTPRequestHandler
class RequestHandler(SimpleHTTPRequestHandler):
def end_headers(self):
self.send_header("Access-Control-Allow-Origin", "*")
SimpleHTTPRequestHandler.end_headers(self)
class Server(HTTPServer):
protocol_version = "HTTP/1.1"
def __init__(self, server_address):
HTTPServer.__init__(self, server_address, RequestHandler)
if __name__ == "__main__":
ap = argparse.ArgumentParser()
ap.add_argument(
"-p", "--port", type=int, default=9000, help="TCP port to listen on"
)
ap.add_argument("-a", "--bind", default="127.0.0.1", help="Bind address")
ap.add_argument("-d", "--directory", default=".", help="Directory to serve")
args = ap.parse_args()
os.chdir(args.directory)
server = Server((args.bind, args.port))
sa = server.socket.getsockname()
print("Serving directory %s at http://%s:%d" % (os.getcwd(), sa[0], sa[1]))
try:
server.serve_forever()
except KeyboardInterrupt:
server.server_close()
sys.exit(0)