-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenerateDeployVersion.php
135 lines (111 loc) · 3.25 KB
/
GenerateDeployVersion.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
<?php
/*
* This file is part of the vip-composer-plugin package.
*
* (c) Inpsyde GmbH
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Inpsyde\VipComposer\Task;
use Inpsyde\VipComposer\Git\GitProcess;
use Inpsyde\VipComposer\Io;
use Inpsyde\VipComposer\VipDirectories;
final class GenerateDeployVersion implements Task
{
/**
* @var VipDirectories
*/
private $directories;
/**
* @param VipDirectories $directories
*/
public function __construct(VipDirectories $directories)
{
$this->directories = $directories;
}
/**
* @return string
*/
public function name(): string
{
return 'Generate deploy version files';
}
/**
* @param TaskConfig $taskConfig
* @return bool
*/
public function enabled(TaskConfig $taskConfig): bool
{
return $taskConfig->isLocal() || $taskConfig->isGit() || $taskConfig->syncDevPaths();
}
/**
* @param Io $io
* @param TaskConfig $taskConfig
* @return void
*/
public function run(Io $io, TaskConfig $taskConfig): void
{
$targetDir = $this->directories->privateDir();
$this->writeDeployId($io, $targetDir);
if ($taskConfig->isLocal() || $taskConfig->isGit()) {
$this->writeDeployTag($io, $targetDir);
}
$io->infoLine('Done.');
}
/**
* @param Io $io
* @param string $targetDir
* @return bool
* @throws \Exception
*/
private function writeDeployId(Io $io, string $targetDir): bool
{
$deployId = sprintf(
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
random_int(0, 0xffff),
time() % 0xffff,
random_int(0, 0xffff),
random_int(0, 0x0fff) | 0x4000,
random_int(0, 0x3fff) | 0x8000,
random_int(0, 0xffff),
random_int(0, 0xffff),
random_int(0, 0xffff)
);
if (!file_put_contents("{$targetDir}/deploy-id", $deployId)) {
$io->errorLine("Failed writing deploy ID: '{$deployId}' to file.");
return false;
}
$io->infoLine("Deploy ID: '{$deployId}' written to file.");
return true;
}
/**
* @param Io $io
* @param string $targetDir
* @return bool
*/
private function writeDeployTag(Io $io, string $targetDir): bool
{
$git = new GitProcess($io);
/**
* @var bool $success
* @var string $output
*/
[$success, $output] = $git->execSilently('describe --abbrev=0 --exact-match');
if (!$success && (stripos($output, 'no names') !== false)) {
$io->infoLine('Deploy Git tag: No tag matches commit being deployed.');
return false;
}
$tag = trim($output);
if (!$tag || !preg_match('~^v?[0-9]+~', $tag)) {
return false;
}
if (!file_put_contents("{$targetDir}/deploy-ver", $tag)) {
$io->errorLine("Failed writing deploy Git tag: '{$tag}' to file.");
return false;
}
$io->infoLine("Deploy Git tag: '{$tag}' written to file.");
return true;
}
}