-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
160 lines (125 loc) · 4.61 KB
/
main.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
#!/usr/bin/env python
#
# Copyright 2007 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.
#
import jinja2
import os
import webapp2
import logging
import urllib
import urllib2
import rdf_parser
from google.appengine.api import users
import json
import robotparser
jinja_environment = jinja2.Environment(
loader=jinja2.FileSystemLoader(['templates', 'templates/examples']),
extensions=['jinja2.ext.autoescape'])
class MainHandler(webapp2.RequestHandler):
def get(self):
"""Serves the homepage"""
template = jinja_environment.get_template('index.html')
logout_url = users.create_logout_url('/')
user = users.get_current_user()
#token = channel.create_channel(user.user_id())
token = ''
self.response.out.write(template.render(user=user.email(),
token=token,
logout_url=logout_url))
class SampleHandler(webapp2.RequestHandler):
def get(self, sample):
"""Returns the content of a sample email with embedded structured data.
Args:
sample: The type of the sample email to return.
"""
google_now_date = self.request.get('googleNowDate')
template = jinja_environment.get_template(sample + '.html')
self.response.out.write(template.render())
def post(self, sample):
"""Returns the content of a sample email with embedded structured data.
Args:
sample: The type of the sample email to return.
"""
template = jinja_environment.get_template(sample + '.html')
if template:
self.response.out.write('success')
else:
self.error(404)
self.response.out.write('failure')
from urllib2 import urlopen
class FetchHandler(webapp2.RequestHandler):
def get(self):
response = {}
url = self.request.get('url')
rp = robotparser.RobotFileParser()
# TODO(ewag): find right url!
#rp.set_url("http://www.google.com/robots.txt")
#rp.read()
#if not rp.can_fetch('Googlebot', url):
# response['errors'].append('Content not crawlable. Check robots.txt file for crawl permission.')
document = urlopen(url)
(response['graph'],
response['errors']) = rdf_parser.parse_document(document)
self.response.out.write(json.dumps(response))
class ParseHandler(webapp2.RequestHandler):
def post(self):
response = {}
(response['graph'],
response['errors']) = rdf_parser.parse_string(self.request.body)
self.response.out.write(json.dumps(response))
import urlparse
class ActionProxyHandler(webapp2.RequestHandler):
def post(self):
response = {
'errors': []
}
data = json.loads(self.request.body)
method = data.get('method') if data.get('method') else 'GET'
url = None
result = None
try:
if method == 'GET':
result = urllib2.urlopen(('%s?%s' % (data['url'], urllib.urlencode(data['params']))))
else:
result = urllib2.urlopen(data['url'], urllib.urlencode(data['params']))
except urllib2.HTTPError as e:
result = e
except urllib2.URLError as e:
response['errors'].append(e.reason)
if result:
print dir(result)
print str(result)
debug = 'curl --request %s "%s"' % (method.upper(), result.geturl())
url_parts = result.geturl().split('?')
response['result'] = {
'url': url_parts[0],
'params': url_parts[1],
'code': '%s %s' % (str(result.getcode()), result.msg),
'debug': debug,
}
if result.getcode() == 200:
(response['graph'],
response['entities'],
response['warnings'],
response['errors']) = rdf_parser.parse_document(result)
print response
self.response.out.write(json.dumps(response))
app = webapp2.WSGIApplication([
webapp2.Route('/fetch', handler=FetchHandler, name='fetch'),
webapp2.Route('/parse', handler=ParseHandler, name='parse'),
webapp2.Route('/proxy', handler=ActionProxyHandler, name='action'),
webapp2.Route('/examples/<sample>', handler=SampleHandler, name='sample'),
('/', MainHandler),
], debug=True)