forked from kriskbx/gitlab-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIssue.php
More file actions
207 lines (181 loc) · 4.02 KB
/
Issue.php
File metadata and controls
207 lines (181 loc) · 4.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<?php
namespace kriskbx\gtt;
use Gitlab\Model\Milestone;
use Gitlab\Model\Note;
use Gitlab\Model\Project;
use Gitlab\Model\User;
use Illuminate\Contracts\Support\Arrayable;
use kriskbx\gtt\Api\Issues;
use kriskbx\gtt\Api\IssueTimeStats;
use kriskbx\gtt\Helper\ArrayAccessForGetterMethods;
use kriskbx\gtt\Time\HasTimes;
use kriskbx\gtt\Time\TimeAble;
class Issue extends \Gitlab\Model\Issue implements \ArrayAccess, Arrayable, TimeAble
{
use ArrayAccessForGetterMethods, HasTimes;
/**
* Don't include these 'properties' in ArrayAccess or toArray method
* @var array
*/
protected $methodExceptions = [
'data',
'client'
];
/**
* Parse this properties as Carbon objects
* @var array
*/
protected $dates = [
'created_at',
'updated_at'
];
/**
* Parse this properties as arrays and implode them as a string.
* @var array
*/
protected $arrays = [
'labels'
];
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @return array
*/
public function getLabels()
{
return collect($this->labels)
->filter(function ($label) {
return ! in_array($label, $this->excludeLabels) &&
( ! $this->includeLabels || count($this->includeLabels) == 0 || in_array($label,
$this->includeLabels));
})
->toArray();
}
/**
* @return bool
*/
public function isClosed()
{
return $this->closed;
}
/**
* @return string
*/
public function getUpdatedAt()
{
return $this->updated_at;
}
/**
* @return string
*/
public function getCreatedAt()
{
return $this->created_at;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @return User
*/
public function getAssignee()
{
return $this->assignee;
}
/**
* @return User
*/
public function getAuthor()
{
return $this->author;
}
/**
* @return Milestone
*/
public function getMilestone()
{
return $this->milestone;
}
/**
* @return Project
*/
public function getProject()
{
return $this->project;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @return int
*/
public function getProjectId()
{
return $this->project_id;
}
/**
* @return int
*/
public function getIid()
{
return $this->iid;
}
/**
* @return int
*/
public function getId()
{
return $this->id;
}
public function getEstimate()
{
return $this->estimation->getHumanTimeEstimate() ?: 'N/A';
}
public function getTimeSpent()
{
return $this->estimation->getHumanTotalTimeSpent();
}
/**
* Set time stats (estimated, spent)
*
* @param int $hoursPerDay
* @param string $timeFormat
*/
public function setTimeStats($hoursPerDay = 8, $timeFormat = Time::TIME_FORMAT)
{
$stats = (new IssueTimeStats($this->client))->getTimeStats($this->project_id, $this->iid);
$stats['hours_per_day'] = $hoursPerDay;
$stats['time_format'] = $timeFormat;
$this->estimation = Estimation::fromArray($stats);
}
/**
* Fixing errors in GitLab PHP Api...
*
* @param int $page
* @param int $per_page
*
* @return Note[]
*/
public function showComments($page = 1, $per_page = 20)
{
$notes = array();
$data = (new Issues($this->client))->showComments($this->project->id, $this->iid, $page, $per_page);
foreach ($data as $note) {
$notes[] = Note::fromArray($this->getClient(), $this, $note);
}
return $notes;
}
}