-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateChangelog.php
93 lines (78 loc) · 3.06 KB
/
generateChangelog.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
93
<?php
require 'vendor/autoload.php';
$projectKeys = [
'mtl' => [
'title' => 'Media Tech Lab',
'url' => 'https://media-tech-lab.com'
],
'promptmage' => [
'title' => 'PromptMage',
'url' => 'https://github.com/tsterbak/promptmage'
],
'pulsespotter' => [
'title' => 'PulseSpotter',
'url' => 'https://github.com/levrone1987/PulseSpotter'
],
'redaktool' => [
'title' => 'Redaktool',
'url' => 'https://github.com/kyr0/redaktool'
],
'tinqta' => [
'title' => 'tinqta',
'url' => 'https://github.com/bleeptrack/tinqta'
],
];
// Generate changelog
$files = glob('content/**/*.md', GLOB_BRACE);
$files = array_reverse($files);
$parsedown = new Parsedown();
$htmlContent = '';
foreach ($files as $file) {
$htmlContent .= '<hr>';
$markdownContent = file_get_contents($file);
// Get the parent directory name and parse it into a DateTime object
$dirName = basename(dirname($file));
list ($dirName, $projectKey) = explode('-', $dirName, 2);
$date = DateTime::createFromFormat('YmdHi', $dirName);
// Format the DateTime object to a human-readable format
$formattedDate = date_format($date, 'd.m.Y H:i');
// Prepend the formatted date to the content
$content = $parsedown->text($markdownContent);
$content = str_replace('<img src="', '<img src="' . $dirName .'-'. $projectKey . '/', $content);
$htmlContent .= '<div class="changelog-entry">
<a href="' . $projectKeys[$projectKey]['url'] . '" target="_blank" class="project">' . $projectKeys[$projectKey]['title'] . '</a> -
<span class="date">' . $formattedDate . '</span>' .
$content.'</div>';
}
$layout = file_get_contents('resources/layout/changelog.html');
$finalHtml = str_replace('###CONTENT###', $htmlContent, $layout);
if (!file_exists('build/changelog')) {
if (!mkdir('build/changelog') && !is_dir('build/changelog')) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', 'build/changelog'));
}
}
file_put_contents('build/changelog/index.html', $finalHtml);
// Copy CSS
$source = 'resources/css/style.css';
$destination = 'build/changelog/css/style.css';
if (!is_dir(dirname($destination))) {
if (!mkdir($concurrentDirectory = dirname($destination), 0777, true) && !is_dir($concurrentDirectory)) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
}
}
if (!copy($source, $destination)) {
echo "failed to copy $source...\n";
}
// Copy images
$imageFiles = glob('content/**/*.{jpg,png,webp}', GLOB_BRACE);
foreach ($imageFiles as $source) {
$destination = str_replace('content', 'build/changelog', $source);
if (!is_dir(dirname($destination))) {
if (!mkdir($concurrentDirectory = dirname($destination), 0777, true) && !is_dir($concurrentDirectory)) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
}
}
if (!copy($source, $destination)) {
echo "failed to copy $source...\n";
}
}