]> git.ozlabs.org Git - patchwork/blob - apps/patchwork/utils.py
Bundle reordering support
[patchwork] / apps / patchwork / utils.py
1 # Patchwork - automated patch tracking system
2 # Copyright (C) 2008 Jeremy Kerr <jk@ozlabs.org>
3 #
4 # This file is part of the Patchwork package.
5 #
6 # Patchwork is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # Patchwork is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Patchwork; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 from patchwork.forms import MultiplePatchForm
22 from patchwork.models import Bundle, Project, BundlePatch, State, UserProfile
23 from django.conf import settings
24 from django.shortcuts import render_to_response, get_object_or_404
25
26 def get_patch_ids(d, prefix = 'patch_id'):
27     ids = []
28
29     for (k, v) in d.items():
30         a = k.split(':')
31         if len(a) != 2:
32             continue
33         if a[0] != prefix:
34             continue
35         if not v:
36             continue
37         ids.append(a[1])
38
39     return ids
40
41 class Order(object):
42     order_map = {
43         'date':         'date',
44         'name':         'name',
45         'state':        'state__ordering',
46         'submitter':    'submitter__name',
47         'delegate':     'delegate__username',
48     }
49     default_order = ('date', True)
50
51     def __init__(self, str = None, editable = False):
52         self.reversed = False
53         self.editable = editable
54
55         if self.editable:
56             return
57
58         if str is None or str == '':
59             (self.order, self.reversed) = self.default_order
60             return
61
62         reversed = False
63         if str[0] == '-':
64             str = str[1:]
65             reversed = True
66
67         if str not in self.order_map.keys():
68             (self.order, self.reversed) = self.default_order
69             return
70
71         self.order = str
72         self.reversed = reversed
73
74     def __str__(self):
75         str = self.order
76         if self.reversed:
77             str = '-' + str
78         return str
79
80     def name(self):
81         return self.order
82
83     def reversed_name(self):
84         if self.reversed:
85             return self.order
86         else:
87             return '-' + self.order
88
89     def query(self):
90         q = self.order_map[self.order]
91         if self.reversed:
92             q = '-' + q
93         return q
94
95 bundle_actions = ['create', 'add', 'remove']
96 def set_bundle(user, project, action, data, patches, context):
97     # set up the bundle
98     bundle = None
99     if action == 'create':
100         bundle = Bundle(owner = user, project = project,
101                 name = data['bundle_name'])
102         bundle.save()
103         context.add_message("Bundle %s created" % bundle.name)
104
105     elif action =='add':
106         bundle = get_object_or_404(Bundle, id = data['bundle_id'])
107
108     elif action =='remove':
109         bundle = get_object_or_404(Bundle, id = data['removed_bundle_id'])
110
111     if not bundle:
112         return ['no such bundle']
113
114     for patch in patches:
115         if action == 'create' or action == 'add':
116             try:
117                 bundle.append_patch(patch)
118                 context.add_message("Patch '%s' added to bundle %s" % \
119                         (patch.name, bundle.name))
120             except Exception, ex:
121                 context.add_message("Couldn't add patch '%s' to bundle: %s" % \
122                         (patch.name, ex.message))
123
124         elif action == 'remove':
125             try:
126                 bp = BundlePatch.objects.get(bundle = bundle, patch = patch)
127                 bp.delete()
128                 context.add_message("Patch '%s' removed from bundle %s\n" % \
129                         (patch.name, bundle.name))
130             except Exception:
131                 pass
132
133     bundle.save()
134
135     return []
136
137
138 def set_patches(user, project, action, data, patches, context):
139     errors = []
140     form = MultiplePatchForm(project = project, data = data)
141
142     try:
143         project = Project.objects.get(id = data['project'])
144     except:
145         errors = ['No such project']
146         return (errors, form)
147
148     str = ''
149
150     # this may be a bundle action, which doesn't modify a patch. in this
151     # case, don't require a valid form, or patch editing permissions
152     if action in bundle_actions:
153         errors = set_bundle(user, project, action, data, patches, context)
154         return (errors, form)
155
156     if not form.is_valid():
157         errors = ['The submitted form data was invalid']
158         return (errors, form)
159
160     for patch in patches:
161         if not patch.is_editable(user):
162             errors.append('You don\'t have permissions to edit the ' + \
163                     'patch "%s"' \
164                     % patch.name)
165             continue
166
167         if action == 'update':
168             form.save(patch)
169             str = 'updated'
170
171         elif action == 'ack':
172             pass
173
174         elif action == 'archive':
175             patch.archived = True
176             patch.save()
177             str = 'archived'
178
179         elif action == 'unarchive':
180             patch.archived = True
181             patch.save()
182             str = 'un-archived'
183
184         elif action == 'delete':
185             patch.delete()
186             str = 'un-archived'
187
188
189     if len(patches) > 0:
190         if len(patches) == 1:
191             str = 'patch ' + str
192         else:
193             str = 'patches ' + str
194         context.add_message(str)
195
196     return (errors, form)
197
198 def userprofile_register_callback(user):
199     profile = UserProfile(user = user)
200     profile.save()
201