This repository has been archived by the owner on Apr 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain_handler.py
230 lines (193 loc) · 7.36 KB
/
main_handler.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
# Copyright (C) 2013 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.
"""Request Handler for /main endpoint."""
__author__ = 'jewang.net (Jennifer Wang)'
import jinja2
import logging
import os
import webapp2
from apiclient.http import HttpError
from google.appengine.api import memcache
import custom_item_fields
import util
jinja_environment = jinja2.Environment(
loader=jinja2.FileSystemLoader(os.path.dirname(__file__)))
TIMELINE_ITEM_TEMPLATE_URL = '/templates/card.html'
class _BatchCallback(object):
"""Class used to track batch request responses."""
def __init__(self):
"""Initialize a new _BatchCallbaclk object."""
self.success = 0
self.failure = 0
def callback(self, request_id, response, exception):
"""Method called on each HTTP Response from a batch request.
For more information, see
https://developers.google.com/api-client-library/python/guide/batch
"""
if exception is None:
self.success += 1
else:
self.failure += 1
logging.error(
'Failed to insert item for user %s: %s', request_id, exception)
class MainHandler(webapp2.RequestHandler):
"""Request Handler for the main endpoint."""
def _render_template(self, message=None):
"""Render the main page template."""
template_values = {'userId': self.userid}
if message:
template_values['message'] = message
# self.mirror_service is initialized in util.auth_required.
timeline = self.mirror_service.timeline().list().execute()
timeline_items = timeline.get('items', [])
# sort timeline items
timeline_items.sort(key=lambda x: x['created'])
# turn sourceItemId JSON string into a dictionary for templating
for item in timeline_items:
fields = custom_item_fields.get_fields_from_item(item)
item['sourceItemId'] = fields
template_values['timelineItems'] = timeline_items
template = jinja_environment.get_template('templates/index.html')
self.response.out.write(template.render(template_values))
@util.auth_required
def get(self):
"""Render the main page."""
# Get the flash message and delete it.
message = memcache.get(key=self.userid)
memcache.delete(key=self.userid)
self._render_template(message)
@util.auth_required
def post(self):
"""Execute the request and render the template."""
operation = self.request.get('operation')
# Dict of operations to easily map keys to methods.
operations = {
'newCounter': self._new_counter,
'deleteCounter': self._delete_counter,
'resetCounter': self._reset_counter,
'updateCounter': self._update_counter
}
if operation in operations:
message = operations[operation]()
else:
message = "I don't know how to " + operation
# Store the flash message for 5 seconds.
memcache.set(key=self.userid, value=message, time=5)
self.redirect('/')
def _delete_counter(self):
"""Deletes the user-specified timeline item."""
self.mirror_service.timeline().delete(
id=self.request.get('itemId')).execute()
return 'Counter Deleted'
def _update_counter(self):
"""Updates the counter to user input for given timeline item."""
item = self.mirror_service.timeline().get(
id=self.request.get('itemId')).execute()
new_fields = {
'name': self.request.get('name'),
'num': util.get_num(self.request.get('num'))
}
custom_item_fields.set_multiple(
item, new_fields, TIMELINE_ITEM_TEMPLATE_URL)
if 'notification' in item:
item.pop('notification')
self.mirror_service.timeline().update(
id=self.request.get('itemId'), body=item).execute()
return 'Counter Updated'
def _reset_counter(self):
"""Resets the counter for given timeline item."""
item = self.mirror_service.timeline().get(
id=self.request.get('itemId')).execute()
item = custom_item_fields.set(
item, 'num', 0, TIMELINE_ITEM_TEMPLATE_URL)
if 'notification' in item:
item.pop('notification')
self.mirror_service.timeline().update(
id=self.request.get('itemId'), body=item).execute()
return 'Counter Reset'
def _subscribe(self):
"""Subscribe to timeline notifications if not yet subscribed."""
subscriptions = self.mirror_service.subscriptions().list().execute()
for subscription in subscriptions.get('items', []):
if subscription.get('collection') == 'timeline':
return
logging.info('Subscribing to Timeline')
# self.userid is initialized in util.auth_required.
body = {
'collection': 'timeline',
'userToken': self.userid,
'callbackUrl': util.get_full_url(self, '/notify')
}
# self.mirror_service is initialized in util.auth_required.
self.mirror_service.subscriptions().insert(body=body).execute()
def _new_counter(self):
"""Insert a timeline item."""
logging.info('Inserting timeline item')
# Note that icons will not show up when making counters on a
# locally hosted web interface.
body = {
'notification': {'level': 'DEFAULT'},
'menuItems': [
{
'action': 'CUSTOM',
'id': 'increment',
'values': [{
'displayName': 'Increment',
'iconUrl': util.get_full_url(
self, '/static/images/up.png')}]
},
{
'action': 'CUSTOM',
'id': 'decrement',
'values': [{
'displayName': 'Decrement',
'iconUrl': util.get_full_url(
self, '/static/images/down.png')}]
},
{
'action': 'CUSTOM',
'id': 'reset',
'values': [{
'displayName': 'Set Counter to 0',
'iconUrl': util.get_full_url(
self, '/static/images/reset.png')}]
},
{'action': 'SHARE'},
{'action': 'TOGGLE_PINNED'},
{'action': 'DELETE'}
]
}
new_fields = {
'name': self.request.get('name'),
'num': util.get_num(self.request.get('num'))
}
custom_item_fields.set_multiple(
body, new_fields, TIMELINE_ITEM_TEMPLATE_URL)
# self.mirror_service is initialized in util.auth_required.
self.mirror_service.timeline().insert(body=body).execute()
# Subscribe to timeline notifications if not yet subscribed. A
# subscription should have been made during initial OAuth grant
# but user could have unsubscribed via /subscription for debugging.
try:
self._subscribe()
except HttpError:
return (
'A counter was made but '
'Notifications were not enabled because an HTTP Error occured. '
'A common cause of this problem is not using an HTTPS connection.'
)
return 'A new counter has been created.'
MAIN_ROUTES = [
('/', MainHandler)
]