-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoboFile.php
225 lines (190 loc) · 7.72 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
<?php
require __DIR__ . '/vendor/vysokeskoly/deb-build/src/autoload.php';
use Robo\Common\ResourceExistenceChecker;
use Robo\Symfony\ConsoleIO;
use Robo\Tasks;
use VysokeSkoly\Build\ComposerParserTrait;
use VysokeSkoly\Build\FpmCheckerTrait;
use VysokeSkoly\Build\PackageVersionerTrait;
use VysokeSkoly\Build\Task\LoadTasksTrait;
class RoboFile extends Tasks
{
use ComposerParserTrait;
use FpmCheckerTrait;
use PackageVersionerTrait;
use ResourceExistenceChecker;
use LoadTasksTrait;
const INSTALL_DIR = 'srv/www/image-api';
const VHOST_DIR = 'etc/apache2/sites-enabled';
const POSTINST_DIR = 'etc';
const BIN_CONSOLE = 'php ./bin/console';
const BIN_CONSOLE_HIGH_MEMORY = 'php -d memory_limit=256M ./bin/console';
const ENV_PROD = '.env.prod';
/**
* Build deb package. It is expected the Composer packages were installed using `--no-dev`.
*
* @param array $options
* @return int
*/
public function buildDeb(ConsoleIO $io, $options = ['dev-build' => false])
{
$this->stopOnFail();
$isDevBuild = (bool) $options['dev-build'];
if (!$this->checkFpmIsInstalled()) {
return 1;
}
if (!$this->isFile(self::ENV_PROD)) {
$io->error(sprintf('File %s does not exists.', self::ENV_PROD));
return 1;
}
$sourceDir = __DIR__;
$packageName = 'vysokeskoly-image-api';
$packageVersion = $this->assemblePackageVersion($isDevBuild);
$versionIteration = $this->assembleVersionIteration();
$composer = $this->parseComposer();
$temporaryBuildDir = $this->_tmpDir();
$buildRootDir = $temporaryBuildDir . '/root';
$appInstallDir = $buildRootDir . '/' . self::INSTALL_DIR;
// Create basic filesystem structure
$this->taskFilesystemStack()
->mkdir($appInstallDir)
->mkdir($appInstallDir . '/var')
->mkdir($appInstallDir . '/' . self::POSTINST_DIR)
->run();
// Generate postinst script
$postinstResult = $this->taskPostinst(
$packageName,
$appInstallDir . '/' . self::POSTINST_DIR,
self::INSTALL_DIR
)
->args([
'www-data', // runtime files owner
'www-data', // runtime files group
])
->run();
$postinstPath = $postinstResult['path'];
// Copy required directories
foreach ([
'config',
'src',
'templates',
'translations',
'vendor',
'public',
] as $directoryToCopy) {
$this->_copyDir($sourceDir . '/' . $directoryToCopy, $appInstallDir . '/' . $directoryToCopy);
}
// Copy required files
foreach (['bin/console', 'bin/robo', 'composer.json', 'composer.lock', 'RoboFile.php'] as $fileToCopy) {
$this->_copy($sourceDir . '/' . $fileToCopy, $appInstallDir . '/' . $fileToCopy);
}
// Create prod .env file
$this->_copy($sourceDir . '/.env.prod', $appInstallDir . '/.env');
// Generate buildinfo.xml
$this->taskBuildinfo($appInstallDir . '/var/buildinfo.xml')
->appName($packageName)
->version($packageVersion . '-' . $versionIteration)
->run();
// Even when packages are installed using `composer install --no-dev`, they often contains unneeded files.
$vendorDirectoriesToDelete = [
'ocramius/proxy-manager/html-docs',
'ocramius/proxy-manager/tests',
'twig/twig/test',
'guzzlehttp/guzzle/docs',
'guzzlehttp/guzzle/tests',
'monolog/monolog/tests',
'mobiledetect/mobiledetectlib/tests',
];
// Clean unwanted vendor directories
foreach ($vendorDirectoriesToDelete as $vendorDirectoryToDelete) {
$this->_deleteDir($appInstallDir . '/vendor/' . $vendorDirectoryToDelete);
}
$this->taskFilesystemHelper()
->dir($appInstallDir)
->removeDirsRecursively('Tests', 'vendor/symfony')// Remove Tests files from Symfony itself
->run();
// Copy vhosts settings
$vhostDir = $buildRootDir . '/' . self::VHOST_DIR;
$this->taskFilesystemStack()
->mkdir($vhostDir)
->copy(
__DIR__ . '/etc/vhosts/vhosts.image-api.conf',
$vhostDir . '/vhosts.image-api.conf'
)
->run();
$this->taskExec('fpm')
->args(['--description', $composer['description']])// description for `apt search`
->args(['-s', 'dir'])// source type
->args(['-t', 'deb'])// output type
->args(['--name', $packageName])// package name
->args(['--vendor', 'VysokeSkoly'])
->args(['--architecture', 'all'])
->args(['--version', $packageVersion])
->args(['--iteration', $versionIteration])
->args(['-C', $buildRootDir])// change directory to here before searching for files
// PHP Extensions
->args(['--depends', 'php-common'])
->args(['--depends', 'php-cli'])
->args(['--depends', 'vysokeskoly-apache-common'])
->args(['--deb-activate', 'apache-common-reload'])
// Post install
->args(['--after-install', $postinstPath])
// Files placed in /etc wouldn't be overridden on package update without following flag:
->arg('--deb-no-default-config-files')
->arg('.')
->run();
$this->io()->success('Done');
return 0;
}
/**
* Run post-installation tasks for deb package
*
* @param string $runtimeFilesOwner name of the user to whom should the files created on runtime belong to
* @param string $runtimeFilesGroup name of the group to whom should the files created on runtime belong to
*/
public function installDebPostinst($runtimeFilesOwner, $runtimeFilesGroup)
{
$this->stopOnFail();
$installDir = '/' . self::INSTALL_DIR;
// Setup rights recursively
$directoriesToChmod = [
$installDir,
'/' . self::VHOST_DIR,
];
foreach ($directoriesToChmod as $directoryToChmod) {
$this->taskFilesystemHelper()
->dir($directoryToChmod)
->chmodRecursivelyWritableByUserReadableByOthers()
->run();
}
// Do hard cache clean
$cacheDir = $installDir . '/var/cache';
if ($this->isFile($cacheDir)) {
$this->_cleanDir($cacheDir);
}
// Clean and warm-up app cache
foreach (['dev', 'prod'] as $symfonyEnvironment) {
$this->taskExec('php -d memory_limit=256M ./bin/console')
->arg('cache:clear')
->arg('--env=' . $symfonyEnvironment)
->dir($installDir)
->run();
}
// Make var/ directory (containing cache and logs) recursively owned and writable for given user
$varDirectory = $installDir . '/var';
$this->taskFilesystemStack()
->chown($varDirectory, $runtimeFilesOwner, true)
->chgrp($varDirectory, $runtimeFilesOwner, true)// group is the same as user
->chmod($varDirectory, 0755)// writable by user
->run();
$this->taskFilesystemHelper()
->dir($varDirectory)
->chmodRecursivelyWritableByUserReadableByOthers()
->run();
// Copy assets
$this->taskExec('php ./bin/console assets:install ./public')
->dir($installDir)
->run();
return 0;
}
}