2017-01-04 02:26:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Fetch the current 3.x version from the downloads site API
|
|
|
|
$ch = curl_init();
|
|
|
|
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_URL, 'https://downloads.joomla.org/api/v1/latest/cms');
|
|
|
|
|
|
|
|
$result = curl_exec($ch);
|
|
|
|
|
|
|
|
curl_close($ch);
|
|
|
|
|
|
|
|
if ($result === false)
|
|
|
|
{
|
|
|
|
echo 'Could not fetch version data, please check your connection.' . PHP_EOL;
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = json_decode($result, true);
|
|
|
|
|
|
|
|
foreach ($data['branches'] as $branch)
|
|
|
|
{
|
|
|
|
if ($branch['branch'] === 'Joomla! 3')
|
|
|
|
{
|
|
|
|
$version = $branch['version'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($version))
|
|
|
|
{
|
|
|
|
echo 'Joomla! 3.x version data not included in API response.' . PHP_EOL;
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlVersion = str_replace('.', '-', $version);
|
|
|
|
|
|
|
|
$filename = "Joomla_$version-Stable-Full_Package.zip";
|
|
|
|
|
|
|
|
// Fetch the SHA1 signature for the file
|
|
|
|
$ch = curl_init();
|
|
|
|
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_URL, "https://downloads.joomla.org/api//v1/signatures/cms/$urlVersion");
|
|
|
|
|
|
|
|
$result = curl_exec($ch);
|
|
|
|
|
|
|
|
curl_close($ch);
|
|
|
|
|
|
|
|
if ($result === false)
|
|
|
|
{
|
|
|
|
echo 'Could not fetch signature data, please check your connection.' . PHP_EOL;
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = json_decode($result, true);
|
|
|
|
|
|
|
|
foreach ($data['files'] as $file)
|
|
|
|
{
|
|
|
|
if ($file['filename'] === $filename)
|
|
|
|
{
|
|
|
|
$signature = $file['sha1'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($signature))
|
|
|
|
{
|
|
|
|
echo 'ZIP file SHA1 signature not included in API response.' . PHP_EOL;
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-01-30 16:34:17 +00:00
|
|
|
foreach (['apache', 'apache-php7.0', 'apache-php7.1', 'apache-php7.2', 'fpm', 'fpm-php7.0', 'fpm-php7.1', 'fpm-php7.2'] as $variant)
|
2017-01-04 02:26:38 +00:00
|
|
|
{
|
|
|
|
$dockerfile = __DIR__ . "/$variant/Dockerfile";
|
|
|
|
|
|
|
|
$fileContents = file_get_contents($dockerfile);
|
|
|
|
$fileContents = preg_replace('#ENV JOOMLA_VERSION [^ ]*\n#', "ENV JOOMLA_VERSION $version\n", $fileContents);
|
|
|
|
$fileContents = preg_replace('#ENV JOOMLA_SHA1 [^ ]*\n#', "ENV JOOMLA_SHA1 $signature\n\n", $fileContents);
|
|
|
|
|
|
|
|
file_put_contents($dockerfile, $fileContents);
|
|
|
|
|
|
|
|
// To make management easier, we use these files for all variants
|
|
|
|
copy(__DIR__ . '/docker-entrypoint.sh', __DIR__ . "/$variant/docker-entrypoint.sh");
|
|
|
|
copy(__DIR__ . '/makedb.php', __DIR__ . "/$variant/makedb.php");
|
|
|
|
}
|
|
|
|
|
|
|
|
echo 'Dockerfile variants updated' . PHP_EOL;
|