|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of Jitamin. |
|
5
|
|
|
* |
|
6
|
|
|
* Copyright (C) Jitamin Team |
|
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 Jitamin\Model; |
|
13
|
|
|
|
|
14
|
|
|
use Jitamin\Foundation\Database\Model; |
|
15
|
|
|
|
|
16
|
|
|
/** |
|
17
|
|
|
* TaskLink model. |
|
18
|
|
|
*/ |
|
19
|
|
|
class TaskLinkModel extends Model |
|
20
|
|
|
{ |
|
21
|
|
|
/** |
|
22
|
|
|
* SQL table name. |
|
23
|
|
|
* |
|
24
|
|
|
* @var string |
|
25
|
|
|
*/ |
|
26
|
|
|
const TABLE = 'task_has_links'; |
|
27
|
|
|
|
|
28
|
|
|
/** |
|
29
|
|
|
* Events. |
|
30
|
|
|
* |
|
31
|
|
|
* @var string |
|
32
|
|
|
*/ |
|
33
|
|
|
const EVENT_CREATE_UPDATE = 'task_internal_link.create_update'; |
|
34
|
|
|
const EVENT_DELETE = 'task_internal_link.delete'; |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* Get projectId from $task_link_id. |
|
38
|
|
|
* |
|
39
|
|
|
* @param int $task_link_id |
|
40
|
|
|
* |
|
41
|
|
|
* @return int |
|
42
|
|
|
*/ |
|
43
|
|
|
public function getProjectId($task_link_id) |
|
44
|
|
|
{ |
|
45
|
|
|
return $this->db |
|
|
|
|
|
|
46
|
|
|
->table(self::TABLE) |
|
47
|
|
|
->eq(self::TABLE.'.id', $task_link_id) |
|
48
|
|
|
->join(TaskModel::TABLE, 'id', 'task_id') |
|
49
|
|
|
->findOneColumn(TaskModel::TABLE.'.project_id') ?: 0; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* Get a task link. |
|
54
|
|
|
* |
|
55
|
|
|
* @param int $task_link_id Task link id |
|
56
|
|
|
* |
|
57
|
|
|
* @return array |
|
58
|
|
|
*/ |
|
59
|
|
View Code Duplication |
public function getById($task_link_id) |
|
|
|
|
|
|
60
|
|
|
{ |
|
61
|
|
|
return $this->db |
|
|
|
|
|
|
62
|
|
|
->table(self::TABLE) |
|
63
|
|
|
->columns( |
|
64
|
|
|
self::TABLE.'.id', |
|
65
|
|
|
self::TABLE.'.opposite_task_id', |
|
66
|
|
|
self::TABLE.'.task_id', |
|
67
|
|
|
self::TABLE.'.link_id', |
|
68
|
|
|
LinkModel::TABLE.'.label', |
|
69
|
|
|
LinkModel::TABLE.'.opposite_id AS opposite_link_id' |
|
70
|
|
|
) |
|
71
|
|
|
->eq(self::TABLE.'.id', $task_link_id) |
|
72
|
|
|
->join(LinkModel::TABLE, 'id', 'link_id') |
|
73
|
|
|
->findOne(); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* Get the opposite task link (use the unique index task_has_links_unique). |
|
78
|
|
|
* |
|
79
|
|
|
* @param array $task_link |
|
80
|
|
|
* |
|
81
|
|
|
* @return array |
|
82
|
|
|
*/ |
|
83
|
|
|
public function getOppositeTaskLink(array $task_link) |
|
84
|
|
|
{ |
|
85
|
|
|
$opposite_link_id = $this->linkModel->getOppositeLinkId($task_link['link_id']); |
|
|
|
|
|
|
86
|
|
|
|
|
87
|
|
|
return $this->db->table(self::TABLE) |
|
|
|
|
|
|
88
|
|
|
->eq('opposite_task_id', $task_link['task_id']) |
|
89
|
|
|
->eq('task_id', $task_link['opposite_task_id']) |
|
90
|
|
|
->eq('link_id', $opposite_link_id) |
|
91
|
|
|
->findOne(); |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* Get all links attached to a task. |
|
96
|
|
|
* |
|
97
|
|
|
* @param int $task_id Task id |
|
98
|
|
|
* |
|
99
|
|
|
* @return array |
|
100
|
|
|
*/ |
|
101
|
|
|
public function getAll($task_id) |
|
102
|
|
|
{ |
|
103
|
|
|
return $this->db |
|
|
|
|
|
|
104
|
|
|
->table(self::TABLE) |
|
105
|
|
|
->columns( |
|
106
|
|
|
self::TABLE.'.id', |
|
107
|
|
|
self::TABLE.'.opposite_task_id AS task_id', |
|
108
|
|
|
LinkModel::TABLE.'.label', |
|
109
|
|
|
TaskModel::TABLE.'.title', |
|
110
|
|
|
TaskModel::TABLE.'.is_active', |
|
111
|
|
|
TaskModel::TABLE.'.project_id', |
|
112
|
|
|
TaskModel::TABLE.'.column_id', |
|
113
|
|
|
TaskModel::TABLE.'.color_id', |
|
114
|
|
|
TaskModel::TABLE.'.time_spent AS task_time_spent', |
|
115
|
|
|
TaskModel::TABLE.'.time_estimated AS task_time_estimated', |
|
116
|
|
|
TaskModel::TABLE.'.owner_id AS task_assignee_id', |
|
117
|
|
|
UserModel::TABLE.'.username AS task_assignee_username', |
|
118
|
|
|
UserModel::TABLE.'.name AS task_assignee_name', |
|
119
|
|
|
ColumnModel::TABLE.'.title AS column_title', |
|
120
|
|
|
ProjectModel::TABLE.'.name AS project_name' |
|
121
|
|
|
) |
|
122
|
|
|
->eq(self::TABLE.'.task_id', $task_id) |
|
123
|
|
|
->join(LinkModel::TABLE, 'id', 'link_id') |
|
124
|
|
|
->join(TaskModel::TABLE, 'id', 'opposite_task_id') |
|
125
|
|
|
->join(ColumnModel::TABLE, 'id', 'column_id', TaskModel::TABLE) |
|
126
|
|
|
->join(UserModel::TABLE, 'id', 'owner_id', TaskModel::TABLE) |
|
127
|
|
|
->join(ProjectModel::TABLE, 'id', 'project_id', TaskModel::TABLE) |
|
128
|
|
|
->asc(LinkModel::TABLE.'.id') |
|
129
|
|
|
->desc(ColumnModel::TABLE.'.position') |
|
130
|
|
|
->desc(TaskModel::TABLE.'.is_active') |
|
131
|
|
|
->asc(TaskModel::TABLE.'.position') |
|
132
|
|
|
->asc(TaskModel::TABLE.'.id') |
|
133
|
|
|
->findAll(); |
|
134
|
|
|
} |
|
135
|
|
|
|
|
136
|
|
|
/** |
|
137
|
|
|
* Get all links attached to a task grouped by label. |
|
138
|
|
|
* |
|
139
|
|
|
* @param int $task_id Task id |
|
140
|
|
|
* |
|
141
|
|
|
* @return array |
|
142
|
|
|
*/ |
|
143
|
|
|
public function getAllGroupedByLabel($task_id) |
|
144
|
|
|
{ |
|
145
|
|
|
$links = $this->getAll($task_id); |
|
146
|
|
|
$result = []; |
|
147
|
|
|
|
|
148
|
|
|
foreach ($links as $link) { |
|
149
|
|
|
if (!isset($result[$link['label']])) { |
|
150
|
|
|
$result[$link['label']] = []; |
|
151
|
|
|
} |
|
152
|
|
|
|
|
153
|
|
|
$result[$link['label']][] = $link; |
|
154
|
|
|
} |
|
155
|
|
|
|
|
156
|
|
|
return $result; |
|
157
|
|
|
} |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* Create a new link. |
|
161
|
|
|
* |
|
162
|
|
|
* @param int $task_id Task id |
|
163
|
|
|
* @param int $opposite_task_id Opposite task id |
|
164
|
|
|
* @param int $link_id Link id |
|
165
|
|
|
* |
|
166
|
|
|
* @return int|bool |
|
167
|
|
|
*/ |
|
168
|
|
|
public function create($task_id, $opposite_task_id, $link_id) |
|
169
|
|
|
{ |
|
170
|
|
|
$this->db->startTransaction(); |
|
|
|
|
|
|
171
|
|
|
|
|
172
|
|
|
$opposite_link_id = $this->linkModel->getOppositeLinkId($link_id); |
|
|
|
|
|
|
173
|
|
|
$task_link_id1 = $this->createTaskLink($task_id, $opposite_task_id, $link_id); |
|
174
|
|
|
$task_link_id2 = $this->createTaskLink($opposite_task_id, $task_id, $opposite_link_id); |
|
175
|
|
|
|
|
176
|
|
|
if ($task_link_id1 === false || $task_link_id2 === false) { |
|
177
|
|
|
$this->db->cancelTransaction(); |
|
|
|
|
|
|
178
|
|
|
|
|
179
|
|
|
return false; |
|
180
|
|
|
} |
|
181
|
|
|
|
|
182
|
|
|
$this->db->closeTransaction(); |
|
|
|
|
|
|
183
|
|
|
$this->fireEvents([$task_link_id1, $task_link_id2], self::EVENT_CREATE_UPDATE); |
|
|
|
|
|
|
184
|
|
|
|
|
185
|
|
|
return $task_link_id1; |
|
186
|
|
|
} |
|
187
|
|
|
|
|
188
|
|
|
/** |
|
189
|
|
|
* Update a task link. |
|
190
|
|
|
* |
|
191
|
|
|
* @param int $task_link_id Task link id |
|
192
|
|
|
* @param int $task_id Task id |
|
193
|
|
|
* @param int $opposite_task_id Opposite task id |
|
194
|
|
|
* @param int $link_id Link id |
|
195
|
|
|
* |
|
196
|
|
|
* @return bool |
|
197
|
|
|
*/ |
|
198
|
|
|
public function update($task_link_id, $task_id, $opposite_task_id, $link_id) |
|
199
|
|
|
{ |
|
200
|
|
|
$this->db->startTransaction(); |
|
|
|
|
|
|
201
|
|
|
|
|
202
|
|
|
$task_link = $this->getById($task_link_id); |
|
203
|
|
|
$opposite_task_link = $this->getOppositeTaskLink($task_link); |
|
204
|
|
|
$opposite_link_id = $this->linkModel->getOppositeLinkId($link_id); |
|
|
|
|
|
|
205
|
|
|
|
|
206
|
|
|
$result1 = $this->updateTaskLink($task_link_id, $task_id, $opposite_task_id, $link_id); |
|
207
|
|
|
$result2 = $this->updateTaskLink($opposite_task_link['id'], $opposite_task_id, $task_id, $opposite_link_id); |
|
208
|
|
|
|
|
209
|
|
View Code Duplication |
if ($result1 === false || $result2 === false) { |
|
|
|
|
|
|
210
|
|
|
$this->db->cancelTransaction(); |
|
|
|
|
|
|
211
|
|
|
|
|
212
|
|
|
return false; |
|
213
|
|
|
} |
|
214
|
|
|
|
|
215
|
|
|
$this->db->closeTransaction(); |
|
|
|
|
|
|
216
|
|
|
$this->fireEvents([$task_link_id, $opposite_task_link['id']], self::EVENT_CREATE_UPDATE); |
|
217
|
|
|
|
|
218
|
|
|
return true; |
|
219
|
|
|
} |
|
220
|
|
|
|
|
221
|
|
|
/** |
|
222
|
|
|
* Remove a link between two tasks. |
|
223
|
|
|
* |
|
224
|
|
|
* @param int $task_link_id |
|
225
|
|
|
* |
|
226
|
|
|
* @return bool |
|
227
|
|
|
*/ |
|
228
|
|
|
public function remove($task_link_id) |
|
229
|
|
|
{ |
|
230
|
|
|
$this->taskLinkEventJob->execute($task_link_id, self::EVENT_DELETE); |
|
|
|
|
|
|
231
|
|
|
|
|
232
|
|
|
$this->db->startTransaction(); |
|
|
|
|
|
|
233
|
|
|
|
|
234
|
|
|
$link = $this->getById($task_link_id); |
|
235
|
|
|
$link_id = $this->linkModel->getOppositeLinkId($link['link_id']); |
|
|
|
|
|
|
236
|
|
|
|
|
237
|
|
|
$result1 = $this->db |
|
|
|
|
|
|
238
|
|
|
->table(self::TABLE) |
|
239
|
|
|
->eq('id', $task_link_id) |
|
240
|
|
|
->remove(); |
|
241
|
|
|
|
|
242
|
|
|
$result2 = $this->db |
|
|
|
|
|
|
243
|
|
|
->table(self::TABLE) |
|
244
|
|
|
->eq('opposite_task_id', $link['task_id']) |
|
245
|
|
|
->eq('task_id', $link['opposite_task_id']) |
|
246
|
|
|
->eq('link_id', $link_id) |
|
247
|
|
|
->remove(); |
|
248
|
|
|
|
|
249
|
|
View Code Duplication |
if ($result1 === false || $result2 === false) { |
|
|
|
|
|
|
250
|
|
|
$this->db->cancelTransaction(); |
|
|
|
|
|
|
251
|
|
|
|
|
252
|
|
|
return false; |
|
253
|
|
|
} |
|
254
|
|
|
|
|
255
|
|
|
$this->db->closeTransaction(); |
|
|
|
|
|
|
256
|
|
|
|
|
257
|
|
|
return true; |
|
258
|
|
|
} |
|
259
|
|
|
|
|
260
|
|
|
/** |
|
261
|
|
|
* Publish events. |
|
262
|
|
|
* |
|
263
|
|
|
* @param int[] $task_link_ids |
|
264
|
|
|
* @param string $eventName |
|
265
|
|
|
*/ |
|
266
|
|
|
protected function fireEvents(array $task_link_ids, $eventName) |
|
267
|
|
|
{ |
|
268
|
|
|
foreach ($task_link_ids as $task_link_id) { |
|
269
|
|
|
$this->queueManager->push($this->taskLinkEventJob->withParams($task_link_id, $eventName)); |
|
|
|
|
|
|
270
|
|
|
} |
|
271
|
|
|
} |
|
272
|
|
|
|
|
273
|
|
|
/** |
|
274
|
|
|
* Create task link. |
|
275
|
|
|
* |
|
276
|
|
|
* @param int $task_id |
|
277
|
|
|
* @param int $opposite_task_id |
|
278
|
|
|
* @param int $link_id |
|
279
|
|
|
* |
|
280
|
|
|
* @return int|bool |
|
281
|
|
|
*/ |
|
282
|
|
View Code Duplication |
protected function createTaskLink($task_id, $opposite_task_id, $link_id) |
|
|
|
|
|
|
283
|
|
|
{ |
|
284
|
|
|
return $this->db->table(self::TABLE)->persist([ |
|
|
|
|
|
|
285
|
|
|
'task_id' => $task_id, |
|
286
|
|
|
'opposite_task_id' => $opposite_task_id, |
|
287
|
|
|
'link_id' => $link_id, |
|
288
|
|
|
]); |
|
289
|
|
|
} |
|
290
|
|
|
|
|
291
|
|
|
/** |
|
292
|
|
|
* Update task link. |
|
293
|
|
|
* |
|
294
|
|
|
* @param int $task_link_id |
|
295
|
|
|
* @param int $task_id |
|
296
|
|
|
* @param int $opposite_task_id |
|
297
|
|
|
* @param int $link_id |
|
298
|
|
|
* |
|
299
|
|
|
* @return bool |
|
300
|
|
|
*/ |
|
301
|
|
View Code Duplication |
protected function updateTaskLink($task_link_id, $task_id, $opposite_task_id, $link_id) |
|
|
|
|
|
|
302
|
|
|
{ |
|
303
|
|
|
return $this->db->table(self::TABLE)->eq('id', $task_link_id)->update([ |
|
|
|
|
|
|
304
|
|
|
'task_id' => $task_id, |
|
305
|
|
|
'opposite_task_id' => $opposite_task_id, |
|
306
|
|
|
'link_id' => $link_id, |
|
307
|
|
|
]); |
|
308
|
|
|
} |
|
309
|
|
|
} |
|
310
|
|
|
|
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.