<?php
/* $Id$ */
/*
    pkg_mgr_install.php
    part of pfSense (http://www.pfSense.com)
    Copyright (C) 2004-2010 Scott Ullrich <sullrich@gmail.com>
 	Copyright (C) 2005 Colin Smith
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/
/*
	pfSense_BUILDER_BINARIES:	/bin/rm
	pfSense_MODULE:	pkgs
*/

##|+PRIV
##|*IDENT=page-system-packagemanager-installpackage
##|*NAME=System: Package Manager: Install Package page
##|*DESCR=Allow access to the 'System: Package Manager: Install Package' page.
##|*MATCH=pkg_mgr_install.php*
##|-PRIV

ini_set('max_execution_time', '0');

require("guiconfig.inc");
require_once("functions.inc");
require_once("filter.inc");
require_once("shaper.inc");
require_once("pkg-utils.inc");

$static_output = "";
$static_status = "";
$sendto = "output";

$todo = array();

$pgtitle = array(gettext("System"),gettext("Package Manager"),gettext("Install Package"));
include("head.inc");

?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php include("fbegin.inc"); ?>
	<form action="pkg_mgr_install.php" method="post">
		<div id="mainareapkg">
			<table width="100%" border="0" cellpadding="0" cellspacing="0">
				<tr>
					<td>
						<?php
							$version = file_get_contents("/etc/version");
							$tab_array = array();
							$tab_array[] = array("{$version} " . gettext("packages"), false, "pkg_mgr.php");
//							$tab_array[] = array("Packages for any platform", false, "pkg_mgr.php?ver=none");
//							$tab_array[] = array("Packages for a different platform", $requested_version == "other" ? true : false, "pkg_mgr.php?ver=other");
							$tab_array[] = array(gettext("Installed packages"), false, "pkg_mgr_installed.php");
							$tab_array[] = array(gettext("Package Installer"), true, "");
							display_top_tabs($tab_array);
						?>
					</td>
				</tr>
				<tr>
					<td class="tabcont">
						<center>
							<table height='15' width='420' border='0' colspacing='0' cellpadding='0' cellspacing='0'>
								<tr>
									<td background="./themes/<?= $g['theme']; ?>/images/misc/bar_left.gif" height='15' width='5'>
									</td>
									<td>
										<table id="progholder" name="progholder" height='15' width='410' border='0' colspacing='0' cellpadding='0' cellspacing='0'>
											<td background="./themes/<?= $g['theme']; ?>/images/misc/bar_gray.gif" valign="top" align="left">
												<img src='./themes/<?= $g['theme']; ?>/images/misc/bar_blue.gif' width='0' height='15' name='progressbar' id='progressbar'>
											</td>
										</table>
									</td>
									<td background="./themes/<?= $g['theme']; ?>/images/misc/bar_right.gif" height='15' width='5'>
									</td>
								</tr>
							</table>
							<br>
							<!-- status box -->
							<textarea cols="60" rows="1" name="status" id="status" wrap="hard"><?=gettext("Beginning package installation.");?></textarea>
							<!-- command output box -->
							<textarea cols="60" rows="25" name="output" id="output" wrap="hard"></textarea>
						</center>
					</td>
				</tr>
			</table>
		</div>
	</form>
<?php include("fend.inc"); ?>
<script type="text/javascript">
NiftyCheck();
Rounded("div#mainareapkg","bl br","#FFF","#eeeeee","smooth");
</script>
</body>
</html>


<?php

ob_flush();

// Write out configuration to creatae a backup prior to pkg install
write_config(gettext("Creating restore point before package installation."));

/* mount rw fs */
conf_mount_rw();

