1d0825bca7fe65beaee391d30da42e937db621564Steve Block# Copyright (C) 2009 Google Inc. All rights reserved.
2231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block#
3231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# Redistribution and use in source and binary forms, with or without
4231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# modification, are permitted provided that the following conditions are
5231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# met:
6231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block#
7231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block#     * Redistributions of source code must retain the above copyright
8231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# notice, this list of conditions and the following disclaimer.
9231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block#     * Redistributions in binary form must reproduce the above
10231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# copyright notice, this list of conditions and the following disclaimer
11231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# in the documentation and/or other materials provided with the
12231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# distribution.
13231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block#     * Neither the name of Google Inc. nor the names of its
14231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# contributors may be used to endorse or promote products derived from
15231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# this software without specific prior written permission.
16231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block#
17231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
29d0825bca7fe65beaee391d30da42e937db621564Steve Blockfrom google.appengine.ext import webapp
30d0825bca7fe65beaee391d30da42e937db621564Steve Blockfrom google.appengine.ext.webapp import template
31231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
32d0825bca7fe65beaee391d30da42e937db621564Steve Blockfrom model.queuestatus import QueueStatus
33231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
34231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
35d0825bca7fe65beaee391d30da42e937db621564Steve Blockclass Patch(webapp.RequestHandler):
36d0825bca7fe65beaee391d30da42e937db621564Steve Block    def get(self, attachment_id_string):
37d0825bca7fe65beaee391d30da42e937db621564Steve Block        attachment_id = int(attachment_id_string)
38d0825bca7fe65beaee391d30da42e937db621564Steve Block        statuses = QueueStatus.all().filter("active_patch_id =", attachment_id).order("-date")
39231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
40d0825bca7fe65beaee391d30da42e937db621564Steve Block        bug_id = None
41d0825bca7fe65beaee391d30da42e937db621564Steve Block        queue_status = {}
42d0825bca7fe65beaee391d30da42e937db621564Steve Block        for status in statuses:
43d0825bca7fe65beaee391d30da42e937db621564Steve Block            bug_id = status.active_bug_id # Should be the same for every status.
44d0825bca7fe65beaee391d30da42e937db621564Steve Block            per_queue_statuses = queue_status.get(status.queue_name, [])
45d0825bca7fe65beaee391d30da42e937db621564Steve Block            per_queue_statuses.append(status)
46d0825bca7fe65beaee391d30da42e937db621564Steve Block            queue_status[status.queue_name] = per_queue_statuses
47231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
48d0825bca7fe65beaee391d30da42e937db621564Steve Block        template_values = {
49d0825bca7fe65beaee391d30da42e937db621564Steve Block            "attachment_id" : attachment_id,
50d0825bca7fe65beaee391d30da42e937db621564Steve Block            "bug_id" : bug_id,
51d0825bca7fe65beaee391d30da42e937db621564Steve Block            "queue_status" : queue_status,
52d0825bca7fe65beaee391d30da42e937db621564Steve Block        }
53d0825bca7fe65beaee391d30da42e937db621564Steve Block        self.response.out.write(template.render("templates/patch.html", template_values))
54