fixed //checkupdate

This commit is contained in:
Steffen Schröder 2014-04-29 23:53:55 +02:00
parent 200f199c06
commit ab375e636e

View File

@ -18,30 +18,33 @@ use ManiaControl\Plugins\PluginMenu;
/**
* Manager checking for ManiaControl Core and Plugin Updates
*
* @author steeffeen & kremsy
* @author steeffeen & kremsy
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class UpdateManager implements CallbackListener, CommandListener, TimerListener {
/*
* Constants
*/
const SETTING_ENABLEUPDATECHECK = 'Enable Automatic Core Update Check';
const SETTING_UPDATECHECK_INTERVAL = 'Core Update Check Interval (Hours)';
const SETTING_UPDATECHECK_CHANNEL = 'Core Update Channel (release, beta, nightly)';
const SETTING_PERFORM_BACKUPS = 'Perform Backup before Updating';
const SETTING_AUTO_UPDATE = 'Perform update automatically';
const SETTING_PERMISSION_UPDATE = 'Update Core';
const SETTING_ENABLEUPDATECHECK = 'Enable Automatic Core Update Check';
const SETTING_UPDATECHECK_INTERVAL = 'Core Update Check Interval (Hours)';
const SETTING_UPDATECHECK_CHANNEL = 'Core Update Channel (release, beta, nightly)';
const SETTING_PERFORM_BACKUPS = 'Perform Backup before Updating';
const SETTING_AUTO_UPDATE = 'Perform update automatically';
const SETTING_PERMISSION_UPDATE = 'Update Core';
const SETTING_PERMISSION_UPDATECHECK = 'Check Core Update';
const CHANNEL_RELEASE = 'release';
const CHANNEL_BETA = 'beta';
const CHANNEL_NIGHTLY = 'nightly';
const CHANNEL_RELEASE = 'release';
const CHANNEL_BETA = 'beta';
const CHANNEL_NIGHTLY = 'nightly';
/*
* Private Properties
*/
private $maniaControl = null;
/** @var UpdateData $coreUpdateData */
/**
*
* @var UpdateData $coreUpdateData
*/
private $coreUpdateData = null;
private $currentBuildDate = "";
@ -68,7 +71,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERDISCONNECT, $this, 'autoUpdate');
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this, 'handleManialinkPageAnswer');
//define Permissions
// define Permissions
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_UPDATE, AuthenticationManager::AUTH_LEVEL_ADMIN);
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_UPDATECHECK, AuthenticationManager::AUTH_LEVEL_MODERATOR);
@ -95,17 +98,18 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
return;
}
//Check if a new Core Update is Available
$self = $this;
// Check if a new Core Update is Available
$self = $this;
$maniaControl = $this->maniaControl;
$this->checkCoreUpdateAsync(function (UpdateData $updateData) use ($self, $maniaControl, $time) {
$buildDate = strtotime($self->getCurrentBuildDate());
$this->checkCoreUpdateAsync(function (UpdateData $updateData) use($self, $maniaControl, $time) {
$buildDate = strtotime($self->getCurrentBuildDate());
$releaseTime = strtotime($updateData->releaseDate);
if ($buildDate < $releaseTime) {
$updateChannel = $maniaControl->settingManager->getSetting($self, UpdateManager::SETTING_UPDATECHECK_CHANNEL);
if ($updateChannel != UpdateManager::CHANNEL_NIGHTLY) {
$maniaControl->log('New ManiaControl Version ' . $updateData->version . ' available!');
} else {
}
else {
$maniaControl->log('New Nightly Build (' . $updateData->releaseDate . ') available!');
}
$self->setCoreUpdateData($updateData);
@ -128,13 +132,14 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
return;
}
$buildDate = strtotime($this->currentBuildDate);
$buildDate = strtotime($this->currentBuildDate);
$releaseTime = strtotime($this->coreUpdateData->releaseDate);
if ($buildDate < $releaseTime) {
$updateChannel = $this->maniaControl->settingManager->getSetting($this, self::SETTING_UPDATECHECK_CHANNEL);
if ($updateChannel != self::CHANNEL_NIGHTLY) {
$this->maniaControl->chat->sendInformation('New ManiaControl Version ' . $this->coreUpdateData->version . ' available!', $player->login);
} else {
}
else {
$this->maniaControl->chat->sendSuccess('New Nightly Build (' . $this->coreUpdateData->releaseDate . ') available!', $player->login);
}
}
@ -164,7 +169,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
return;
}
$buildDate = strtotime($this->currentBuildDate);
$buildDate = strtotime($this->currentBuildDate);
$releaseTime = strtotime($this->coreUpdateData->releaseDate);
if ($buildDate && $buildDate >= $releaseTime) {
return;
@ -178,11 +183,10 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$this->performCoreUpdate($this->coreUpdateData);
}
/**
* Handle //checkupdate command
*
* @param array $chatCallback
* @param array $chatCallback
* @param Player $player
*/
public function handle_CheckUpdate(array $chatCallback, Player $player) {
@ -191,27 +195,10 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
return;
}
$updateChannel = $this->maniaControl->settingManager->getSetting($this, self::SETTING_UPDATECHECK_CHANNEL);
if ($updateChannel != self::CHANNEL_NIGHTLY) {
// Check update and send result message
$self = $this;
$this->checkCoreUpdateAsync(function (UpdateData $updateData) use (&$self, &$player) {
if (!$updateData) {
$self->maniaControl->chat->sendInformation('No Update available!', $player->login);
return;
}
$version = $self->maniaControl->client->getVersion();
if ($updateData->minDedicatedBuild > $version->build) {
$self->maniaControl->chat->sendError("No new Build for this Server-version available!", $player->login);
return;
}
$self->maniaControl->chat->sendSuccess('Update for Version ' . $updateData->version . ' available!', $player->login);
});
} else {
if ($updateChannel === self::CHANNEL_NIGHTLY) {
// Special nightly channel updating
$self = $this;
$this->checkCoreUpdateAsync(function (UpdateData $updateData) use (&$self, &$player) {
$this->checkCoreUpdateAsync(function ($updateData) use(&$self, &$player) {
if (!$updateData) {
$self->maniaControl->chat->sendInformation('No Update available!', $player->login);
return;
@ -223,7 +210,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
return;
}
$buildTime = strtotime($self->currentBuildDate);
$buildTime = strtotime($self->currentBuildDate);
$releaseTime = strtotime($updateData->releaseDate);
if ($buildTime != '') {
if ($buildTime >= $releaseTime) {
@ -231,11 +218,32 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
return;
}
$self->maniaControl->chat->sendSuccess('New Nightly Build (' . $updateData->releaseDate . ') available, current build: ' . $self->currentBuildDate . '!', $player->login);
} else {
}
else {
$self->maniaControl->chat->sendSuccess('New Nightly Build (' . $updateData->releaseDate . ') available!', $player->login);
}
}, true);
}
else {
// Check update and send result message
$self = $this;
$this->checkCoreUpdateAsync(function ($updateData) use(&$self, &$player) {
if (!$updateData) {
$self->maniaControl->chat->sendInformation('No Update available!', $player->login);
return;
}
$version = $self->maniaControl->client->getVersion();
if ($updateData->minDedicatedBuild > $version->build) {
$self->maniaControl->chat->sendError("No new Build for this Server-version available!", $player->login);
return;
}
$self->maniaControl->chat->sendSuccess('Update for Version ' . $updateData->version . ' available!', $player->login);
});
}
}
/**
@ -245,17 +253,18 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
*/
public function handleManialinkPageAnswer(array $callback) {
$actionId = $callback[1][2];
$update = (strpos($actionId, PluginMenu::ACTION_PREFIX_UPDATEPLUGIN) === 0);
$install = (strpos($actionId, PluginInstallMenu::ACTION_PREFIX_INSTALLPLUGIN) === 0);
$update = (strpos($actionId, PluginMenu::ACTION_PREFIX_UPDATEPLUGIN) === 0);
$install = (strpos($actionId, PluginInstallMenu::ACTION_PREFIX_INSTALLPLUGIN) === 0);
$login = $callback[1][1];
$login = $callback[1][1];
$player = $this->maniaControl->playerManager->getPlayer($login);
if ($update) {
$pluginClass = substr($actionId, strlen(PluginMenu::ACTION_PREFIX_UPDATEPLUGIN));
if ($pluginClass == 'All') {
$this->checkPluginsUpdate($player);
} else {
}
else {
$newUpdate = $this->checkPluginUpdate($pluginClass);
if ($newUpdate != false) {
$newUpdate->pluginClass = $pluginClass;
@ -267,8 +276,8 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
if ($install) {
$pluginId = substr($actionId, strlen(PluginInstallMenu::ACTION_PREFIX_INSTALLPLUGIN));
$url = ManiaControl::URL_WEBSERVICE . 'plugins?id=' . $pluginId;
$dataJson = FileUtil::loadFile($url);
$url = ManiaControl::URL_WEBSERVICE . 'plugins?id=' . $pluginId;
$dataJson = FileUtil::loadFile($url);
$pluginVersions = json_decode($dataJson);
if ($pluginVersions && isset($pluginVersions[0])) {
$pluginData = $pluginVersions[0];
@ -307,8 +316,8 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
* @return mixed
*/
private function setNightlyBuildDate($date) {
$nightlyBuildDateFile = ManiaControlDir . '/core/nightly_build.txt';
$success = file_put_contents($nightlyBuildDateFile, $date);
$nightlyBuildDateFile = ManiaControlDir . '/core/nightly_build.txt';
$success = file_put_contents($nightlyBuildDateFile, $date);
$this->currentBuildDate = $date;
return $success;
}
@ -316,7 +325,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
/**
* Handle //coreupdate command
*
* @param array $chatCallback
* @param array $chatCallback
* @param Player $player
*/
public function handle_CoreUpdate(array $chatCallback, Player $player) {
@ -326,7 +335,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
}
$self = $this;
$this->checkCoreUpdateAsync(function (UpdateData $updateData) use (&$self, &$player) {
$this->checkCoreUpdateAsync(function (UpdateData $updateData) use(&$self, &$player) {
if (!$updateData) {
$self->maniaControl->chat->sendError('Update is currently not possible!', $player->login);
return;
@ -352,7 +361,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
/**
* Handle //pluginupdate command
*
* @param array $chatCallback
* @param array $chatCallback
* @param Player $player
*/
public function handle_PluginUpdate(array $chatCallback, Player $player) {
@ -373,7 +382,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$this->maniaControl->log('[UPDATE] Checking plugins for newer versions ...');
$self = $this;
$this->maniaControl->pluginManager->fetchPluginList(function ($data, $error) use (&$self, &$player) {
$this->maniaControl->pluginManager->fetchPluginList(function ($data, $error) use(&$self, &$player) {
$outdatedPlugins = array();
if (!$data || $error) {
@ -383,8 +392,8 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$pluginClasses = $self->maniaControl->pluginManager->getPluginClasses();
foreach($data as $plugin) {
foreach($pluginClasses as $pluginClass) {
foreach ($data as $plugin) {
foreach ($pluginClasses as $pluginClass) {
$id = $pluginClass::getId();
if ($plugin->id == $id) {
if ($plugin->currentVersion->version > $pluginClass::getVersion()) {
@ -401,10 +410,11 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$self->maniaControl->chat->sendInformation('Checking plugins: COMPLETE, there are ' . count($outdatedPlugins) . ' outdated plugins, now updating ...', $player->login);
}
$self->performPluginsBackup();
foreach($outdatedPlugins as $plugin) {
foreach ($outdatedPlugins as $plugin) {
$self->updatePlugin($plugin, $player);
}
} else {
}
else {
$self->maniaControl->log('[UPDATE] Checking plugins: COMPLETE, all plugins are up-to-date!');
if ($player) {
$self->maniaControl->chat->sendInformation('Checking plugins: COMPLETE, all plugins are up-to-date!', $player->login);
@ -423,15 +433,18 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
if (is_object($pluginClass)) {
$pluginClass = get_class($pluginClass);
}
/** @var Plugin $pluginClass */
$pluginId = $pluginClass::getId();
$url = ManiaControl::URL_WEBSERVICE . 'plugins?id=' . $pluginId;
$dataJson = FileUtil::loadFile($url);
/**
*
* @var Plugin $pluginClass
*/
$pluginId = $pluginClass::getId();
$url = ManiaControl::URL_WEBSERVICE . 'plugins?id=' . $pluginId;
$dataJson = FileUtil::loadFile($url);
$pluginVersions = json_decode($dataJson);
if (!$pluginVersions || !isset($pluginVersions[0])) {
return false;
}
$pluginData = $pluginVersions[0];
$pluginData = $pluginVersions[0];
$pluginVersion = $pluginClass::getVersion();
if ($pluginData->currentVersion->version <= $pluginVersion) {
return false;
@ -446,21 +459,24 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
*/
public function getPluginsUpdates() {
$pluginUpdates = array();
$pluginsWS = array();
$pluginsWS = array();
$url = ManiaControl::URL_WEBSERVICE . 'plugins';
$dataJson = FileUtil::loadFile($url);
$url = ManiaControl::URL_WEBSERVICE . 'plugins';
$dataJson = FileUtil::loadFile($url);
$pluginVersions = json_decode($dataJson);
if (!$pluginVersions || !isset($pluginVersions[0])) {
return false;
}
foreach($pluginVersions as $plugin) {
foreach ($pluginVersions as $plugin) {
$pluginsWS[$plugin->id] = $plugin;
}
/** @var Plugin $pluginClass */
foreach($this->maniaControl->pluginManager->getPluginClasses() as $pluginClass) {
/**
*
* @var Plugin $pluginClass
*/
foreach ($this->maniaControl->pluginManager->getPluginClasses() as $pluginClass) {
$pluginId = $pluginClass::getId();
if (array_key_exists($pluginId, $pluginsWS)) {
if ($pluginsWS[$pluginId]->currentVersion->version > $pluginClass::getVersion()) {
@ -478,13 +494,13 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
/**
* Update pluginfile
*
* @param $pluginData
* @param $pluginData
* @param Player $player
* @param bool $reopen
* @param bool $reopen
*/
private function updatePlugin($pluginData, Player $player = null, $reopen = false) {
$self = $this;
$this->maniaControl->fileReader->loadFile($pluginData->currentVersion->url, function ($updateFileContent, $error) use (&$self, &$updateData, &$player, &$pluginData, &$reopen) {
$this->maniaControl->fileReader->loadFile($pluginData->currentVersion->url, function ($updateFileContent, $error) use(&$self, &$updateData, &$player, &$pluginData, &$reopen) {
$self->maniaControl->log('[UPDATE] Now updating ' . $pluginData->name . ' ...');
if ($player) {
$self->maniaControl->chat->sendInformation('Now updating ' . $pluginData->name . ' ...', $player->login);
@ -503,7 +519,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
}
return;
}
$zip = new \ZipArchive();
$zip = new \ZipArchive();
$result = $zip->open($updateFileName);
if ($result !== true) {
trigger_error("Couldn't open plugin Zip. ({$result})");
@ -535,15 +551,15 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
/**
* Install pluginfile
*
* @param $pluginData
* @param $pluginData
* @param Player $player
* @param bool $reopen
* @param bool $reopen
*/
private function installPlugin($pluginData, Player $player, $reopen = false) {
$self = $this;
$this->maniaControl->fileReader->loadFile($pluginData->currentVersion->url, function ($installFileContent, $error) use (&$self, &$updateData, &$player, &$pluginData, &$reopen) {
$this->maniaControl->fileReader->loadFile($pluginData->currentVersion->url, function ($installFileContent, $error) use(&$self, &$updateData, &$player, &$pluginData, &$reopen) {
$pluginsDirectory = ManiaControlDir . '/plugins/';
$pluginFiles = scandir($pluginsDirectory);
$pluginFiles = scandir($pluginsDirectory);
$self->maniaControl->log('[UPDATE] Now installing ' . $pluginData->name . ' ...');
$self->maniaControl->chat->sendInformation('Now installing ' . $pluginData->name . ' ...', $player->login);
@ -560,7 +576,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$self->maniaControl->chat->sendError("Install failed: Couldn't save plugin zip!", $player->login);
return;
}
$zip = new \ZipArchive();
$zip = new \ZipArchive();
$result = $zip->open($installFileName);
if ($result !== true) {
trigger_error("Couldn't open plugin Zip. ({$result})");
@ -574,10 +590,10 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
@rmdir($tempDir);
$pluginFilesAfter = scandir($pluginsDirectory);
$newFiles = array_diff($pluginFilesAfter, $pluginFiles);
$newFiles = array_diff($pluginFilesAfter, $pluginFiles);
$classesBefore = get_declared_classes();
foreach($newFiles as $newFile) {
foreach ($newFiles as $newFile) {
$filePath = $pluginsDirectory . $newFile;
if (is_file($filePath)) {
@ -597,12 +613,15 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
$classesAfter = get_declared_classes();
$newClasses = array_diff($classesAfter, $classesBefore);
foreach($newClasses as $className) {
foreach ($newClasses as $className) {
if (!$self->maniaControl->pluginManager->isPluginClass($className)) {
continue;
}
/** @var Plugin $className */
/**
*
* @var Plugin $className
*/
$self->maniaControl->pluginManager->addPluginClass($className);
$className::prepare($self->maniaControl);
@ -636,24 +655,25 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
/**
* Checks a core update Asynchronously
*
* @param $function
* @param $function
* @param bool $ignoreVersion
*/
private function checkCoreUpdateAsync($function, $ignoreVersion = false) {
$updateChannel = $this->getCurrentUpdateChannelSetting();
$url = ManiaControl::URL_WEBSERVICE . 'versions?update=1&current=1&channel=' . $updateChannel;
$url = ManiaControl::URL_WEBSERVICE . 'versions?current=1&channel=' . $updateChannel;
$this->maniaControl->fileReader->loadFile($url, function ($dataJson, $error) use (&$function, $ignoreVersion) {
$this->maniaControl->fileReader->loadFile($url, function ($dataJson, $error) use(&$function, $ignoreVersion) {
$versions = json_decode($dataJson);
if (!$versions || !isset($versions[0])) {
return;
}
$updateData = new UpdateData($versions[0]);
if (!$ignoreVersion && $updateData->version <= ManiaControl::VERSION) {
return;
call_user_func($function, null);
}
else {
call_user_func($function, $updateData);
}
call_user_func($function, $updateData);
});
}
@ -668,15 +688,15 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
mkdir($backupFolder);
}
$backupFileName = $backupFolder . 'backup_' . ManiaControl::VERSION . '_' . date('y-m-d') . '_' . time() . '.zip';
$backupZip = new \ZipArchive();
$backupZip = new \ZipArchive();
if ($backupZip->open($backupFileName, \ZipArchive::CREATE) !== TRUE) {
trigger_error("Couldn't create Backup Zip!");
return false;
}
$excludes = array('.', '..', 'backup', 'logs', 'ManiaControl.log');
$pathInfo = pathInfo(ManiaControlDir);
$excludes = array('.', '..', 'backup', 'logs', 'ManiaControl.log');
$pathInfo = pathInfo(ManiaControlDir);
$parentPath = $pathInfo['dirname'] . '/';
$dirName = $pathInfo['basename'];
$dirName = $pathInfo['basename'];
$backupZip->addEmptyDir($dirName);
$this->zipDirectory($backupZip, ManiaControlDir, strlen($parentPath), $excludes);
$backupZip->close();
@ -694,15 +714,15 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
mkdir($backupFolder);
}
$backupFileName = $backupFolder . 'backup_plugins_' . date('y-m-d') . '_' . time() . '.zip';
$backupZip = new \ZipArchive();
$backupZip = new \ZipArchive();
if ($backupZip->open($backupFileName, \ZipArchive::CREATE) !== TRUE) {
trigger_error("Couldn't create Backup Zip!");
return false;
}
$excludes = array('.', '..');
$pathInfo = pathInfo(ManiaControlDir . '/plugins');
$excludes = array('.', '..');
$pathInfo = pathInfo(ManiaControlDir . '/plugins');
$parentPath = $pathInfo['dirname'] . '/';
$dirName = $pathInfo['basename'];
$dirName = $pathInfo['basename'];
$backupZip->addEmptyDir($dirName);
$this->zipDirectory($backupZip, ManiaControlDir . '/plugins', strlen($parentPath), $excludes);
$backupZip->close();
@ -713,9 +733,9 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
* Add a complete Directory to the ZipArchive
*
* @param \ZipArchive $zipArchive
* @param string $folderName
* @param int $prefixLength
* @param array $excludes
* @param string $folderName
* @param int $prefixLength
* @param array $excludes
* @return bool
*/
private function zipDirectory(\ZipArchive &$zipArchive, $folderName, $prefixLength, array $excludes = array()) {
@ -724,11 +744,11 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
trigger_error("Couldn't open Folder '{$folderName}' for Backup!");
return false;
}
while(false !== ($file = readdir($folderHandle))) {
while (false !== ($file = readdir($folderHandle))) {
if (in_array($file, $excludes)) {
continue;
}
$filePath = $folderName . '/' . $file;
$filePath = $folderName . '/' . $file;
$localPath = substr($filePath, $prefixLength);
if (is_file($filePath)) {
$zipArchive->addFile($filePath, $localPath);
@ -748,7 +768,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
* Perform a Core Update
*
* @param object $updateData
* @param $player
* @param $player
* @return bool
*/
private function performCoreUpdate(UpdateData $updateData, Player $player = null) {
@ -769,7 +789,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
}
$self = $this;
$this->maniaControl->fileReader->loadFile($updateData->url, function ($updateFileContent, $error) use (&$self, &$updateData, &$player) {
$this->maniaControl->fileReader->loadFile($updateData->url, function ($updateFileContent, $error) use(&$self, &$updateData, &$player) {
$tempDir = ManiaControlDir . '/temp/';
if (!is_dir($tempDir)) {
mkdir($tempDir);
@ -784,7 +804,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
}
return false;
}
$zip = new \ZipArchive();
$zip = new \ZipArchive();
$result = $zip->open($updateFileName);
if ($result !== true) {
trigger_error("Couldn't open Update Zip. ({$result})");
@ -799,7 +819,7 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
unlink($updateFileName);
@rmdir($tempDir);
//Set the Nightly Build Date
// Set the Nightly Build Date
$self->setNightlyBuildDate($updateData->releaseDate);
if ($player) {
@ -822,11 +842,11 @@ class UpdateManager implements CallbackListener, CommandListener, TimerListener
*/
private function checkPermissions() {
$writableDirectories = array('/core/', '/plugins/');
$path = ManiaControlDir;
$path = ManiaControlDir;
foreach($writableDirectories as $writableDirecotry) {
foreach ($writableDirectories as $writableDirecotry) {
$dir = new \RecursiveDirectoryIterator($path . $writableDirecotry);
foreach(new \RecursiveIteratorIterator($dir) as $filename => $file) {
foreach (new \RecursiveIteratorIterator($dir) as $filename => $file) {
if (substr($filename, -1) != '.' && substr($filename, -2) != '..') {
if (!is_writable($filename)) {
$this->maniaControl->log('Cannot update: the file/directory "' . $filename . '" is not writable!');