forked from kriskbx/gitlab-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractOutput.php
More file actions
139 lines (116 loc) · 3.18 KB
/
AbstractOutput.php
File metadata and controls
139 lines (116 loc) · 3.18 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
<?php
namespace kriskbx\gtt\Output;
use kriskbx\gtt\Issue;
use kriskbx\gtt\Time;
use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\ConfirmationQuestion;
abstract class AbstractOutput implements \kriskbx\gtt\Output\OutputInterface
{
/**
* @var array
*/
protected $totalTimeByUser = [];
/**
* @var int
*/
protected $totalTime = 0;
/**
* @var int
*/
protected $totalEstimate = 0;
/**
* @var InputInterface
*/
protected $input;
/**
* @var OutputInterface
*/
protected $output;
/**
* @var QuestionHelper
*/
protected $questionHelper;
/**
* @var array
*/
protected $columns;
/**
* @var string
*/
protected $file;
/**
* Output constructor.
*
* @param InputInterface $input
* @param OutputInterface $output
* @param QuestionHelper $questionHelper
* @param array $columns
* @param string $file
*/
public function __construct(
InputInterface $input,
OutputInterface $output,
QuestionHelper $questionHelper,
array $columns,
$file
) {
$this->input = $input;
$this->output = $output;
$this->columns = $columns;
$this->questionHelper = $questionHelper;
$this->file = $file;
}
/**
* Add the times of the given issue to the total amount.
*
* @param Issue $issue
*/
protected function addToTotal(Issue $issue)
{
$this->totalEstimate += @$issue->getEstimation()->getTimeEstimate() ?: 0;
collect($issue->getTimes())->each(function ($times, $user) {
if ( ! @$this->totalTimeByUser[$user]) {
$this->totalTimeByUser[$user] = 0;
}
$times->each(function (Time $time) use ($user) {
$this->totalTimeByUser[$user] += $time->getSeconds();
$this->totalTime += $time->getSeconds();
});
});
}
/**
* Write the given contents to the given file.
*
* @param string $contents
* @param string $file
*
* @throws \Exception
*/
protected function write($contents, $file)
{
// WE NEED SPACES!
$this->output->writeln('');
$this->output->writeln('');
if ( ! $file) {
throw new \Exception('You have to specify a file path using the --file option!');
}
if (file_exists($file)) {
$question = new ConfirmationQuestion(
"File '{$file}' exist. Overwrite it?",
true,
'/^(y|j)/i'
);
if ( ! $this->questionHelper->ask($this->input, $this->output, $question)) {
throw new \Exception("Could not write file '{$file}'");
}
unlink($file);
}
if ( ! file_exists(dirname($file))) {
mkdir(dirname($file), 0755, true);
}
touch($file);
file_put_contents($file, $contents);
}
}