-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathmirror.py
239 lines (194 loc) · 7.31 KB
/
mirror.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#!/usr/bin/env python
# Copyright 2008-2014 Brett Slatkin
#
# 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.
__author__ = "Brett Slatkin (bslatkin@gmail.com)"
import datetime
import hashlib
import logging
import re
import time
import urllib
import wsgiref.handlers
from google.appengine.api import memcache
from google.appengine.api import urlfetch
import webapp2
from google.appengine.ext.webapp import template
from google.appengine.runtime import apiproxy_errors
import transform_content
###############################################################################
DEBUG = False
EXPIRATION_DELTA_SECONDS = 3600
# DEBUG = True
# EXPIRATION_DELTA_SECONDS = 10
HTTP_PREFIX = "http://"
IGNORE_HEADERS = frozenset([
"set-cookie",
"expires",
"cache-control",
# Ignore hop-by-hop headers
"connection",
"keep-alive",
"proxy-authenticate",
"proxy-authorization",
"te",
"trailers",
"transfer-encoding",
"upgrade",
])
TRANSFORMED_CONTENT_TYPES = frozenset([
"text/html",
"text/css",
])
MAX_CONTENT_SIZE = 10 ** 6 - 600
###############################################################################
def get_url_key_name(url):
url_hash = hashlib.sha256()
url_hash.update(url)
return "hash_" + url_hash.hexdigest()
###############################################################################
class MirroredContent(object):
def __init__(self, original_address, translated_address,
status, headers, data, base_url):
self.original_address = original_address
self.translated_address = translated_address
self.status = status
self.headers = headers
self.data = data
self.base_url = base_url
@staticmethod
def get_by_key_name(key_name):
return memcache.get(key_name)
@staticmethod
def fetch_and_store(key_name, base_url, translated_address, mirrored_url):
"""Fetch and cache a page.
Args:
key_name: Hash to use to store the cached page.
base_url: The hostname of the page that's being mirrored.
translated_address: The URL of the mirrored page on this site.
mirrored_url: The URL of the original page. Hostname should match
the base_url.
Returns:
A new MirroredContent object, if the page was successfully retrieved.
None if any errors occurred or the content could not be retrieved.
"""
logging.debug("Fetching '%s'", mirrored_url)
try:
response = urlfetch.fetch(mirrored_url)
except (urlfetch.Error, apiproxy_errors.Error):
logging.exception("Could not fetch URL")
return None
adjusted_headers = {}
for key, value in response.headers.iteritems():
adjusted_key = key.lower()
if adjusted_key not in IGNORE_HEADERS:
adjusted_headers[adjusted_key] = value
content = response.content
page_content_type = adjusted_headers.get("content-type", "")
for content_type in TRANSFORMED_CONTENT_TYPES:
# startswith() because there could be a 'charset=UTF-8' in the header.
if page_content_type.startswith(content_type):
content = transform_content.TransformContent(base_url, mirrored_url,
content)
break
new_content = MirroredContent(
base_url=base_url,
original_address=mirrored_url,
translated_address=translated_address,
status=response.status_code,
headers=adjusted_headers,
data=content)
# Do not memcache content over 1MB
if len(content) < MAX_CONTENT_SIZE:
if not memcache.add(key_name, new_content, time=EXPIRATION_DELTA_SECONDS):
logging.error('memcache.add failed: key_name = "%s", '
'original_url = "%s"', key_name, mirrored_url)
else:
logging.warning("Content is over 1MB; not memcached")
return new_content
###############################################################################
class WarmupHandler(webapp2.RequestHandler):
def get(self):
pass
class BaseHandler(webapp2.RequestHandler):
def get_relative_url(self):
slash = self.request.url.find("/", len(self.request.scheme + "://"))
if slash == -1:
return "/"
return self.request.url[slash:]
def is_recursive_request(self):
if "AppEngine-Google" in self.request.headers.get("User-Agent", ""):
logging.warning("Ignoring recursive request by user-agent=%r; ignoring")
self.error(404)
return True
return False
class HomeHandler(BaseHandler):
def get(self):
if self.is_recursive_request():
return
# Handle the input form to redirect the user to a relative url
form_url = self.request.get("url")
if form_url:
# Accept URLs that still have a leading 'http://'
inputted_url = urllib.unquote(form_url)
if inputted_url.startswith(HTTP_PREFIX):
inputted_url = inputted_url[len(HTTP_PREFIX):]
return self.redirect("/" + inputted_url)
# Do this dictionary construction here, to decouple presentation from
# how we store data.
secure_url = None
if self.request.scheme == "http":
secure_url = "https://%s%s" % (self.request.host, self.request.path_qs)
context = {
"secure_url": secure_url,
}
self.response.out.write(template.render("main.html", context))
class MirrorHandler(BaseHandler):
def get(self, base_url):
if self.is_recursive_request():
return
assert base_url
# Log the user-agent and referrer, to see who is linking to us.
logging.debug('User-Agent = "%s", Referrer = "%s"',
self.request.user_agent,
self.request.referer)
logging.debug('Base_url = "%s", url = "%s"', base_url, self.request.url)
translated_address = self.get_relative_url()[1:] # remove leading /
mirrored_url = HTTP_PREFIX + translated_address
# Use sha256 hash instead of mirrored url for the key name, since key
# names can only be 500 bytes in length; URLs may be up to 2KB.
key_name = get_url_key_name(mirrored_url)
logging.info("Handling request for '%s' = '%s'", mirrored_url, key_name)
content = MirroredContent.get_by_key_name(key_name)
cache_miss = False
if content is None:
logging.debug("Cache miss")
cache_miss = True
content = MirroredContent.fetch_and_store(key_name, base_url,
translated_address,
mirrored_url)
if content is None:
return self.error(404)
for key, value in content.headers.iteritems():
self.response.headers[key] = value
if not DEBUG:
self.response.headers["cache-control"] = \
"max-age=%d" % EXPIRATION_DELTA_SECONDS
self.response.out.write(content.data)
###############################################################################
app = webapp2.WSGIApplication([
(r"/", HomeHandler),
(r"/main", HomeHandler),
(r"/_ah/warmup", WarmupHandler),
(r"/([^/]+).*", MirrorHandler),
], debug=DEBUG)