Left: | ||
Right: |
OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # coding: utf-8 | 2 # coding: utf-8 |
3 | 3 |
4 # This file is part of Adblock Plus <https://adblockplus.org/>, | 4 # This file is part of Adblock Plus <https://adblockplus.org/>, |
5 # Copyright (C) 2006-2015 Eyeo GmbH | 5 # Copyright (C) 2006-2015 Eyeo GmbH |
6 # | 6 # |
7 # Adblock Plus is free software: you can redistribute it and/or modify | 7 # Adblock Plus is free software: you can redistribute it and/or modify |
8 # it under the terms of the GNU General Public License version 3 as | 8 # it under the terms of the GNU General Public License version 3 as |
9 # published by the Free Software Foundation. | 9 # published by the Free Software Foundation. |
10 # | 10 # |
11 # Adblock Plus is distributed in the hope that it will be useful, | 11 # Adblock Plus is distributed in the hope that it will be useful, |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 # GNU General Public License for more details. | 14 # GNU General Public License for more details. |
15 # | 15 # |
16 # You should have received a copy of the GNU General Public License | 16 # You should have received a copy of the GNU General Public License |
17 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 17 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
18 | 18 |
19 import io | |
20 import json | |
21 import os | |
22 import posixpath | |
23 import re | |
24 import urlparse | |
25 | |
19 import flask | 26 import flask |
20 import os | |
21 import re | |
22 from urlparse import urlparse | |
23 | 27 |
24 app = flask.Flask(__name__) | 28 app = flask.Flask(__name__) |
25 | 29 |
30 def get_scripts(dir, reldir=""): | |
31 for filename in os.listdir(dir): | |
32 path = os.path.join(dir, filename) | |
33 # "Relative path" will be the parameter passed in to require(), meaning | |
34 # that it always has to use forward slashes. | |
35 relpath = posixpath.join(reldir, filename) | |
36 if os.path.isdir(path): | |
37 for path, relpath in get_scripts(path, relpath): | |
38 yield path, relpath | |
39 elif os.path.splitext(path)[1] == ".js": | |
40 yield path, relpath | |
41 | |
26 def js_encode(str): | 42 def js_encode(str): |
27 return re.sub(r"(['\\])", r"\\\1", str) | 43 return json.dumps(str) |
44 | |
45 def script_as_string(path, sourceURL, backcompat): | |
46 if backcompat: | |
47 from jshydra.abp_rewrite import doRewrite | |
48 data = doRewrite([os.path.abspath(path)], []).decode("utf-8") | |
49 else: | |
50 with io.open(path, "r", encoding="utf-8") as handle: | |
51 data = handle.read() | |
52 data += "\n//# sourceURL=%s" % sourceURL | |
53 return js_encode(data) | |
28 | 54 |
29 @app.route("/<path:path>", methods = ["GET"]) | 55 @app.route("/<path:path>", methods = ["GET"]) |
30 @app.route("/", methods = ["GET"]) | 56 @app.route("/", methods = ["GET"]) |
31 def multiplex(path=""): | 57 def multiplex(path=""): |
32 request_url = urlparse(flask.request.url) | 58 request_url = urlparse.urlparse(flask.request.url) |
33 request_path = request_url.path | 59 request_path = request_url.path |
34 islib = request_path.startswith("/lib/") | 60 islib = request_path.startswith("/lib/") |
35 backcompat = request_url.query == "backcompat" | 61 backcompat = request_url.query == "backcompat" |
36 | 62 |
37 rootdir = os.path.dirname(__file__) | 63 rootdir = os.path.dirname(__file__) |
38 if not islib: | 64 if request_path == "/lib.js": |
39 rootdir = os.path.join("test") | 65 data = "" |
Sebastian Noack
2015/02/05 11:32:21
Instead concatenating the whole string here, you m
Wladimir Palant
2015/02/05 14:51:26
I think we are getting extremely nit-picky now, co
| |
40 | 66 for path, relpath in get_scripts(os.path.join(rootdir, "lib")): |
41 if islib or backcompat: | 67 url = urlparse.urljoin(flask.request.url, "/lib/" + relpath) |
42 path = flask.safe_join(rootdir, request_path.lstrip("/")) | 68 data += "require.sources[%s] = %s;\n" % ( |
43 if not os.path.isfile(path): | 69 js_encode(posixpath.splitext(relpath)[0]), |
44 return flask.abort(404) | 70 script_as_string(path, url, backcompat) |
45 | 71 ) |
46 module = os.path.splitext(request_path[len("/lib/"):])[0] | 72 return (data, 200, {"Content-Type": "application/javascript; charset=utf-8"} ) |
47 if backcompat: | 73 elif request_path == "/tests.js": |
48 from jshydra.abp_rewrite import doRewrite | 74 data = "var tests = [" |
49 data = doRewrite([os.path.abspath(path)], ["module=true"] if islib else [] ) | 75 for path, relpath in get_scripts(os.path.join(rootdir, "test", "tests")): |
50 data = re.sub(r"require\.scopes\[.*?\]", "require.scopes['%s']" % module, data) | 76 url = urlparse.urljoin(flask.request.url, "/tests/" + relpath) |
51 else: | 77 data += " %s,\n" % script_as_string(path, url, backcompat) |
52 with open(path, "rb") as file: | 78 data += "];" |
53 data = "require.scopes['%s'] = function(){var exports={};%s\nreturn expo rts;}();" % (module, file.read()) | |
54 return (data, 200, {"Content-Type": "application/javascript; charset=utf-8"} ) | 79 return (data, 200, {"Content-Type": "application/javascript; charset=utf-8"} ) |
55 else: | 80 else: |
81 if request_path.startswith("/lib/"): | |
82 rootdir = os.path.join(rootdir, "lib") | |
83 else: | |
84 rootdir = os.path.join(rootdir, "test") | |
56 if request_path.endswith("/"): | 85 if request_path.endswith("/"): |
57 request_path += "index.html" | 86 request_path += "index.html" |
58 return flask.send_from_directory(rootdir, request_path.lstrip("/")) | 87 return flask.send_from_directory(rootdir, request_path.lstrip("/")) |
59 | 88 |
60 if __name__ == "__main__": | 89 if __name__ == "__main__": |
61 app.run(debug=True) | 90 app.run(debug=True) |
OLD | NEW |