forked from phpdocker-io/phpdocker.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerator.php
More file actions
202 lines (175 loc) · 6.17 KB
/
Generator.php
File metadata and controls
202 lines (175 loc) · 6.17 KB
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
<?php
/**
* Copyright 2016 Luis Alberto Pabon Flores
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace PHPDocker\Generator;
use Michelf\MarkdownExtra;
use PHPDocker\Interfaces\ArchiveInterface;
use PHPDocker\PhpExtension\PhpExtension;
use PHPDocker\Project\Project;
use PHPDocker\Zip\Archiver;
/**
* Docker environment generator based on a Project.
*
* @package PHPDocker
* @author Luis A. Pabon Flores
*/
class Generator
{
const BASE_ZIP_FOLDER = 'phpdocker';
/**
* @var Archiver
*/
protected $zipArchiver;
/**
* @var \Twig_Environment
*/
protected $twig;
/**
* @var MarkdownExtra
*/
protected $markdownExtra;
public function __construct(Archiver $archiver, \Twig_Environment $twig, MarkdownExtra $markdownExtra)
{
$this->zipArchiver = $archiver;
$this->twig = $twig;
$this->markdownExtra = $markdownExtra;
$this->zipArchiver->setBaseFolder(self::BASE_ZIP_FOLDER);
}
/**
* Generates all the files from the Project, and returns as an archive file.
*
* @param Project $project
*
* @return ArchiveInterface
*/
public function generate(Project $project): ArchiveInterface
{
$this
->zipArchiver
->addFile($this->getReadmeMd($project))
->addFile($this->getReadmeHtml($project))
->addFile($this->getPhpDockerConf($project))
->addFile($this->getPhpIniOverrides($project))
->addFile($this->getNginxConf($project))
->addFile($this->getDockerCompose($project), true);
return $this->zipArchiver->generateArchive(sprintf('%s.zip', $project->getProjectNameSlug()));
}
/**
* Generates the Readme file in Markdown format.
*
* @param Project $project
*
* @return GeneratedFile\ReadmeMd
*/
private function getReadmeMd(Project $project): GeneratedFile\ReadmeMd
{
static $readme;
if ($readme === null) {
$readme = new GeneratedFile\ReadmeMd($this->twig->render('README.md.twig', ['project' => $project]));
}
return $readme;
}
/**
* Returns the HTML readme, converted off Markdown.
*
* @param Project $project
*
* @return GeneratedFile\ReadmeHtml
*/
private function getReadmeHtml(Project $project): GeneratedFile\ReadmeHtml
{
static $readmeHtml;
if ($readmeHtml === null) {
$html = $this->markdownExtra->transform($this->getReadmeMd($project)->getContents());
$readmeHtml = new GeneratedFile\ReadmeHtml($this->twig->render('README.html.twig', ['text' => $html]));
}
return $readmeHtml;
}
/**
* Generates the docker-compose file, and returns as a string of its contents.
*
* @param Project $project
*
* @return GeneratedFile\DockerCompose
*/
private function getDockerCompose(Project $project): GeneratedFile\DockerCompose
{
$data = [
'phpVersion' => $project->getPhpOptions()->getVersion(),
'phpIniOverrides' => (new GeneratedFile\PhpIniOverrides(''))->getFilename(),
'slug' => $project->getProjectNameSlug(),
'project' => $project,
];
// Get YML file, raw, then prettify by eliminating excess of blank lines and ensuring a blank line at the end
$rendered = $this->twig->render('docker-compose.yml.twig', $data);
$rendered = preg_replace("/[\r\n]{2,}/", "\n\n", $rendered);
$rendered .= "\n";
return new GeneratedFile\DockerCompose($rendered);
}
/**
* Returns the dockerfile for php-fpm.
*
* @param Project $project
*
* @return GeneratedFile\PhpDockerConf
*/
private function getPhpDockerConf(Project $project): GeneratedFile\PhpDockerConf
{
$phpOptions = $project->getPhpOptions();
$packages = [];
// Resolve extension packages to install
foreach ($phpOptions->getExtensions() as $extension) {
/** @var PhpExtension $extension */
$packages = array_merge($packages, $extension->getPackages());
}
$data = [
'phpVersion' => $project->getPhpOptions()->getVersion(),
'extensionPackages' => array_unique($packages),
'applicationType' => $project->getApplicationOptions()->getApplicationType(),
'hasGit' => $project->getPhpOptions()->hasGit(),
];
return new GeneratedFile\PhpDockerConf($this->twig->render('dockerfile-php-fpm.conf.twig', $data));
}
/**
* Returns the contents of php.ini
*
* @param Project $project
*
* @return GeneratedFile\PhpIniOverrides
*/
private function getPhpIniOverrides(Project $project): GeneratedFile\PhpIniOverrides
{
$data = ['maxUploadSize' => $project->getApplicationOptions()->getUploadSize()];
return new GeneratedFile\PhpIniOverrides($this->twig->render('php-ini-overrides.ini.twig', $data));
}
/**
* Generates and returns the nginx.conf file.
*
* @param Project $project
*
* @return GeneratedFile\NginxConf
*/
private function getNginxConf(Project $project): GeneratedFile\NginxConf
{
$data = [
'projectName' => $project->getName(),
'projectNameSlug' => $project->getProjectNameSlug(),
'applicationType' => $project->getApplicationOptions()->getApplicationType(),
'maxUploadSize' => $project->getApplicationOptions()->getUploadSize(),
];
return new GeneratedFile\NginxConf($this->twig->render('nginx.conf.twig', $data));
}
}