]> git.ozlabs.org Git - patchwork/blob - apps/patchwork/utils.py
63daa85c541fd77a845a3e9a952222cd827e5742
[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, 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         str = 'added to new bundle "%s"' % bundle.name
104         auth_required = False
105
106     elif action =='add':
107         bundle = get_object_or_404(Bundle, id = data['bundle_id'])
108         str = 'added to bundle "%s"' % bundle.name
109         auth_required = False
110
111     elif action =='remove':
112         bundle = get_object_or_404(Bundle, id = data['removed_bundle_id'])
113         str = 'removed from bundle "%s"' % bundle.name
114         auth_required = False
115
116     if not bundle:
117         return ['no such bundle']
118
119     for patch in patches:
120         if action == 'create' or action == 'add':
121             bundle.append_patch(patch)
122
123         elif action == 'remove':
124             bundle.patches.remove(patch)
125
126     if len(patches) > 0:
127         if len(patches) == 1:
128             str = 'patch ' + str
129         else:
130             str = 'patches ' + str
131         context.add_message(str)
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