1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Tinyissue package. |
5
|
|
|
* |
6
|
|
|
* (c) Mohamed Alsharaf <[email protected]> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Tinyissue\Form; |
13
|
|
|
|
14
|
|
|
use Tinyissue\Model; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Issue is a class to defines fields & rules for add/edit issue form. |
18
|
|
|
* |
19
|
|
|
* @author Mohamed Alsharaf <[email protected]> |
20
|
|
|
*/ |
21
|
|
|
class Issue extends FormAbstract |
22
|
|
|
{ |
23
|
|
|
/** |
24
|
|
|
* An instance of project model. |
25
|
|
|
* |
26
|
|
|
* @var Model\Project |
27
|
|
|
*/ |
28
|
|
|
protected $project; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Collection of all tags. |
32
|
|
|
* |
33
|
|
|
* @var \Illuminate\Database\Eloquent\Collection |
34
|
|
|
*/ |
35
|
|
|
protected $tags = null; |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @param string $type |
39
|
|
|
* |
40
|
|
|
* @return \Illuminate\Database\Eloquent\Collection|null |
41
|
|
|
*/ |
42
|
7 |
View Code Duplication |
protected function getTags($type = null) |
|
|
|
|
43
|
|
|
{ |
44
|
7 |
|
if ($this->tags === null) { |
45
|
7 |
|
$this->tags = (new Model\Tag())->getGroupTags(); |
46
|
|
|
} |
47
|
|
|
|
48
|
7 |
|
if ($type) { |
|
|
|
|
49
|
7 |
|
return $this->tags->where('name', $type)->first()->tags; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
return $this->tags; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* Get issue tag for specific type/group. |
57
|
|
|
* |
58
|
|
|
* @param string $type |
59
|
|
|
* |
60
|
|
|
* @return int |
61
|
|
|
*/ |
62
|
7 |
|
protected function getIssueTag($type) |
63
|
|
|
{ |
64
|
7 |
|
if ($this->isEditing()) { |
65
|
2 |
|
$groupId = $this->getTags($type)->first()->parent_id; |
66
|
2 |
|
$selectedTag = $this->getModel()->tags->where('parent_id', $groupId); |
67
|
|
|
|
68
|
2 |
|
if ($selectedTag->count() > 0) { |
69
|
|
|
return $selectedTag->last(); |
70
|
|
|
} |
71
|
|
|
} |
72
|
|
|
|
73
|
7 |
|
return new Model\Tag(); |
|
|
|
|
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* @param array $params |
78
|
|
|
* |
79
|
|
|
* @return void |
80
|
|
|
*/ |
81
|
6 |
|
public function setup(array $params) |
82
|
|
|
{ |
83
|
6 |
|
$this->project = $params['project']; |
84
|
6 |
|
if (!empty($params['issue'])) { |
85
|
2 |
|
$this->editingModel($params['issue']); |
86
|
|
|
} |
87
|
6 |
|
} |
88
|
|
|
|
89
|
|
|
/** |
90
|
|
|
* @return array |
91
|
|
|
*/ |
92
|
6 |
|
public function actions() |
93
|
|
|
{ |
94
|
|
|
return [ |
95
|
6 |
|
'submit' => $this->isEditing() ? 'update_issue' : 'create_issue', |
96
|
|
|
]; |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
/** |
100
|
|
|
* @return array |
101
|
|
|
*/ |
102
|
6 |
|
public function fields() |
103
|
|
|
{ |
104
|
6 |
|
$issueModify = \Auth::user()->permission('issue-modify'); |
105
|
|
|
|
106
|
6 |
|
$fields = $this->fieldTitle(); |
107
|
6 |
|
$fields += $this->fieldBody(); |
108
|
6 |
|
$fields += $this->fieldTypeTags(); |
109
|
|
|
|
110
|
|
|
// Only on creating new issue |
111
|
6 |
|
if (!$this->isEditing()) { |
112
|
5 |
|
$fields += $this->fieldUpload(); |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
// Show fields for users with issue modify permission |
116
|
6 |
|
if ($issueModify) { |
117
|
6 |
|
$fields += $this->issueModifyFields(); |
118
|
|
|
} |
119
|
|
|
|
120
|
6 |
|
return $fields; |
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
/** |
124
|
|
|
* Return a list of fields for users with issue modify permission. |
125
|
|
|
* |
126
|
|
|
* @return array |
127
|
|
|
*/ |
128
|
6 |
|
protected function issueModifyFields() |
129
|
|
|
{ |
130
|
6 |
|
$fields = []; |
131
|
|
|
|
132
|
6 |
|
$fields['internal_status'] = [ |
133
|
|
|
'type' => 'legend', |
134
|
|
|
]; |
135
|
|
|
|
136
|
|
|
// Status tags |
137
|
6 |
|
$fields += $this->fieldStatusTags(); |
138
|
|
|
|
139
|
|
|
// Assign users |
140
|
6 |
|
$fields += $this->fieldAssignedTo(); |
141
|
|
|
|
142
|
|
|
// Quotes |
143
|
6 |
|
$fields += $this->fieldTimeQuote(); |
144
|
|
|
|
145
|
|
|
// Resolution tags |
146
|
6 |
|
$fields += $this->fieldResolutionTags(); |
147
|
|
|
|
148
|
6 |
|
return $fields; |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
/** |
152
|
|
|
* Returns title field. |
153
|
|
|
* |
154
|
|
|
* @return array |
155
|
|
|
*/ |
156
|
7 |
|
protected function fieldTitle() |
157
|
|
|
{ |
158
|
|
|
return [ |
159
|
|
|
'title' => [ |
160
|
|
|
'type' => 'text', |
161
|
|
|
'label' => 'title', |
162
|
7 |
|
], |
163
|
|
|
]; |
164
|
|
|
} |
165
|
|
|
|
166
|
|
|
/** |
167
|
|
|
* Returns body field. |
168
|
|
|
* |
169
|
|
|
* @return array |
170
|
|
|
*/ |
171
|
7 |
|
protected function fieldBody() |
172
|
|
|
{ |
173
|
|
|
return [ |
174
|
|
|
'body' => [ |
175
|
|
|
'type' => 'textarea', |
176
|
|
|
'label' => 'issue', |
177
|
7 |
|
], |
178
|
|
|
]; |
179
|
|
|
} |
180
|
|
|
|
181
|
|
|
/** |
182
|
|
|
* Returns status tag field. |
183
|
|
|
* |
184
|
|
|
* @return array |
185
|
|
|
*/ |
186
|
6 |
View Code Duplication |
protected function fieldStatusTags() |
|
|
|
|
187
|
|
|
{ |
188
|
6 |
|
$currentTag = $this->getIssueTag('status'); |
189
|
|
|
|
190
|
6 |
|
if ($currentTag && !$currentTag->canView()) { |
|
|
|
|
191
|
|
|
$tags = [$currentTag]; |
192
|
|
|
} else { |
193
|
6 |
|
$tags = $this->getTags('status'); |
194
|
|
|
} |
195
|
|
|
|
196
|
6 |
|
$options = []; |
197
|
6 |
|
foreach ($tags as $tag) { |
|
|
|
|
198
|
6 |
|
$options[ucwords($tag->name)] = [ |
199
|
6 |
|
'name' => 'tag_status', |
200
|
6 |
|
'value' => $tag->id, |
201
|
6 |
|
'data-tags' => $tag->id, |
202
|
6 |
|
'color' => $tag->bgcolor, |
203
|
|
|
]; |
204
|
|
|
} |
205
|
|
|
|
206
|
6 |
|
$fields['tag_status'] = [ |
|
|
|
|
207
|
6 |
|
'label' => 'status', |
208
|
6 |
|
'type' => 'radioButton', |
209
|
6 |
|
'radios' => $options, |
210
|
6 |
|
'check' => $this->getIssueTag('status')->id, |
211
|
|
|
]; |
212
|
|
|
|
213
|
6 |
|
return $fields; |
214
|
|
|
} |
215
|
|
|
|
216
|
|
|
/** |
217
|
|
|
* Returns tags field. |
218
|
|
|
* |
219
|
|
|
* @return array |
220
|
|
|
*/ |
221
|
7 |
View Code Duplication |
protected function fieldTypeTags() |
|
|
|
|
222
|
|
|
{ |
223
|
7 |
|
$currentTag = $this->getIssueTag('type'); |
224
|
|
|
|
225
|
7 |
|
if ($currentTag && !$currentTag->canView()) { |
|
|
|
|
226
|
|
|
$tags = [$currentTag]; |
227
|
|
|
} else { |
228
|
7 |
|
$tags = $this->getTags('type'); |
229
|
|
|
} |
230
|
|
|
|
231
|
7 |
|
$options = []; |
232
|
7 |
|
foreach ($tags as $tag) { |
|
|
|
|
233
|
7 |
|
$options[ucwords($tag->name)] = [ |
234
|
7 |
|
'name' => 'tag_type', |
235
|
7 |
|
'value' => $tag->id, |
236
|
7 |
|
'data-tags' => $tag->id, |
237
|
7 |
|
'color' => $tag->bgcolor, |
238
|
|
|
]; |
239
|
|
|
} |
240
|
|
|
|
241
|
7 |
|
$fields['tag_type'] = [ |
|
|
|
|
242
|
7 |
|
'label' => 'type', |
243
|
7 |
|
'type' => 'radioButton', |
244
|
7 |
|
'radios' => $options, |
245
|
7 |
|
'check' => $this->getIssueTag('type')->id, |
246
|
|
|
]; |
247
|
|
|
|
248
|
7 |
|
return $fields; |
249
|
|
|
} |
250
|
|
|
|
251
|
|
|
/** |
252
|
|
|
* Returns tags field. |
253
|
|
|
* |
254
|
|
|
* @return array |
255
|
|
|
*/ |
256
|
6 |
|
protected function fieldResolutionTags() |
257
|
|
|
{ |
258
|
6 |
|
$currentTag = $this->getIssueTag('resolution'); |
259
|
|
|
|
260
|
6 |
|
if ($currentTag && !$currentTag->canView()) { |
|
|
|
|
261
|
|
|
$tags = [$currentTag]; |
262
|
|
|
} else { |
263
|
6 |
|
$tags = $this->getTags('resolution'); |
264
|
|
|
} |
265
|
|
|
|
266
|
|
|
$options = [ |
267
|
6 |
|
trans('tinyissue.none') => [ |
268
|
|
|
'name' => 'tag_resolution', |
269
|
|
|
'value' => 0, |
270
|
|
|
'data-tags' => 0, |
271
|
|
|
'color' => '#62CFFC', |
272
|
6 |
|
], |
273
|
|
|
]; |
274
|
6 |
|
foreach ($tags as $tag) { |
|
|
|
|
275
|
6 |
|
$options[ucwords($tag->name)] = [ |
276
|
6 |
|
'name' => 'tag_resolution', |
277
|
6 |
|
'value' => $tag->id, |
278
|
6 |
|
'data-tags' => $tag->id, |
279
|
6 |
|
'color' => $tag->bgcolor, |
280
|
|
|
]; |
281
|
|
|
} |
282
|
|
|
|
283
|
6 |
|
$fields['tag_resolution'] = [ |
|
|
|
|
284
|
6 |
|
'label' => 'resolution', |
285
|
6 |
|
'type' => 'radioButton', |
286
|
6 |
|
'radios' => $options, |
287
|
6 |
|
'check' => $this->getIssueTag('resolution')->id, |
288
|
|
|
]; |
289
|
|
|
|
290
|
6 |
|
return $fields; |
291
|
|
|
} |
292
|
|
|
|
293
|
|
|
/** |
294
|
|
|
* Returns assigned to field. |
295
|
|
|
* |
296
|
|
|
* @return array |
297
|
|
|
*/ |
298
|
6 |
|
protected function fieldAssignedTo() |
299
|
|
|
{ |
300
|
|
|
return [ |
301
|
|
|
'assigned_to' => [ |
302
|
6 |
|
'type' => 'select', |
303
|
6 |
|
'label' => 'assigned_to', |
304
|
6 |
|
'options' => [0 => ''] + $this->project->usersCanFixIssue()->get()->lists('fullname', 'id')->all(), |
305
|
6 |
|
'value' => (int) $this->project->default_assignee, |
306
|
|
|
], |
307
|
|
|
]; |
308
|
|
|
} |
309
|
|
|
|
310
|
|
|
/** |
311
|
|
|
* Returns upload field. |
312
|
|
|
* |
313
|
|
|
* @return array |
314
|
|
|
*/ |
315
|
6 |
|
protected function fieldUpload() |
316
|
|
|
{ |
317
|
6 |
|
$user = \Auth::guest() ? new Model\User() : \Auth::user(); |
318
|
6 |
|
$fields = $this->projectUploadFields('upload', $this->project, $user); |
319
|
6 |
|
$fields['upload']['label'] = 'attachments'; |
320
|
|
|
|
321
|
6 |
|
return $fields; |
322
|
|
|
} |
323
|
|
|
|
324
|
|
|
/** |
325
|
|
|
* Returns time quote field. |
326
|
|
|
* |
327
|
|
|
* @return array |
328
|
|
|
*/ |
329
|
6 |
|
protected function fieldTimeQuote() |
330
|
|
|
{ |
331
|
|
|
return [ |
332
|
|
|
'time_quote' => [ |
333
|
6 |
|
'type' => 'groupField', |
334
|
6 |
|
'label' => 'quote', |
335
|
|
|
'fields' => [ |
336
|
|
|
'h' => [ |
337
|
6 |
|
'type' => 'number', |
338
|
6 |
|
'append' => trans('tinyissue.hours'), |
339
|
6 |
|
'value' => $this->extractQuoteValue('h'), |
340
|
6 |
|
'addGroupClass' => 'col-sm-12 col-md-12 col-lg-4', |
341
|
|
|
], |
342
|
|
|
'm' => [ |
343
|
6 |
|
'type' => 'number', |
344
|
6 |
|
'append' => trans('tinyissue.minutes'), |
345
|
6 |
|
'value' => $this->extractQuoteValue('m'), |
346
|
6 |
|
'addGroupClass' => 'col-sm-12 col-md-12 col-lg-4', |
347
|
|
|
], |
348
|
|
|
], |
349
|
6 |
|
'addClass' => 'row issue-quote', |
350
|
|
|
], |
351
|
|
|
]; |
352
|
|
|
} |
353
|
|
|
|
354
|
|
|
/** |
355
|
|
|
* @return array |
356
|
|
|
*/ |
357
|
7 |
|
public function rules() |
358
|
|
|
{ |
359
|
|
|
$rules = [ |
360
|
7 |
|
'title' => 'required|max:200', |
361
|
|
|
'body' => 'required', |
362
|
|
|
]; |
363
|
|
|
|
364
|
7 |
|
return $rules; |
365
|
|
|
} |
366
|
|
|
|
367
|
|
|
/** |
368
|
|
|
* @return string |
369
|
|
|
*/ |
370
|
|
|
public function getRedirectUrl() |
371
|
|
|
{ |
372
|
|
|
if ($this->isEditing()) { |
373
|
|
|
return $this->getModel()->to('edit'); |
374
|
|
|
} |
375
|
|
|
|
376
|
|
|
return 'project/' . $this->project->id . '/issue/new'; |
377
|
|
|
} |
378
|
|
|
|
379
|
|
|
/** |
380
|
|
|
* Extract number of hours, or minutes, or seconds from a quote. |
381
|
|
|
* |
382
|
|
|
* @param string $part |
383
|
|
|
* |
384
|
|
|
* @return float|int |
385
|
|
|
*/ |
386
|
6 |
|
protected function extractQuoteValue($part) |
387
|
|
|
{ |
388
|
6 |
|
if ($this->getModel() instanceof Model\Project\Issue) { |
389
|
2 |
|
$seconds = $this->getModel()->time_quote; |
390
|
2 |
|
if ($part === 'h') { |
391
|
2 |
|
return floor($seconds / 3600); |
392
|
|
|
} |
393
|
|
|
|
394
|
2 |
|
if ($part === 'm') { |
395
|
2 |
|
return ($seconds / 60) % 60; |
396
|
|
|
} |
397
|
|
|
} |
398
|
|
|
|
399
|
5 |
|
return 0; |
400
|
|
|
} |
401
|
|
|
} |
402
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.