forked from pluginsGLPI/formcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoboFile.php
1026 lines (898 loc) · 32 KB
/
RoboFile.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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* ---------------------------------------------------------------------
* Formcreator is a plugin which allows creation of custom forms of
* easy access.
* ---------------------------------------------------------------------
* LICENSE
*
* This file is part of Formcreator.
*
* Formcreator is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Formcreator is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Formcreator. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
* @copyright Copyright © 2011 - 2020 Teclib'
* @license http://www.gnu.org/licenses/gpl.txt GPLv3+
* @link https://github.com/pluginsGLPI/formcreator/
* @link https://pluginsglpi.github.io/formcreator/
* @link http://plugins.glpi-project.org/#/plugin/formcreator
* ---------------------------------------------------------------------
*/
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
*/
require_once 'RoboFilePlugin.php';
class RoboFile extends RoboFilePlugin
{
protected static $banned = [
'dist',
'vendor',
'.git',
'.gitignore',
'.tx',
'.settings',
'.project',
'.buildpath',
'tools',
'tests',
'screenshot*.png',
'RoboFile*.php',
'plugin.xml',
'phpunit.xml.*',
'.travis.yml',
'save.sql',
];
protected function getProjectPath() {
return __DIR__;
}
protected function getPluginName() {
return basename($this->getProjectPath());
}
protected function getVersion() {
$setupFile = $this->getProjectPath(). "/setup.php";
$setupContent = file_get_contents($setupFile);
$constantName = "PLUGIN_" . strtoupper($this->getPluginName()) . "_VERSION";
$pattern = "#^define\('$constantName', '([^']*)'\);$#m";
preg_match($pattern, $setupContent, $matches);
if (isset($matches[1])) {
return $matches[1];
}
throw new Exception("Could not determine version of the plugin");
}
protected function getIsRelease() {
$currentRev = Git::getCurrentCommitHash();
$setupContent = Git::getFileFromGit('setup.php', $currentRev);
$constantName = "PLUGIN_" . strtoupper($this->getPluginName()) . "_IS_OFFICIAL_RELEASE";
$pattern = "#^define\('$constantName', ([^\)]*)\);$#m";
preg_match($pattern, $setupContent, $matches);
if (isset($matches[1])) {
return $matches[1];
}
throw new Exception("Could not determine release status of the plugin");
}
protected function getGLPIMinVersion() {
$setupFile = $this->getProjectPath(). "/setup.php";
$setupContent = file_get_contents($setupFile);
$constantName = "PLUGIN_" . strtoupper($this->getPluginName()) . "_GLPI_MIN_VERSION";
$pattern = "#^define\('$constantName', '([^']*)'\);$#m";
preg_match($pattern, $setupContent, $matches);
if (isset($matches[1])) {
return $matches[1];
}
throw new Exception("Could not determine version of the plugin");
}
/**
* Override to change the banned list
* @return array
*/
protected function getBannedFiles() {
return static::$banned;
}
//Own plugin's robo stuff
/**
* Build an redistribuable archive
*
* @param string $release 'release' if the archive is a release
*/
public function archiveBuild($release = 'release') {
$release = strtolower($release);
$version = $this->getVersion();
if (!SemVer::isSemVer($version)) {
throw new Exception("$version is not semver compliant. See http://semver.org/");
}
if ($release != 'release') {
if ($this->getIsRelease() === 'true') {
throw new Exception('The Official release constant must be false');
}
} else {
if ($this->getIsRelease() !== 'true') {
throw new Exception('The Official release constant must be true');
}
if (Git::tagExists($version)) {
throw new Exception("The tag $version already exists");
}
// if (!Git::isTagMatchesCurrentCommit($version)) {
// throw new Exception("HEAD is not pointing to the tag of the version to build");
// }
$versionTag = $this->getVersionTagFromXML($version);
if (!is_array($versionTag)) {
throw new Exception("The version does not exists in the XML file");
}
}
$this->taskGitStack()
->stopOnFail()
->add('data/font-awesome.php')
->commit('docs(changelog): update changelog')
->run();
// update version in package.json
$this->sourceUpdatePackageJson($version);
$this->updateChangelog();
$diff = $this->gitDiff(['package.json']);
$diff = implode("\n", $diff);
if ($diff != '') {
$this->taskGitStack()
->stopOnFail()
->add('package.json')
->commit('docs: bump version in package.json')
->run();
}
// Update locales
$this->localesGenerate();
$this->taskGitStack()
->stopOnFail()
->add('locales/*')
->commit('docs(locales): update translations')
->run();
$this->buildFaData();
$rev = 'HEAD';
$pluginName = $this->getPluginName();
$pluginPath = $this->getProjectPath();
$archiveWorkdir = "$pluginPath/output/dist/archive_workdir";
$archiveFile = "$pluginPath/output/dist/glpi-" . $this->getPluginName() . "-$version.tar.bz2";
if (is_file($archiveFile)) {
if (!is_writable(($archiveFile))) {
throw new \RuntimeException('Failed to delete previous build (file is not writable)' . $archiveFile);
}
unlink($archiveFile);
}
$this->taskDeleteDir($archiveWorkdir)->run();
mkdir($archiveWorkdir, 0777, true);
$filesToArchive = implode(' ', $this->getFileToArchive($rev));
// Extract from the repo all files we want to have in the redistribuable archive
$this->_exec("git archive --prefix=$pluginName/ $rev $filesToArchive | tar x -C '$archiveWorkdir'");
// Add extra files to workdir
$success = copy(__DIR__ . '/data/font-awesome_9.4.php', "$archiveWorkdir/$pluginName/data/font-awesome_9.4.php");
$success = $success && copy(__DIR__ . '/data/font-awesome_9.5.php', "$archiveWorkdir/$pluginName/data/font-awesome_9.5.php");
if (!$success) {
throw new RuntimeException("failed to generate Font Awesome resources");
}
// Add composer dependencies
$this->_exec("composer install --no-dev --working-dir='$archiveWorkdir/$pluginName'");
// Create the final archive
$this->taskPack($archiveFile)
->addDir("$pluginName", "$archiveWorkdir/$pluginName")
->run();
}
protected function getTrackedFiles($version) {
$output = [];
exec("git ls-tree -r '$version' --name-only", $output, $retCode);
if ($retCode != '0') {
throw new Exception("Unable to get tracked files");
}
return $output;
}
protected function getFileToArchive($version) {
$filesToArchive = $this->getTrackedFiles($version);
// prepare banned items for regex
$patterns = [];
foreach ($this->getBannedFiles() as $bannedItem) {
$pattern = "#" . preg_quote("$bannedItem", "#") . "#";
$pattern = str_replace("\\?", ".", $pattern);
$pattern = str_replace("\\*", ".*", $pattern);
$patterns[] = $pattern;
}
// remove banned files from the list
foreach ($patterns as $pattern) {
$filteredFiles = [];
foreach ($filesToArchive as $file) {
if (preg_match($pattern, $file) == 0) {
//Include the tracked file
$filteredFiles[] = $file;
}
}
// Repeat filtering from result with next banned files pattern
$filesToArchive = $filteredFiles;
}
return $filesToArchive;
}
protected function getPluginXMLDescription() {
$pluginXML = 'plugin.xml';
if (!is_file($pluginXML) || !is_readable($pluginXML)) {
throw Exception("plugin.xml file not found");
}
$xml = simplexml_load_string(file_get_contents($pluginXML));
if ($xml === false) {
throw new Exception("$pluginXML is not valid XML");
}
$json = json_encode($xml);
return json_decode($json, true);
}
protected function getVersionTagFromXML($versionToSearch) {
$xml = $this->getPluginXMLDescription();
foreach ($xml['versions']['version'] as $version) {
if ($version['num'] == $versionToSearch) {
// version found
return $version;
}
}
return null;
}
/**
* Update the changelog
*/
public function updateChangelog() {
exec("node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s", $output, $retCode);
if ($retCode > 0) {
throw new Exception("Failed to update the changelog");
}
$diff = $this->gitDiff(['CHANGELOG.md']);
$diff = implode("\n", $diff);
if ($diff != '') {
$this->taskGitStack()
->stopOnFail()
->add('CHANGELOG.md')
->commit('docs(changelog): update changelog')
->run();
}
return true;
}
public function localesExtract() {
$potfile = strtolower("glpi.pot");
$phpSources = "*.php ajax/*.php front/*.php inc/*.php inc/fields/*.php install/*.php js/*.php";
// extract locales from source code
$command = "xgettext $phpSources -o locales/$potfile -L PHP --add-comments=TRANS --from-code=UTF-8 --force-po";
$command.= " --keyword=_n:1,2,4t --keyword=__s:1,2t --keyword=__:1,2t --keyword=_e:1,2t --keyword=_x:1c,2,3t --keyword=_ex:1c,2,3t";
$command.= " --keyword=_sx:1c,2,3t --keyword=_nx:1c,2,3,5t";
$this->_exec($command);
return $this;
}
/**
* Build MO files
*
* @return void
*/
public function localesMo() {
$localesPath = $this->getProjectPath() . '/locales';
if ($handle = opendir($localesPath)) {
while (($file = readdir($handle)) !== false) {
if ($file != "." && $file != "..") {
$poFile = "$localesPath/$file";
if (pathinfo($poFile, PATHINFO_EXTENSION) == 'po') {
$moFile = str_replace('.po', '.mo', $poFile);
$command = "msgfmt $poFile -o $moFile";
$this->_exec($command);
}
}
}
closedir($handle);
}
return $this;
}
/**
*
* @param string $filename
* @param string $version
*/
protected function updateJsonFile($filename, $version) {
// get Package JSON
$filename = __DIR__ . "/$filename";
$jsonContent = file_get_contents($filename);
$jsonContent = json_decode($jsonContent, true);
// update version
if (empty($version)) {
echo "Version not found in setup.php\n";
return;
}
$jsonContent['version'] = $version;
file_put_contents($filename, json_encode($jsonContent, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . "\n");
}
/**
* @param $version
*/
protected function sourceUpdatePackageJson($version) {
$this->updateJsonFile('package.json', $version);
}
/**
* @param string $version
*/
protected function sourceUpdateComposerJson($version) {
$this->updateJsonFile('composer.json', $version);
}
/**
* Update headers in source files
*/
public function codeHeadersUpdate() {
$toUpdate = $this->getTrackedFiles('HEAD');
foreach ($toUpdate as $file) {
$this->replaceSourceHeader($file);
}
}
/**
* Read the header template from a file
* @throws Exception
* @return string
*/
protected static function getHeaderTemplate() {
if (empty($this->headerTemplate)) {
$this->headerTemplate = file_get_contents(__DIR__ . '/tools/HEADER');
if (empty($this->headerTemplate)) {
throw new Exception('Header template file not found');
}
}
$copyrightRegex = "#Copyright (\(c\)|©) (\d{4}\s*-\s*)(\d{4}) #iUm";
$year = date("Y");
$replacement = 'Copyright © ${2}' . $year . ' ';
$this->headerTemplate = preg_replace($copyrightRegex, $replacement, $this->headerTemplate);
return $this->headerTemplate;
}
/**
* Format header template for a file type based on extension
*
* @param string $extension
* @param string $template
* @return string
*/
protected function getFormatedHeaderTemplate($extension, $template) {
switch ($extension) {
case 'php':
case 'css':
$lines = explode("\n", $template);
foreach ($lines as &$line) {
$line = rtrim(" * $line");
}
return implode("\n", $lines);
break;
default:
return $template;
}
}
/**
* Update source code header in a source file
* @param string $filename
*/
protected function replaceSourceHeader($filename) {
$filename = __DIR__ . "/$filename";
// define regex for the file type
$ext = pathinfo($filename, PATHINFO_EXTENSION);
switch ($ext) {
case 'php':
$prefix = "\<\?php\\n/\*(\*)?\\n";
$replacementPrefix = "<?php\n/**\n";
$suffix = "\\n( )?\*/";
$replacementSuffix = "\n */";
break;
case 'css':
$prefix = "/\*(\*)?\\n";
$replacementPrefix = "/**\n";
$suffix = "\\n( )?\*/";
$replacementSuffix = "\n */";
break;
default:
// Unhandled file format
return;
}
// format header template for the file type
$header = trim($this->getHeaderTemplate());
$formatedHeader = $replacementPrefix . $this->getFormatedHeaderTemplate($ext, $header) . $replacementSuffix;
// get the content of the file to update
$source = file_get_contents($filename);
// update authors in formated template
$headerMatch = [];
$originalAuthors = [];
$authorsRegex = "#^.*(\@author .*)$#Um";
preg_match('#^' . $prefix . '(.*)' . $suffix . '#Us', $source, $headerMatch);
if (isset($headerMatch[0])) {
$originalHeader = $headerMatch[0];
preg_match_all($authorsRegex, $originalHeader, $originalAuthors);
if (!is_array($originalAuthors)) {
$originalAuthors = [$originalAuthors];
}
if (isset($originalAuthors[1])) {
$originalAuthors[1] = array_unique($originalAuthors[1]);
$originalAuthors = $this->getFormatedHeaderTemplate($ext, implode("\n", $originalAuthors[1]));
$countOfAuthors = preg_match_all($authorsRegex, $formatedHeader);
if ($countOfAuthors !== false) {
// Empty all author lines except the last one
$formatedHeader = preg_replace($authorsRegex, '', $formatedHeader, $countOfAuthors - 1);
// remove the lines previously reduced to zero
$lines = explode("\n", $formatedHeader);
$formatedHeader = [];
foreach ($lines as $line) {
if ($line !== '') {
$formatedHeader[] = $line;
};
}
$formatedHeader = implode("\n", $formatedHeader);
$formatedHeader = preg_replace($authorsRegex, $originalAuthors, $formatedHeader, 1);
}
}
}
// replace the header if it exists
$source = preg_replace('#^' . $prefix . '(.*)' . $suffix . '#Us', $formatedHeader, $source, 1);
if (empty($source)) {
throw new Exception("An error occurred while processing $filename");
}
file_put_contents($filename, $source);
}
/**
* @param array $files files to commit
* @param string $version1
* @param string $version2
*/
protected function gitDiff(array $files, $version1 = '', $version2 = '') {
if (count($files) < 1) {
$arg = '-u';
} else {
$arg = '"' . implode('" "', $files) . '"';
}
if ($version1 == '' && $version2 == '') {
$fromTo = '';
} else {
$fromTo = "$version1..$version2";
}
exec("git diff $fromTo -- $arg", $output, $retCode);
if ($retCode > 0) {
throw new Exception("Failed to diff $fromTo");
}
return $output;
}
protected function gitLog($a, $b = '', $options = []) {
$options = implode(' ', $options);
exec("git log $a..$b", $output, $retCode);
if ($retCode > 0) {
throw new Exception("Failed to log $a..$b");
}
return $output;
}
public function buildFaData() {
$versions = [
[
[
'fa' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.4.2/lib/font-awesome/webfonts/fa-regular-400.svg',
'fab' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.4.2/lib/font-awesome/webfonts/fa-brands-400.svg',
'fas' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.4.2/lib/font-awesome/webfonts/fa-solid-900.svg',
], // GLPI 9.4
'font-awesome_9.4.php',
],
/* In GLPI 9.5 Font Awesome is a node dependency
[
[
'fa' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.4.2/lib/font-awesome/webfonts/fa-regular-400.svg',
'fab' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.4.2/lib/font-awesome/webfonts/fa-brands-400.svg',
'fas' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.4.2/lib/font-awesome/webfonts/fa-solid-900.svg',
],
'font-awesome_9.5.php',
],
*/
];
foreach ($versions as $version) {
$fanames = [];
$searchRegex = '#glyph-name=\"([^\"]*)\"#i';
foreach ($version[0] as $key => $svgSource) {
$svg = file_get_contents($svgSource);
$matches = null;
preg_match_all($searchRegex, $svg, $matches);
foreach ($matches[1] as $name) {
$fanames["$key fa-$name"] = $name;
}
$list = '<?php' . PHP_EOL . 'return ' . var_export($fanames, true) . ';';
$outFile = __DIR__ . '/data/' . $version[1];
$size = file_put_contents($outFile, $list);
if ($size != strlen($list)) {
throw new RuntimeException('Failed to build the list of font awesome pictograms');
}
}
}
//For GLPI 9.5 and later
$versions = [
'font-awesome_9.5.php' => [
'package-lock.json' => 'https://raw.githubusercontent.com/glpi-project/glpi/9.5/bugfixes/package-lock.json',
],
];
$faRepo = 'https://raw.githubusercontent.com/FortAwesome/Font-Awesome';
$searchRegex = '#glyph-name=\"([^\"]*)\"#i';
foreach ($versions as $outFile => $version) {
// Determine all Font Awesome files sources
$outFile = __DIR__ . '/data/' . $outFile;
$json = $version['package-lock.json'];
$json = json_decode(file_get_contents($json), true);
$faVersion = $json['dependencies']['@fortawesome/fontawesome-free']['version'];
$faSvgFiles = [
'fa' => "$faRepo/$faVersion/webfonts/fa-regular-400.svg",
'fab' => "$faRepo/$faVersion/webfonts/fa-brands-400.svg",
'fas' => "$faRepo/$faVersion/webfonts/fa-solid-900.svg",
];
$fanames = [];
foreach ($faSvgFiles as $key => $svgSource) {
$svg = file_get_contents($svgSource);
$matches = null;
preg_match_all($searchRegex, $svg, $matches);
foreach ($matches[1] as $name) {
$fanames["$key fa-$name"] = $name;
}
$list = '<?php' . PHP_EOL . 'return ' . var_export($fanames, true) . ';';
$size = file_put_contents($outFile, $list);
if ($size != strlen($list)) {
throw new RuntimeException('Failed to build the list of font awesome pictograms');
}
}
}
}
public function buildLog($a, $b) {
$log = ConventionalChangelog::buildLog($a, $b);
echo implode(PHP_EOL, $log);
}
}
class Git
{
public static function getCurrentCommitHash() {
exec('git rev-parse HEAD', $output, $retCode);
if ($retCode != '0') {
throw new Exception("failed to get curent commit hash");
}
return $output[0];
}
public static function isTagMatchesCurrentCommit($tag) {
$commitHash = self::getCurrentCommitHash();
exec("git tag -l --contains $commitHash", $output, $retCode);
if (isset($output[0]) && $output[0] == $tag) {
return true;
}
return false;
}
public static function getTagOfCommit($hash) {
exec("git tag -l --contains $hash", $output, $retCode);
if (isset($output[0])) {
return $output[0];
}
return false;
}
public static function getTagDate($tag) {
exec("git log -1 --format=%ai $tag", $output, $retCode);
if ($retCode != '0') {
throw new Exception("failed to get date of a tag");
}
if (isset($output[0])) {
return new DateTime($output[0]);
}
return false;
}
/**
* get highest sember tag from list
* @param array $tags list of tags
*/
public static function getLastTag($tags, $prefix = '') {
// Remove prefix from all tags
if ($prefix !== '') {
$newTags = [];
foreach ($tags as $tag) {
if (substr($tag, 0, strlen($prefix)) == $prefix) {
$tag = substr($tag, strlen($prefix));
}
$newTags[] = $tag;
}
$tags = $newTags;
}
// get tags and keey only sember compatible ones
$tags = array_filter($tags, [SemVer::class, 'isSemVer']);
// Sort tags
usort($tags, function ($a, $b) {
return version_compare($a, $b);
});
return end($tags);
}
public static function createCommitList($commits) {
// Biuld list of commits, latest is oldest
$commitObjects = [];
foreach ($commits as $commit) {
$line = explode(' ', $commit, 2);
$commitObject = new StdClass();
$commitObject->hash = $line[0];
$commitObject->subject = $line[1];
$commitObjects[] = $commitObject;
$commitObject->body = self::getCommitBody($commitObject->hash);
}
return $commitObjects;
}
public static function getLog($a, $b = 'HEAD') {
exec("git log --oneline $a..$b", $output, $retCode);
if ($retCode != '0') {
// An error occured
throw new Exception("Unable to get log from the repository");
}
return $output;
}
public static function getRemotes() {
exec("git remote -v", $output, $retCode);
if ($retCode != '0') {
// An error occured
throw new Exception("Unable to get remotes of the repository");
}
$remotes = [];
foreach ($output as $line) {
$line = explode("\t", $line);
$line[1] = explode(' ', $line[1]);
$line[1] = $line[1][0];
// 0 = name
// 1 = URL
// 2 = (fetch) or (push)
if (strpos($line[1], 'git@') === 0) {
// remote type is SSH
$split = explode('@', $line[1]);
//$user = $split[0];
$split = explode(':', $split[1]);
$url = 'https://' . $split[0] . '/' . $split[1];
}
$remotes[$line[0]] = $url;
}
return $remotes;
}
public static function getAllTags() {
exec("git tag -l", $output, $retCode);
if ($retCode != '0') {
// An error occured
throw new Exception("Unable to get tags from the repository");
}
return $output;
}
public static function tagExists($version) {
$tags = self::getAllTags();
return in_array($version, $tags);
}
/**
* Get a file from git tree
* @param string $path
* @param string $rev a commit hash, a tag or a branch
* @throws Exception
* @return string content of the file
*/
public static function getFileFromGit($path, $rev) {
$output = shell_exec("git show $rev:$path");
if ($output === null) {
throw new Exception ("coult not get file from git: $rev:$path");
}
return $output;
}
public static function getCommitBody($hash) {
$output = shell_exec("git log $hash --max-count=1 --pretty=format:\"%b\"");
return $output;
}
public static function getCurrentBranch() {
$output = shell_exec("git rev-parse --abbrev-ref HEAD");
if ($output === null) {
throw new Exception ("could not get current branch");
}
return $output;
}
}
class ConventionalChangelog
{
/**
* @param array $commmits commits to filter
*/
public static function filterCommits($commits) {
$types = [
'build', 'chore', 'ci', 'docs', 'fix', 'feat', 'perf', 'refactor', 'style', 'test'
];
$types = implode('|', $types);
$scope = "(\([^\)]*\))?";
$subject = ".*";
$filter = "/^(?P<type>$types)(?P<scope>$scope):(?P<subject>$subject)$/";
$filtered = [];
$matches = null;
foreach ($commits as $commit) {
if (preg_match($filter, $commit->subject, $matches) === 1) {
$commit->type = $matches['type'];
$commit->scope = '';
if (isset($matches['scope']) && strlen($matches['scope']) > 0) {
$commit->scope = $matches['scope'];
}
$commit->subject = trim($matches['subject']);
$filtered[] = $commit;
}
}
return $filtered;
}
public static function compareCommits($a, $b) {
// comapre scopes
if ($a->scope < $b->scope) {
return -1;
} else if($a->scope > $b->scope) {
return 1;
}
// then compare subject
if ($a->subject < $b->subject) {
return -1;
} else if ($a->subject > $b->subject) {
return 1;
}
return 0;
}
public static function buildLog($a, $b = 'HEAD') {
if (!Git::tagExists($b)) {
// $b is not a tag, try to find a matching one
if (Git::getTagOfCommit($b) === false) {
// throw new Exception("current HEAD does not match a tag");
}
}
// get All tags between $a and $b
$tags = Git::getAllTags();
// Remove non semver compliant versions
$tags = array_filter($tags, function ($tag) {
return Semver::isSemVer($tag);
});
$startVersion = $a;
$endVersion = $b;
$prefix = 'v';
if (substr($startVersion, 0, strlen($prefix)) == $prefix) {
$startVersion = substr($startVersion, strlen($prefix));
}
if (substr($endVersion, 0, strlen($prefix)) == $prefix) {
$endVersion = substr($endVersion, strlen($prefix));
}
$tags = array_filter($tags, function ($version) use ($startVersion, $endVersion) {
$prefix = 'v';
if (substr($version, 0, strlen($prefix)) == $prefix) {
$version = substr($version, strlen($prefix));
}
if (version_compare($version, $startVersion) < 0) {
return false;
}
if ($endVersion !== 'HEAD' && version_compare($version, $endVersion) > 0) {
return false;
}
return true;
});
// sort tags older DESCENDING
usort($tags, function ($a, $b) {
return version_compare($b, $a);
});
$log = [];
if ($b === '"Unreleaased') {
array_unshift($tags, $b);
}
$startRef = array_shift($tags);
while ($endRef = array_shift($tags)) {
$log = array_merge($log, self::buildLogOneBump($startRef, $endRef));
$startRef = $endRef;
}
return $log;
}
public static function buildLogOneBump($a, $b) {
$tag = $a;
if (!Git::tagExists($b)) {
// $b is not a tag, try to find a matching one
if ($tag = Git::getTagOfCommit($b) === false) {
$tag = 'Unreleased';
}
}
// get remote
$remotes = Git::getRemotes();
$remote = $remotes['origin'];
// Get all commits from A to B
$commits = Git::createCommitList(Git::getLog($b, $a));
// Remove non conventional commits
$commits = self::filterCommits($commits);
// Keep only useful commits for changelog
$fixes = array_filter($commits, function ($commit) {
if (in_array($commit->type, ['fix'])) {
return true;
}
return false;
});
$feats = array_filter($commits, function ($commit) {
if (in_array($commit->type, ['feat'])) {
return true;
}
return false;
});
// Sort commits
usort($fixes, [self::class, 'compareCommits']);
usort($feats, [self::class, 'compareCommits']);
// generate markdown log
$log = [];
$tagDate = (new DateTime())->format('Y-m-d');
$compare = "$remote/compare/$b..";
if ($tag !== 'Unreleased') {
$tagDate = Git::getTagDate($tag)->format('Y-m-d');
$compare .= $tag;
} else {
$compare .= Git::getCurrentBranch();
}
$log[] = '<a name="' . $tag . '"></a>';
$log[] = '## [' . $tag . '](' . $compare . ') (' . $tagDate . ')';
if (count($fixes) > 0) {
$log[] = '';
$log[] = '';
$log[] = '### Bug Fixes';
$log[] = '';
foreach ($fixes as $commit) {
$log[] = self::buildLogLine($commit, $remote);
}
}
if (count($feats) > 0) {
$log[] = '';
$log[] = '';
$log[] = '### Features';
$log[] = '';
foreach ($feats as $commit) {
$log[] = self::buildLogLine($commit, $remote);
}
}
$log[] = '';
$log[] = '';
$log[] = '';
return $log;
}
public static function buildLogLine($commit, $remote) {
$line = '* ';
$scope = $commit->scope;
if ($scope !== '') {
$scope = "**$scope:**";
$line .= $scope;
}
$hash = $commit->hash;
$line .= " $commit->subject"
. " ([$hash]($remote/commit/$hash))";
// Search for closed issues
$body = explode(PHP_EOL, $commit->body);
$pattern = '/^((close|closes|fix|fixed) #(?P<id>\\d+)(,\s+)?)/i';
$commit->close = [];
foreach ($body as $bodyLine) {
$matches = null;
if (preg_match($pattern, $bodyLine, $matches)) {
if (!is_array($matches['id'])) {
$matches['id'] = [$matches['id']];
}
$commit->close = $matches['id'];
}
}
if (count($commit->close) > 0) {
foreach ($commit->close as &$issue) {
$issue = "[#$issue]($remote/issues/$issue)";
}
$line .= ', closes ' . implode(', ', $commit->close);