|
1 # Copyright (C) 2009 Google Inc. All rights reserved. |
|
2 # |
|
3 # Redistribution and use in source and binary forms, with or without |
|
4 # modification, are permitted provided that the following conditions are |
|
5 # met: |
|
6 # |
|
7 # * Redistributions of source code must retain the above copyright |
|
8 # notice, this list of conditions and the following disclaimer. |
|
9 # * Redistributions in binary form must reproduce the above |
|
10 # copyright notice, this list of conditions and the following disclaimer |
|
11 # in the documentation and/or other materials provided with the |
|
12 # distribution. |
|
13 # * Neither the name of Google Inc. nor the names of its |
|
14 # contributors may be used to endorse or promote products derived from |
|
15 # this software without specific prior written permission. |
|
16 # |
|
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
28 |
|
29 import operator |
|
30 |
|
31 from google.appengine.ext import webapp |
|
32 from google.appengine.ext.webapp import template |
|
33 |
|
34 from model.attachment import Attachment |
|
35 from model.workitems import WorkItems |
|
36 from model.queues import queues, name_with_underscores |
|
37 |
|
38 |
|
39 class StatusBubble(webapp.RequestHandler): |
|
40 # FIXME: This list probably belongs as part of a Queue object in queues.py |
|
41 # Arrays are bubble_name, queue_name |
|
42 _queues_to_display = [ |
|
43 ["style", "style-queue"], |
|
44 ["cr-linux", "chromium-ews"], |
|
45 ["gtk", "gtk-ews"], |
|
46 ["qt", "qt-ews"], |
|
47 ["mac", "mac-ews"], |
|
48 ["win", "win-ews"], |
|
49 ] |
|
50 |
|
51 # This asserts that all of the queues listed above are valid queue names. |
|
52 assert(reduce(operator.and_, map(lambda name_pair: name_pair[1] in queues, _queues_to_display))) |
|
53 |
|
54 def _build_bubble(self, queue_name_pair, attachment): |
|
55 bubble_name = queue_name_pair[0] |
|
56 queue_name = queue_name_pair[1] |
|
57 |
|
58 queue_status = attachment.status_for_queue(queue_name) |
|
59 bubble = { |
|
60 "name": bubble_name, |
|
61 "attachment_id": attachment.id, |
|
62 "queue_position": attachment.position_in_queue(queue_name), |
|
63 "state": attachment.state_from_queue_status(queue_status) if queue_status else "none", |
|
64 "status": queue_status, |
|
65 } |
|
66 return bubble |
|
67 |
|
68 def get(self, attachment_id): |
|
69 attachment = Attachment(int(attachment_id)) |
|
70 bubbles = [self._build_bubble(name_pair, attachment) for name_pair in self._queues_to_display] |
|
71 template_values = { |
|
72 "bubbles": bubbles, |
|
73 } |
|
74 self.response.out.write(template.render("templates/statusbubble.html", template_values)) |