32
3
mirror of https://github.com/joomla-docker/docker-joomla.git synced 2024-05-28 20:10:48 +00:00
docker/update.php

93 lines
2.1 KiB
PHP

<?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);
}
foreach (['apache', 'apache-php7', 'fpm', 'fpm-php7'] as $variant)
{
$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;