Compare commits
4 Commits
dc5568720b
...
364ad27157
Author | SHA1 | Date |
---|---|---|
tracer | 364ad27157 | |
tracer | 531d67e76f | |
tracer | 0725582282 | |
tracer | b1b4ee649e |
|
@ -1,3 +1,4 @@
|
||||||
dist/
|
dist/
|
||||||
extensions.txt
|
extensions.txt
|
||||||
|
.idea/
|
||||||
|
/vendor/
|
||||||
|
|
|
@ -0,0 +1,516 @@
|
||||||
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App;
|
||||||
|
|
||||||
|
error_reporting(error_level: E_ALL);
|
||||||
|
|
||||||
|
use DirectoryIterator;
|
||||||
|
use Exception;
|
||||||
|
use PDO;
|
||||||
|
use PharData;
|
||||||
|
|
||||||
|
|
||||||
|
const SUPPORTED_RELEASE_MAJOR = 3;
|
||||||
|
const SUPPORTED_RELEASE_MINOR = 2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class UpdateController
|
||||||
|
{
|
||||||
|
private $pdo;
|
||||||
|
|
||||||
|
|
||||||
|
function handleUpdate()
|
||||||
|
{
|
||||||
|
define(constant_name: "PHPBB_ROOT_PATH", value: dirname(path: __DIR__, levels: 2));
|
||||||
|
|
||||||
|
$phpBBRootPath = PHPBB_ROOT_PATH . '/';
|
||||||
|
$phpEx = substr(string: strrchr(haystack: __FILE__, needle: '.'), offset: 1);
|
||||||
|
|
||||||
|
|
||||||
|
// sanity checks
|
||||||
|
|
||||||
|
if (strtoupper(string: substr(string: PHP_OS, offset: 0, length: 3)) === 'WIN') {
|
||||||
|
echo 'This program must not be used on Windows installations.' . PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PHP_VERSION_ID < 80100) {
|
||||||
|
echo 'You need at least php version 8.1.0';
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (php_sapi_name() !== 'cli') {
|
||||||
|
echo 'This program must be run from the command line.' . PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!extension_loaded(extension: 'bz2')) {
|
||||||
|
echo 'You need to install/enable the bz2 PHP extension' . PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
include $phpBBRootPath . 'config.php';
|
||||||
|
|
||||||
|
/** @var String $dbhost */
|
||||||
|
/** @var String $dbport */
|
||||||
|
/** @var String $dbname */
|
||||||
|
/** @var String $dbuser */
|
||||||
|
/** @var String $dbpasswd */
|
||||||
|
$this->pdo = new PDO(
|
||||||
|
dsn : "mysql:host=$dbhost;port=$dbport;charset=utf8mb4;dbname=$dbname",
|
||||||
|
username: $dbuser,
|
||||||
|
password: $dbpasswd
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
/** @var String $table_prefix */
|
||||||
|
$sql = "SELECT config_value FROM ${table_prefix}config WHERE config_name = 'version'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
$statement->execute();
|
||||||
|
$result = $statement->fetch();
|
||||||
|
|
||||||
|
$installedVersion = $result['config_value'];
|
||||||
|
print("Installed version: phpBB $installedVersion" . PHP_EOL);
|
||||||
|
|
||||||
|
// phpBB has major, minor and maintenance version scheme
|
||||||
|
[$major, $minor, $patch] = explode(separator: '.', string: $installedVersion);
|
||||||
|
if ((intval(value: $major) != SUPPORTED_RELEASE_MAJOR) || (intval(value: $minor) < SUPPORTED_RELEASE_MINOR)) {
|
||||||
|
echo 'This script only supports phpBB ' . SUPPORTED_RELEASE_MAJOR . '.' . SUPPORTED_RELEASE_MINOR . ' and above branch.', PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
$json = file_get_contents(filename: 'https://version.phpbb.com/phpbb/versions.json');
|
||||||
|
$versions = json_decode(json: $json);
|
||||||
|
|
||||||
|
$stableVersions = $versions->stable;
|
||||||
|
$availableUpdate = $stableVersions->{$major . '.' . $minor}->{'current'};
|
||||||
|
|
||||||
|
echo 'Current Version: ' . $availableUpdate . PHP_EOL;
|
||||||
|
|
||||||
|
// check for existing update
|
||||||
|
if (!file_exists(filename: 'dist')) {
|
||||||
|
echo "'dist' folder is missing, create a new one …'";
|
||||||
|
mkdir(directory: 'dist');
|
||||||
|
}
|
||||||
|
|
||||||
|
$currentFile = "phpBB-$availableUpdate.tar.bz2";
|
||||||
|
|
||||||
|
$phpBBTarget = "dist/$currentFile";
|
||||||
|
|
||||||
|
if (!file_exists(filename: $phpBBTarget)) {
|
||||||
|
echo "Downloading $currentFile" . PHP_EOL;
|
||||||
|
$filePath = "https://download.phpbb.com/pub/release/$major.$minor/$availableUpdate/$currentFile";
|
||||||
|
$phpBBtbz = file_get_contents(filename: $filePath);
|
||||||
|
file_put_contents(filename: $phpBBTarget, data: $phpBBtbz);
|
||||||
|
} else {
|
||||||
|
echo $currentFile . ' already exists' . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO check SHA256?
|
||||||
|
|
||||||
|
// check for available language files
|
||||||
|
|
||||||
|
if (file_exists(filename: $phpBBRootPath . 'language/de')) {
|
||||||
|
$useLangDeDu = true;
|
||||||
|
// https://downloads.phpbb.de/pakete/deutsch/3.3/3.3.7/phpBB_lang_de-3.3.7.tar.bz2
|
||||||
|
$languageFile = "phpBB_lang_de-$availableUpdate.tar.bz2";
|
||||||
|
$langDeDuTarget = "dist/$languageFile";
|
||||||
|
|
||||||
|
if (!file_exists(filename: $langDeDuTarget)) {
|
||||||
|
echo "Downloading language $languageFile" . PHP_EOL;
|
||||||
|
$filePath = "https://downloads.phpbb.de/pakete/deutsch/$major.$minor/$availableUpdate/$languageFile";
|
||||||
|
$phpBBtbz = file_get_contents(filename: $filePath);
|
||||||
|
file_put_contents(filename: $langDeDuTarget, data: $phpBBtbz);
|
||||||
|
} else {
|
||||||
|
echo 'Language file ' . $languageFile . ' already exists' . PHP_EOL;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$useLangDeDu = false;
|
||||||
|
echo 'Language Deutsch "Du" ist not installed, skipping' . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (file_exists(filename: $phpBBRootPath . 'language/de_x_sie')) {
|
||||||
|
$useLangDeSie = true;
|
||||||
|
//https://downloads.phpbb.de/pakete/deutsch/3.3/3.3.7/phpBB_lang_de_x_sie-3.3.7.tar.bz2
|
||||||
|
$languageFile = "phpBB_lang_de_x_sie-$availableUpdate.tar.bz2";
|
||||||
|
$langDeSieTarget = "dist/$languageFile";
|
||||||
|
|
||||||
|
if (!file_exists(filename: $langDeSieTarget)) {
|
||||||
|
echo "Downloading language $languageFile" . PHP_EOL;
|
||||||
|
$filePath = "https://downloads.phpbb.de/pakete/deutsch/$major.$minor/$availableUpdate/$languageFile";
|
||||||
|
$phpBBtbz = file_get_contents(filename: $filePath);
|
||||||
|
file_put_contents(filename: $langDeSieTarget, data: $phpBBtbz);
|
||||||
|
} else {
|
||||||
|
echo 'Language file ' . $languageFile . ' already exists' . PHP_EOL;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$useLangDeSie = false;
|
||||||
|
echo 'Language Deutsch "Sie" ist not installed, skipping' . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$this->confirm(message: 'Do you want to proceed with the update now?')) {
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ok, start update
|
||||||
|
$now = date(format: 'd.m.Y H:i');
|
||||||
|
$disableMsg = "Software-update at $now, the forum ist down due to maintenance. We'll be back soon.";
|
||||||
|
$sql = "UPDATE ${table_prefix}config SET config_value = :disable_message WHERE config_name = 'board_disable_msg'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
$statement->bindParam(param: 'disable_message', var: $disableMsg);
|
||||||
|
|
||||||
|
if ($result = $statement->execute()) {
|
||||||
|
echo "Disable Message set …", PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo 'There was an error talking to the DB.' . PHP_EOL;
|
||||||
|
echo 'Failed SQL-statement: ' . $sql . PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
$sql = "UPDATE ${table_prefix}config SET config_value = '1' WHERE config_name = 'board_disable'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
if ($result = $statement->execute()) {
|
||||||
|
echo "Board disabled …", PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo 'There was an error talking to the DB.' . PHP_EOL;
|
||||||
|
echo 'Failed SQL-statement: ' . $sql . PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
$extensionsFile = 'extensions.txt';
|
||||||
|
|
||||||
|
if (file_exists(filename: $extensionsFile)) {
|
||||||
|
echo 'Extensions state already stored. Remove extensions.txt if you wish to recreate it.' . PHP_EOL;
|
||||||
|
} else {
|
||||||
|
// check for enabled extensions
|
||||||
|
$sql = "SELECT ext_name FROM ${table_prefix}ext WHERE ext_active = '1'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
if ($statement->execute()) {
|
||||||
|
$result = $statement->fetchAll();
|
||||||
|
|
||||||
|
if (count(value: $result) > 0) {
|
||||||
|
$extensions = json_encode(value: $result);
|
||||||
|
|
||||||
|
// safe enabled extensions
|
||||||
|
$oFile = fopen(filename: 'extensions.txt', mode: 'w');
|
||||||
|
fputs(stream: $oFile, data: $extensions);
|
||||||
|
fclose(stream: $oFile);
|
||||||
|
echo 'Stored extensions state';
|
||||||
|
|
||||||
|
// disable all extensions
|
||||||
|
$sql = "UPDATE ${table_prefix}ext SET ext_active = '0' WHERE ext_active = '1'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
if ($statement->execute()) {
|
||||||
|
echo 'Disabled all extensions';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$stylesFile = 'styles.txt';
|
||||||
|
if (file_exists(filename: $stylesFile)) {
|
||||||
|
echo 'Styles state already stored. Remove styles.txt if you wish to recreate it' . PHP_EOL;
|
||||||
|
} else {
|
||||||
|
// check for enabled style
|
||||||
|
$sql = "SELECT style_name FROM ${table_prefix}styles WHERE style_active = '1'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
if ($statement->execute()) {
|
||||||
|
$result = $statement->fetchAll();
|
||||||
|
|
||||||
|
if (count(value: $result) > 0) {
|
||||||
|
$styles = json_encode(value: $result);
|
||||||
|
|
||||||
|
// safe enabled styles
|
||||||
|
$oFile = fopen(filename: 'styles.txt', mode: 'w');
|
||||||
|
fputs(stream: $oFile, data: $styles);
|
||||||
|
fclose(stream: $oFile);
|
||||||
|
echo 'Stored styles state.' . PHP_EOL;
|
||||||
|
|
||||||
|
// disable all styles except prosilver
|
||||||
|
$sql = "UPDATE ${table_prefix}styles SET style_active = '0' WHERE NOT style_name = 'prosilver'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
if ($statement->execute()) {
|
||||||
|
echo 'Disabled all styles except prosilver.' . PHP_EOL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// update phpBB
|
||||||
|
$data = new PharData(filename: $phpBBTarget);
|
||||||
|
try {
|
||||||
|
unset($data['phpBB3/config.php']);
|
||||||
|
unset($data['phpBB3/.htaccess']);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
echo 'error: ', $e;
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove all old files
|
||||||
|
$excludes = [
|
||||||
|
'config.php',
|
||||||
|
'.htaccess',
|
||||||
|
'.htpasswd',
|
||||||
|
'images',
|
||||||
|
'files',
|
||||||
|
'ext',
|
||||||
|
'styles',
|
||||||
|
'store',
|
||||||
|
'updates',
|
||||||
|
'mobiquo'];
|
||||||
|
// this will fuck up nearly all modified boards, leave the files alone by default.
|
||||||
|
// It will also destroy any API-keys and whatever you might have in your document root.
|
||||||
|
// deleteDirectory($phpbb_root_path, $excludes);
|
||||||
|
|
||||||
|
|
||||||
|
try {
|
||||||
|
$data->extractTo(directory: $phpBBRootPath);
|
||||||
|
|
||||||
|
$fromDir = $phpBBRootPath . 'phpBB3/';
|
||||||
|
$toDir = $phpBBRootPath;
|
||||||
|
|
||||||
|
$this->copyDirectory(source: $fromDir, target: $toDir);
|
||||||
|
$this->deleteDirectory(dir: $fromDir);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
print("Error while extracting $data: $e");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
echo 'Moved the update in place.', PHP_EOL;
|
||||||
|
|
||||||
|
$fileOwner = fileowner(filename: $phpBBRootPath);
|
||||||
|
$fileGroup = filegroup(filename: $phpBBRootPath);
|
||||||
|
$fileOwnerName = posix_getpwuid(user_id: $fileOwner)['name'];
|
||||||
|
$fileGroupName = posix_getgrgid(group_id: $fileGroup)['name'];
|
||||||
|
|
||||||
|
|
||||||
|
echo 'Check file owner', PHP_EOL;
|
||||||
|
print("You might need to perform 'chown -R $fileOwnerName:$fileGroupName $phpBBRootPath'" . PHP_EOL);
|
||||||
|
|
||||||
|
echo 'prepare config.yml.', PHP_EOL;
|
||||||
|
$oFile = fopen(filename: $phpBBRootPath . '/update-config.yml', mode: 'w');
|
||||||
|
fputs(stream: $oFile, data: 'updater:' . PHP_EOL . " type: db_only" . PHP_EOL);
|
||||||
|
fclose(stream: $oFile);
|
||||||
|
|
||||||
|
$command = <<<EOC
|
||||||
|
cd ..
|
||||||
|
pwd
|
||||||
|
php install/phpbbcli.php update update-config.yml
|
||||||
|
EOC;
|
||||||
|
|
||||||
|
system(command: $command, result_code: $resultCode);
|
||||||
|
|
||||||
|
if ($resultCode != 0) {
|
||||||
|
echo 'There was an error updating the database: ' . $resultCode . PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
} else {
|
||||||
|
echo 'The database has been updated' . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
$installDir = $phpBBRootPath . '/install';
|
||||||
|
if (is_dir(filename: $installDir)) {
|
||||||
|
$this->deleteDirectory(dir: $installDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// update langDeDu
|
||||||
|
if ($useLangDeDu) {
|
||||||
|
$data = new PharData(filename: $langDeDuTarget);
|
||||||
|
|
||||||
|
try {
|
||||||
|
$data->extractTo(directory: $phpBBRootPath, overwrite: true);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
print("Error while extracting $langDeDuTarget: $e");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// update langDeSie
|
||||||
|
if ($useLangDeSie) {
|
||||||
|
$data = new PharData(filename: $langDeSieTarget);
|
||||||
|
|
||||||
|
try {
|
||||||
|
$data->extractTo(directory: $phpBBRootPath, overwrite: true);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
print("Error while extracting $langDeSieTarget: $e");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$sql = "UPDATE ${table_prefix}config SET config_value = '0' WHERE config_name = 'board_disable'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
$statement->execute();
|
||||||
|
|
||||||
|
echo "Board reenabled …", PHP_EOL;
|
||||||
|
|
||||||
|
|
||||||
|
if (file_exists(filename: $extensionsFile)) {
|
||||||
|
$iFile = fopen(filename: $extensionsFile, mode: 'r');
|
||||||
|
$extensions = json_decode(json: fgets(stream: $iFile), associative: true);
|
||||||
|
|
||||||
|
echo 'Enable extensions: ';
|
||||||
|
|
||||||
|
foreach ($extensions as $extension) {
|
||||||
|
$ext = $extension['ext_name'];
|
||||||
|
$sql = "UPDATE ${table_prefix}ext SET ext_active = '1' WHERE ext_name = '$ext'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
$statement->execute();
|
||||||
|
echo '.';
|
||||||
|
}
|
||||||
|
echo 'done.', PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo 'There are no saved extension information available.', PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (file_exists(filename: $stylesFile)) {
|
||||||
|
$iFile = fopen(filename: $stylesFile, mode: 'r');
|
||||||
|
$styles = json_decode(json: fgets(stream: $iFile), associative: true);
|
||||||
|
|
||||||
|
echo 'Enable styles: ';
|
||||||
|
|
||||||
|
foreach ($styles as $style) {
|
||||||
|
$style = $style['style_name'];
|
||||||
|
$sql = "UPDATE ${table_prefix}styles SET style_active = '1' WHERE style_name = '$style'";
|
||||||
|
$statement = $this->pdo->prepare(query: $sql);
|
||||||
|
$statement->execute();
|
||||||
|
echo '.';
|
||||||
|
}
|
||||||
|
echo 'done.', PHP_EOL;
|
||||||
|
} else {
|
||||||
|
echo 'There are no saved extension information available.', PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// clear cache
|
||||||
|
$dataGlobalCache = $phpBBRootPath . '/cache/data_global.' . $phpEx;
|
||||||
|
|
||||||
|
if (file_exists(filename: $dataGlobalCache)) {
|
||||||
|
unlink(filename: $dataGlobalCache);
|
||||||
|
echo "Cache cleared …";
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Your board should now be up and running." . PHP_EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param String $message
|
||||||
|
* @param string[] $options
|
||||||
|
* @param string $default
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
function confirm(string $message = 'Are you sure? ', array $options = ['y', 'n'], string $default = 'n'): bool
|
||||||
|
{
|
||||||
|
// first $options means true, any other false
|
||||||
|
|
||||||
|
echo $message, ' (';
|
||||||
|
$first = true;
|
||||||
|
foreach ($options as $option) {
|
||||||
|
// mark default
|
||||||
|
if ($option == $default) {
|
||||||
|
$option = strtoupper(string: $option);
|
||||||
|
}
|
||||||
|
if ($first) {
|
||||||
|
echo $option;
|
||||||
|
$first = false;
|
||||||
|
} else {
|
||||||
|
echo '/', $option;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo '): ';
|
||||||
|
|
||||||
|
$handle = fopen(filename: "php://stdin", mode: 'r');
|
||||||
|
$line = trim(string: fgetc(stream: $handle));
|
||||||
|
fclose(stream: $handle);
|
||||||
|
|
||||||
|
if ($line == '') {
|
||||||
|
// enter
|
||||||
|
$line = $default;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($line == $options[0]) {
|
||||||
|
$result = true;
|
||||||
|
} else {
|
||||||
|
$result = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $dir
|
||||||
|
* @param array $excludes
|
||||||
|
*
|
||||||
|
* @return false|void
|
||||||
|
*/
|
||||||
|
function deleteDirectory($dir, array $excludes = [])
|
||||||
|
{
|
||||||
|
if (!file_exists(filename: $dir)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$dir = rtrim(string: $dir, characters: '/') . '/';
|
||||||
|
static $skip = false;
|
||||||
|
|
||||||
|
$entries = glob(pattern: $dir . '{,.}[!.,!..]*', flags: GLOB_MARK | GLOB_BRACE);
|
||||||
|
|
||||||
|
foreach ($entries as $entry) {
|
||||||
|
if (!in_array(needle: basename(path: $entry), haystack: $excludes)) {
|
||||||
|
if (is_dir(filename: $entry)) {
|
||||||
|
$this->deleteDirectory(dir: $entry);
|
||||||
|
} else {
|
||||||
|
unlink(filename: $entry);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$skip = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($skip == false) {
|
||||||
|
rmdir(directory: $dir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $source
|
||||||
|
* @param $target
|
||||||
|
*
|
||||||
|
* @return bool|void
|
||||||
|
*/
|
||||||
|
function copyDirectory($source, $target)
|
||||||
|
{
|
||||||
|
if (!file_exists(filename: $source)) {
|
||||||
|
die("missing source: $source");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_file(filename: $source)) {
|
||||||
|
if (copy(from: $source, to: $target)) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_dir(filename: $source)) {
|
||||||
|
if (!file_exists(filename: $target)) {
|
||||||
|
mkdir(directory: $target);
|
||||||
|
}
|
||||||
|
$source = rtrim(string: $source, characters: '/') . '/';
|
||||||
|
$target = rtrim(string: $target, characters: '/') . '/';
|
||||||
|
$dir = new DirectoryIterator(directory: $source);
|
||||||
|
|
||||||
|
foreach ($dir as $entry) {
|
||||||
|
if (!$entry->isDot()) {
|
||||||
|
$this->copyDirectory(source: "$source$entry", target: "$target$entry");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ignore links, not part of phpBB arch
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,340 +1,9 @@
|
||||||
#!/usr/bin/env php
|
#!/usr/bin/keyhelp-php81 -d apc.enable_cli=1
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
// make absolute or relative to phpBB /
|
use App\UpdateController;
|
||||||
define('PHPBB_ROOT_PATH', '../');
|
|
||||||
define('IN_PHPBB', true);
|
|
||||||
|
|
||||||
define('SUPPORTED_RELEASE_MAJOR', 3);
|
require __DIR__ . '/vendor/autoload.php';
|
||||||
define('SUPPORTED_RELEASE_MINOR', 3);
|
|
||||||
|
|
||||||
|
$update = new UpdateController();
|
||||||
function confirm($message = 'Are you sure? ', $options = array('y', 'n'), $default ='n')
|
$update->handleUpdate();
|
||||||
{
|
|
||||||
// first $options means true, any other false
|
|
||||||
|
|
||||||
echo $message, ' (';
|
|
||||||
$first = true;
|
|
||||||
foreach ($options as $option) {
|
|
||||||
// mark default
|
|
||||||
if ($option == $default) {
|
|
||||||
$option = strtoupper($option);
|
|
||||||
}
|
|
||||||
if ($first) {
|
|
||||||
echo $option;
|
|
||||||
$first = false;
|
|
||||||
} else {
|
|
||||||
echo '/', $option;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
echo '): ';
|
|
||||||
|
|
||||||
$handle = fopen("php://stdin", 'r');
|
|
||||||
$line = trim(fgetc($handle));
|
|
||||||
fclose($handle);
|
|
||||||
|
|
||||||
|
|
||||||
if ($line == '') {
|
|
||||||
// enter
|
|
||||||
$line = $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($line == $options[0]) {
|
|
||||||
$result = true;
|
|
||||||
} else {
|
|
||||||
$result = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function deleteDirectory($dir, $excludes = array())
|
|
||||||
{
|
|
||||||
if (!file_exists($dir)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$dir = rtrim($dir, '/') . '/';
|
|
||||||
static $skip = false;
|
|
||||||
|
|
||||||
$entries = glob($dir . '{,.}[!.,!..]*', GLOB_MARK | GLOB_BRACE);
|
|
||||||
|
|
||||||
foreach($entries as $entry) {
|
|
||||||
if (!in_array(basename($entry), $excludes)) {
|
|
||||||
if (is_dir($entry)) {
|
|
||||||
deleteDirectory($entry);
|
|
||||||
} else {
|
|
||||||
unlink($entry);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$skip = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($skip == false) {
|
|
||||||
rmdir($dir);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function copyDirectory($source, $target)
|
|
||||||
{
|
|
||||||
if (!file_exists($source)) {
|
|
||||||
die("missing source: $source");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_file($source)) {
|
|
||||||
if (copy($source, $target)) {
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_dir($source)) {
|
|
||||||
if (!file_exists($target)) {
|
|
||||||
mkdir($target);
|
|
||||||
}
|
|
||||||
$source = rtrim($source, '/') . '/';
|
|
||||||
$target = rtrim($target, '/') . '/';
|
|
||||||
$dir = new DirectoryIterator($source);
|
|
||||||
|
|
||||||
foreach ($dir as $entry) {
|
|
||||||
if (!$entry->isDot()) {
|
|
||||||
copyDirectory("$source$entry", "$target$entry");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ignore links, not part of phpBB arch
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
|
|
||||||
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
|
||||||
include($phpbb_root_path . 'common.' . $phpEx);
|
|
||||||
|
|
||||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
|
||||||
echo 'This script is intended for unixoid installations.';
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$fileowner = fileowner($phpbb_root_path);
|
|
||||||
$filegroup = filegroup($phpbb_root_path);
|
|
||||||
$fileownerName = posix_getpwuid($fileowner)['name'];
|
|
||||||
$filegroupName = posix_getgrgid($filegroup)['name'];
|
|
||||||
|
|
||||||
|
|
||||||
if (!empty($argv[1])) {
|
|
||||||
switch ($argv[1]) {
|
|
||||||
case '--prepare':
|
|
||||||
// handle version stuff
|
|
||||||
$sql = "SELECT config_value FROM ${table_prefix}config WHERE config_name = 'version'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
$row = $db->sql_fetchrow($result);
|
|
||||||
$installedVersion = $row['config_value'];
|
|
||||||
print("Installed version: $installedVersion" . PHP_EOL);
|
|
||||||
|
|
||||||
// phpBB has major, minor and maintenance version scheme
|
|
||||||
list($major, $minor, $patch) = explode('.', $installedVersion);
|
|
||||||
if ((intval($major) != SUPPORTED_RELEASE_MAJOR)) {
|
|
||||||
echo 'This script only supports phpBB ' . SUPPORTED_RELEASE_MAJOR . '.' . SUPPORTED_RELEASE_MINOR . ' branch.', PHP_EOL;
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ok, start update
|
|
||||||
$now = date('d.m.Y H:i');
|
|
||||||
$disableMsg = "Softwareupdate am $now, das Bord ist kurzzeitig nicht erreichbar.";
|
|
||||||
$sql = "UPDATE ${table_prefix}config SET config_value = '$disableMsg' WHERE config_name = 'board_disable_msg'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
echo "Disable Message set …", PHP_EOL;
|
|
||||||
|
|
||||||
$sql = "UPDATE ${table_prefix}config SET config_value = '1' WHERE config_name = 'board_disable'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
echo "Board disabled …", PHP_EOL;
|
|
||||||
|
|
||||||
// clear cache
|
|
||||||
$data_global_cache = $phpbb_root_path . '/cache/data_global.' . $phpEx;
|
|
||||||
|
|
||||||
if (file_exists($data_global_cache)) {
|
|
||||||
unlink($data_global_cache);
|
|
||||||
echo "Cache cleared …";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// http://version.phpbb.com/phpbb/versions.json
|
|
||||||
$json = file_get_contents('http://version.phpbb.com/phpbb/versions.json');
|
|
||||||
$versions = json_decode($json);
|
|
||||||
$currentVersion = $versions->{'stable'}->{SUPPORTED_RELEASE_MAJOR . '.' . SUPPORTED_RELEASE_MINOR}->{'current'};
|
|
||||||
print("Current version: $currentVersion" . PHP_EOL);
|
|
||||||
|
|
||||||
// check for existing update
|
|
||||||
if (!file_exists('dist')) {
|
|
||||||
echo "'dist' folder is missing, create a new one …'";
|
|
||||||
mkdir ('dist');
|
|
||||||
}
|
|
||||||
$currentFile = "phpBB-$currentVersion-deutsch.tar.bz2";
|
|
||||||
$filePath = 'http://downloads.phpbb.de/pakete/deutsch/' . SUPPORTED_RELEASE_MAJOR . '.' . SUPPORTED_RELEASE_MINOR . "/$currentVersion/$currentFile";
|
|
||||||
echo $filePath;
|
|
||||||
|
|
||||||
$target = "dist/$currentFile";
|
|
||||||
|
|
||||||
if (!file_exists($target)) {
|
|
||||||
print("Downloading $currentFile");
|
|
||||||
$phpBBtbz = file_get_contents($filePath);
|
|
||||||
file_put_contents($target, $phpBBtbz);
|
|
||||||
} else {
|
|
||||||
print("File exists: $currentFile" . PHP_EOL);
|
|
||||||
if (!confirm('Use this copy and continue?')) {
|
|
||||||
echo "Aborted due to user request.", PHP_EOL;
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
$data = new PharData($target);
|
|
||||||
try {
|
|
||||||
unset($data['phpBB3/config.php']);
|
|
||||||
unset($data['phpBB3/.htaccess']);
|
|
||||||
} catch (Exception $e) {
|
|
||||||
echo 'error: ', $e;
|
|
||||||
}
|
|
||||||
|
|
||||||
// check for enabled extensions
|
|
||||||
$sql = "SELECT ext_name FROM ${table_prefix}ext WHERE ext_active = '1'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
$rows = $db->sql_fetchrowset($result);
|
|
||||||
if (count($rows) > 0) {
|
|
||||||
$rows = json_encode($rows);
|
|
||||||
|
|
||||||
// safe enabled extensions
|
|
||||||
$ofile = fopen('extensions.txt', 'w');
|
|
||||||
fputs($ofile, $rows);
|
|
||||||
fclose($ofile);
|
|
||||||
|
|
||||||
// disable all extensions
|
|
||||||
$sql = "UPDATE ${table_prefix}ext SET ext_active = '0' WHERE ext_active = '1'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
}
|
|
||||||
|
|
||||||
// disable all styles but prosilver
|
|
||||||
$sql = "UPDATE ${table_prefix}styles SET style_active = '0' WHERE NOT style_name = 'prosilver'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
|
|
||||||
// remove all old files
|
|
||||||
$excludes = array(
|
|
||||||
'config.php',
|
|
||||||
'.htaccess',
|
|
||||||
'.htpasswd',
|
|
||||||
'images',
|
|
||||||
'files',
|
|
||||||
'ext',
|
|
||||||
'styles',
|
|
||||||
'store',
|
|
||||||
'updates',
|
|
||||||
'mobiquo');
|
|
||||||
// this will fuck up nearly all modified boards, leave the files alone by default
|
|
||||||
// deleteDirectory($phpbb_root_path, $excludes);
|
|
||||||
|
|
||||||
|
|
||||||
try {
|
|
||||||
// $data->extractTo($phpbb_root_path, 'phpBB3');
|
|
||||||
// does not work due to php bug:
|
|
||||||
// https://bugs.php.net/bug.php?id=54289
|
|
||||||
$data->extractTo($phpbb_root_path, null, true);
|
|
||||||
|
|
||||||
$fromDir = $phpbb_root_path . 'phpBB3/';
|
|
||||||
$toDir = $phpbb_root_path;
|
|
||||||
|
|
||||||
copyDirectory($fromDir, $toDir);
|
|
||||||
deleteDirectory($fromDir);
|
|
||||||
|
|
||||||
} catch (Exception $e) {
|
|
||||||
print("Error while extracting $data: $e");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
echo 'Moved the update in place.', PHP_EOL;
|
|
||||||
|
|
||||||
echo 'Check fileowner', PHP_EOL;
|
|
||||||
print("You might need to perform 'chown -R $fileownerName:$filegroupName $phpbb_root_path'" . PHP_EOL);
|
|
||||||
|
|
||||||
echo 'prepare config.yml.', PHP_EOL;
|
|
||||||
$oFile = fopen($phpbb_root_path . '/install/config.yml', 'w');
|
|
||||||
fputs($oFile, 'updater:' . PHP_EOL . " type: db_only" . PHP_EOL);
|
|
||||||
fclose($oFile);
|
|
||||||
echo "Now head over to ${phpbb_root_path}install and execute 'php phpbbcli.php update config.yml'", PHP_EOL;
|
|
||||||
echo "After, return here and finish the update by excuting php $argv[0] --finish", PHP_EOL;
|
|
||||||
exit(0);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case "--finish":
|
|
||||||
if (confirm('Remove the install directory?')) {
|
|
||||||
deleteDirectory($phpbb_root_path . 'install');
|
|
||||||
}
|
|
||||||
|
|
||||||
$sql = "UPDATE ${table_prefix}config SET config_value = '0' WHERE config_name = 'board_disable'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
|
|
||||||
echo "Board reenabled …", PHP_EOL;
|
|
||||||
|
|
||||||
// clear cache
|
|
||||||
$data_global_cache = $phpbb_root_path . '/cache/production/data_global.' . $phpEx;
|
|
||||||
|
|
||||||
if (file_exists($data_global_cache)) {
|
|
||||||
unlink($data_global_cache);
|
|
||||||
echo "Cache cleared …", PHP_EOL;
|
|
||||||
}
|
|
||||||
echo "Your board should now be up and running, you might want to reeanble the extensions using php $argv[0] --reenable-extensions", PHP_EOL;
|
|
||||||
exit(0);
|
|
||||||
break;
|
|
||||||
case "--reenable-extensions":
|
|
||||||
$extensionsFile = 'extensions.txt';
|
|
||||||
|
|
||||||
if (file_exists($extensionsFile)) {
|
|
||||||
$iFile = fopen($extensionsFile, 'r');
|
|
||||||
$extensions = json_decode(fgets($iFile), true);
|
|
||||||
|
|
||||||
echo 'Enable extensions: ';
|
|
||||||
|
|
||||||
foreach($extensions as $extension) {
|
|
||||||
$ext = $extension['ext_name'];
|
|
||||||
// disable all extensions
|
|
||||||
$sql = "UPDATE ${table_prefix}ext SET ext_active = '1' WHERE ext_name = '$ext'";
|
|
||||||
$result = $db->sql_query($sql);
|
|
||||||
echo '.';
|
|
||||||
}
|
|
||||||
echo 'done.', PHP_EOL;
|
|
||||||
|
|
||||||
// clear cache
|
|
||||||
$data_ext_cache = $phpbb_root_path . '/cache/production/data_ext.' . $phpEx;
|
|
||||||
|
|
||||||
if (file_exists($data_ext_cache)) {
|
|
||||||
unlink($data_ext_cache);
|
|
||||||
echo "Cache cleared …", PHP_EOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
|
||||||
echo 'There are no saved extension information available.', PHP_EOL;
|
|
||||||
}
|
|
||||||
exit(0);
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
echo "unknow option $argv[1]", PHP_EOL;
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
echo "$argv[0]: missing parameter", PHP_EOL;
|
|
||||||
echo 'Usage:', PHP_EOL;
|
|
||||||
echo 'To perfom an update, you need two steps. Fist prepare the board for the update:', PHP_EOL;
|
|
||||||
echo "php $argv[0] --prepare", PHP_EOL;
|
|
||||||
echo 'Then perform the DB update with the CLI tool from phpBB, after:', PHP_EOL;
|
|
||||||
echo "php $argv[0] --finish", PHP_EOL;
|
|
||||||
echo "Additional steps:", PHP_EOL;
|
|
||||||
echo "php $argv[0] --reenable-extensions", PHP_EOL;
|
|
||||||
// echo "php $argv[0] --reenable-styles", PHP_EOL;
|
|
||||||
// really?
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue