forked from labnol/google-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mirror.py
270 lines (222 loc) · 8.87 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
#!/usr/bin/env python
# Copyright 2008 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 ([email protected])"
import datetime
import hashlib
import logging
import pickle
import re
import time
import urllib
import wsgiref.handlers
from google.appengine.api import memcache
from google.appengine.api import urlfetch
from google.appengine.ext import db
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
EXPIRATION_RECENT_URLS_SECONDS = 90
## DEBUG = True
## EXPIRATION_DELTA_SECONDS = 10
## EXPIRATION_RECENT_URLS_SECONDS = 1
HTTP_PREFIX = "http://"
HTTPS_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
MAX_URL_DISPLAY_LENGTH = 50
################################################################################
def get_url_key_name(url):
url_hash = hashlib.sha256()
url_hash.update(url)
return "hash_" + url_hash.hexdigest()
################################################################################
class EntryPoint(db.Model):
translated_address = db.TextProperty(required=True)
last_updated = db.DateTimeProperty(auto_now=True)
display_address = db.TextProperty()
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
# If the transformed content is over 1MB, truncate it (yikes!)
if len(content) > MAX_CONTENT_SIZE:
logging.warning('Content is over 1MB; truncating')
content = content[:MAX_CONTENT_SIZE]
new_content = MirroredContent(
base_url=base_url,
original_address=mirrored_url,
translated_address=translated_address,
status=response.status_code,
headers=adjusted_headers,
data=content)
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)
return new_content
################################################################################
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:]
class HomeHandler(BaseHandler):
def get(self):
# 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)
latest_urls = memcache.get('latest_urls')
if latest_urls is None:
latest_urls = EntryPoint.gql("ORDER BY last_updated DESC").fetch(25)
# Generate a display address that truncates the URL, adds an ellipsis.
# This is never actually saved in the Datastore.
for entry_point in latest_urls:
entry_point.display_address = \
entry_point.translated_address[:MAX_URL_DISPLAY_LENGTH]
if len(entry_point.display_address) == MAX_URL_DISPLAY_LENGTH:
entry_point.display_address += '...'
if not memcache.add('latest_urls', latest_urls,
time=EXPIRATION_RECENT_URLS_SECONDS):
logging.error('memcache.add failed: latest_urls')
# Do this dictionary construction here, to decouple presentation from
# how we store data.
secure_url = None
if self.request.scheme == "http":
secure_url = "https://mirrorrr.appspot.com"
context = {
"latest_urls": latest_urls,
"secure_url": secure_url,
}
self.response.out.write(template.render("main.html", context))
class MirrorHandler(BaseHandler):
def get(self, base_url):
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)
# Store the entry point down here, once we know the request is good and
# there has been a cache miss (i.e., the page expired). If the referrer
# wasn't local, or it was '/', then this is an entry point.
if (cache_miss and
'Googlebot' not in self.request.user_agent and
'Slurp' not in self.request.user_agent and
(not self.request.referer.startswith(self.request.host_url) or
self.request.referer == self.request.host_url + "/")):
# Ignore favicons as entry points; they're a common browser fetch on
# every request for a new site that we need to special case them here.
if not self.request.url.endswith("favicon.ico"):
logging.info("Inserting new entry point")
entry_point = EntryPoint(
key_name=key_name,
translated_address=translated_address)
try:
entry_point.put()
except (db.Error, apiproxy_errors.Error):
logging.exception("Could not insert EntryPoint")
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"/([^/]+).*", MirrorHandler)
], debug=DEBUG)