* Copyright 1999-2006 Jon Parise * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html. */ define('HORDE_BASE', dirname(__FILE__) . '/../..'); require_once HORDE_BASE . '/lib/base.php'; if (!Auth::isAdmin()) { Horde::fatal('Forbidden.', __FILE__, __LINE__); } /* Get form data. */ $setup = Util::getFormData('setup'); $type = Util::getFormData('type'); $save = Util::getFormData('save'); $clean = Util::getFormData('clean'); $filename = 'horde_setup_upgrade.php'; /* Check if this is only a request to clean up. */ if ($clean == 'tmp') { $tmp_dir = Horde::getTempDir(); $path = Util::realPath($tmp_dir . '/' . $filename); if (unlink($tmp_dir . '/' . $filename)) { $notification->push(sprintf(_("Deleted setup upgrade script \"%s\"."), $path), 'horde.success'); } else { $notification->push(sprintf(_("Could not delete setup upgrade script \"%s\"."), Util::realPath($path)), 'horde.error'); } $registry->clearCache(); $url = Horde::applicationUrl('admin/setup/index.php', true); header('Location: ' . $url); exit; } $data = ''; if ($setup == 'conf' && $type == 'php') { /* A bit ugly here, save PHP code into a string for creating the script * to be run at the command prompt. */ $data = '#!/usr/bin/php' . "\n"; $data .= ' $php) { $path = $registry->get('fileroot', $app) . '/config'; /* Add code to save backup. */ $data .= 'if (file_exists(\'' . $path . '/conf.php\')) {' . "\n"; $data .= ' if (@copy(\'' . $path . '/conf.php\', \'' . $path . '/conf.php.bak\')) {' . "\n"; $data .= ' echo \'' . _("Successfully saved backup configuration.") . '\' . "\n";' . "\n"; $data .= ' } else {' . "\n"; $data .= ' echo \'' . _("Could not save a backup configuation.") . '\' . "\n";' . "\n"; $data .= ' }' . "\n"; $data .= '}' . "\n"; $data .= 'if ($fp = @fopen(\'' . $path . '/conf.php\', \'w\')) {' . "\n"; $data .= ' fwrite($fp, \''; $data .= String::convertCharset(str_replace(array('\\', '\''), array('\\\\', '\\\''), $php), NLS::getCharset(), 'iso-8859-1'); $data .= '\');' . "\n"; $data .= ' fclose($fp);' . "\n"; $data .= ' echo \'' . sprintf(_("Saved %s configuration."), $app) . '\' . "\n";' . "\n"; $data .= '} else {' . "\n"; $data .= ' echo \'' . sprintf(_("Could not save %s configuration."), $app) . '\' . "\n";' . "\n"; $data .= '}' . "\n\n"; } } if ($save == 'tmp') { $tmp_dir = Horde::getTempDir(); /* Add self-destruct code. */ $data .= 'echo \'Self-destructing...\' . "\n";' . "\n"; $data .= 'if (unlink(__FILE__)) {' . "\n"; $data .= ' echo \'' . _("Upgrade script deleted.") . '\' . "\n";' . "\n"; $data .= '} else {' . "\n"; $data .= ' echo \'' . sprintf(_("WARNING!!! REMOVE SCRIPT MANUALLY FROM %s."), $tmp_dir) . '\' . "\n";' . "\n"; $data .= '}' . "\n"; /* The script should be saved to server's temporary directory. */ $path = Util::realPath($tmp_dir . '/' . $filename); if ($fp = @fopen($tmp_dir . '/' . $filename, 'w')) {; fwrite($fp, $data); fclose($fp); chmod($tmp_dir . '/' . $filename, 0777); $notification->push(sprintf(_("Saved setup upgrade script to: \"%s\"."), $path), 'horde.success'); } else { $notification->push(sprintf(_("Could not save setup upgrade script to: \"%s\"."), $path), 'horde.error'); } $url = Horde::applicationUrl('admin/setup/index.php', true); header('Location: ' . $url); exit; } else { /* Output script to browser for download. */ $browser->downloadHeaders($filename, 'text/plain', false, strlen($data)); echo $data; }