-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateProgressBars.php
executable file
·92 lines (85 loc) · 4.21 KB
/
generateProgressBars.php
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
#!/usr/local/bin/php
<?php
class ProgressBarService {
public $batches = [];
public function __construct($batches) {
$this->batches = $batches;
if (!@mkdir('build', 0755) && !is_dir('build')) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', 'build'));
}
if (!@mkdir('build/images', 0755) && !is_dir('build/images')) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', 'build/images'));
}
}
public function render()
{
$now = new \DateTimeImmutable();
foreach ($this->batches as $batch) {
if ($now < $batch['start']) {
$progress = 0;
$remainingDays = 0;
} else if ($now > $batch['end']) {
$progress = 100;
$remainingDays = 0;
} else {
$allDays = (int)$batch['end']->diff($batch['start'])->format("%a)");
$currentDays = (int)$now->diff($batch['start'])->format('%a');
$remainingDays = $allDays - $currentDays;
$progress = $currentDays / ($allDays / 100);
}
$this->renderProgressBarImage($batch, $progress, $remainingDays);
echo $batch['name'] . ': ' . $progress . "\n";
}
}
public function renderProgressBarImage($batch, $progress, $remainingDays) {
$canvasWidth = 200;
$canvasHeight = 65;
$dpiFactor = 2;
$canvas = imagecreatetruecolor($canvasWidth*$dpiFactor, $canvasHeight*$dpiFactor);
imageantialias($canvas, true);
// Allocate colors
$green = imagecolorallocate($canvas, 4, 252, 109);
$greenDark = imagecolorallocate($canvas, 19, 138, 62);
$darkGrey = imagecolorallocate($canvas, 0, 34, 10);
$white = imagecolorallocate($canvas, 255, 255, 255);
// Set background
imagefilledrectangle($canvas, 0, 0, $canvasWidth*$dpiFactor, $canvasHeight*$dpiFactor, $white);
imagerectangle($canvas, 0, 0, $canvasWidth*$dpiFactor-1, $canvasHeight*$dpiFactor-1, $green);
$fontRegular = 'fonts/Share-Regular.ttf';
$fontBold = 'fonts/Share-Bold.ttf';
// Build remaining days text
$remainingDaysText = '';
if ($remainingDays > 0) {
$remainingDaysText = ' - noch ' . $remainingDays . ' Tage.';
}
// Add header
imagettftext($canvas, 10*$dpiFactor, 0, 10*$dpiFactor, 20*$dpiFactor, $darkGrey, $fontBold, strtoupper($batch['name']) . ' - Status:');
imagettftext($canvas, 7*$dpiFactor, 0, 10*$dpiFactor, 55*$dpiFactor, $darkGrey, $fontRegular, $batch['start']->format('d.m.Y') . ' bis ' . $batch['end']->format('d.m.Y') . $remainingDaysText);
// Draw three rectangles each with its own color
$spacing = 0;
$width = 10*$dpiFactor;
$blocks = 12;
$blockIndex = $blocks/100;
$rectangleWith = 10;
$progressIndex = $progress * $blockIndex;
for($i = 1; $i<=$blocks; $i++) {
if (ceil($progressIndex) >= $i) {
// Paint half filled boxes
if ((int) ceil($progressIndex) === $i) {
$fillWidth = ceil((($progress * $blockIndex) - ($i - 1)) * $rectangleWith);
imagefilledrectangle($canvas, ($i * 10 * $dpiFactor) + $spacing, 30 * $dpiFactor, ((($i - 1) * 10 * $dpiFactor) + $fillWidth * $dpiFactor) + $spacing + $width, 40 * $dpiFactor, $green);
} else {
imagefilledrectangle($canvas, ($i * 10 * $dpiFactor) + $spacing, 30 * $dpiFactor, ($i * 10 * $dpiFactor) + $spacing + $width, 40 * $dpiFactor, $green);
}
}
imagerectangle($canvas, ($i * 10 *$dpiFactor) + $spacing, 30*$dpiFactor, ($i * 10*$dpiFactor) + $spacing + $width, 40*$dpiFactor, $greenDark);
$spacing = $spacing + (3 * $dpiFactor);
}
imagettftext($canvas, 8*$dpiFactor, 0, 168*$dpiFactor, 39*$dpiFactor, $greenDark, $fontBold, floor($progress) . '%');
imagepng($canvas, 'build/images/progress-' . $batch['slug'] . '.png');
imagedestroy($canvas);
}
}
include('batches.php');
$progressBarService = new ProgressBarService($batches);
$progressBarService->render();