switch($_GET['mode']) {
	case "delete":
		$id = get_pkg_id($_GET['pkg']);
		uninstall_package_from_name($_GET['pkg']);
		update_status(gettext("Package deleted."));
		$static_output .= "\n" . gettext("Package deleted.");
		update_output_window($static_output);
		filter_configure();
		break;
	case "showlog":
		$id = htmlspecialchars($_GET['pkg']);
		if(strpos($id, "."))
			exit;
		update_output_window(file_get_contents("/tmp/pkg_mgr_{$id}.log"));
		break;
	case "reinstallpkg":
		$id = get_pkg_id(htmlspecialchars($_GET['pkg']));
		delete_package_xml(htmlspecialchars($_GET['pkg']));
		install_package(htmlspecialchars($_GET['pkg']));
		update_status(gettext("Package reinstalled."));
		$static_output .= "\n\n" . gettext("Package reinstalled.");
		start_service(htmlspecialchars($_GET['pkg']));
		update_output_window($static_output);
		filter_configure();
		break;
	case "reinstallxml":
		delete_package_xml(htmlspecialchars($_GET['pkg']));
		install_package(htmlspecialchars($_GET['pkg']));
		$static_output .= "\n\n" . gettext("Package reinstalled.");
		start_service(htmlspecialchars($_GET['pkg']));
		update_output_window($static_output);
		filter_configure();
		break;
	case "installedinfo":
		$id = get_pkg_id(htmlspecialchars($_GET['pkg']));
		if(file_exists("/tmp/{$_GET['pkg']}.info")) {
			$filename = escapeshellcmd("/tmp/" . $_GET['pkg']  . ".info");
			$status = file_get_contents($filename);
			update_status($_GET['pkg']  . " " . gettext("installation completed."));
			update_output_window($status);
		} else {
			update_output_window(sprintf(gettext("Could not find %s."), $_GET['pkg']));
		}
		break;
	case "reinstallall":
		if ($config['installedpackages']['package'])
			exec("rm -rf /var/db/pkg/*");
		if (is_array($config['installedpackages']['package']))
			foreach($config['installedpackages']['package'] as $package)
				$todo[] = array('name' => $package['name'], 'version' => $package['version']);
		$pkg_id = 0;
		foreach($todo as $pkgtodo) {
			$static_output = "";
			if($pkgtodo['name']) {
				update_output_window($static_output);
				delete_package($pkgtodo['name'] . '-' . $pkgtodo['version'], $pkg_id);
				delete_package_xml($pkgtodo['name']);
				install_package($pkgtodo['name']);
				$pkg_id++;
			}
		}
		update_status(gettext("All packages reinstalled."));
		$static_output .= "\n\n" . gettext("All packages reinstalled.");
		start_service(htmlspecialchars($_GET['pkg']));
		update_output_window($static_output);
		filter_configure();
		break;
	default:
		$status = install_package(htmlspecialchars($_GET['id']));
		if($status == -1) {
			update_status(gettext("Installation of") . " " . htmlspecialchars($_GET['id']) . " " . gettext("FAILED!"));
			$static_output .= "\n\n" . gettext("Installation halted.");
			update_output_window($static_output);
		} else {
			$filename = escapeshellcmd("/tmp/" . $_GET['id']  . ".info");
			$fd = fopen($filename, "w");
			$status_a = gettext("Installation of") . " " . htmlspecialchars($_GET['id']) . " " . gettext("completed.");
			update_status($status_a);
			$status = get_after_install_info($_GET['id']);
			if($status) 
				$static_output .= "\n" . gettext("Installation completed.") . "\n\n{$_GET['id']} " . gettext("setup instructions") . ":\n\n{$status}";
			else
				$static_output .= "\n" . gettext("Installation completed.   Please check to make sure that the package is configured from the respective menu then start the package.");
			fwrite($fd, $status_a . "\n\n". $static_output);
			fclose($fd);
			echo "<script type='text/javascript'>document.location=\"pkg_mgr_install.php?mode=installedinfo&pkg={$_GET['id']}\";</script>";
		}
		filter_configure();
		break;
}

// Delete all temporary package tarballs and staging areas.
unlink_if_exists("/tmp/apkg_*");
rmdir_recursive("/var/tmp/instmp*");

// close log
if($fd_log)
	fclose($fd_log);

/* read only fs */
conf_mount_ro();

?>
