#!/usr/local/bin/php
<?php
/* $Id$ */
/*
    pkg_mgr_install.php
    part of pfSense (http://www.pfSense.com)
    Copyright (C) 2005 Scott Ullrich and 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.
*/

require_once("guiconfig.inc");
require_once("pkg-utils.inc");

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

$todo = array();

$pgtitle = "System: Package Manager: Install Package";
include("head.inc");

?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php include("fbegin.inc"); ?>
<p class="pgtitle"><?=$pgtitle?></p>
<form action="pkg_mgr_install.php" method="post">

<?php if ($savemsg) print_info_box($savemsg); ?>
<?php
?>
<div id="mainareapkg">
<table width="100%" border="0" cellpadding="0" cellspacing="0">  <tr><td>
<?php
	$tab_array = array();
	$tab_array[0] = array("Available Packages", false, "pkg_mgr.php");
	$tab_array[1] = array("Installed Packages", false, "pkg_mgr_installed.php");
        $tab_array[2] = array("Package Installer", true, "");
	display_top_tabs($tab_array);
?>    
  </td></tr>
  <tr>
    <td class="tabcont">
              <table width="100%" border="0" cellpadding="6" cellspacing="0">
               <tr>
                 <td>
		   <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">Beginning package installation.</textarea>
                     <!-- command output box -->
	             <textarea cols="60" rows="25" name="output" id="output" wrap="hard"></textarea>
                     </center>
                 </td>
               </tr>
        </table>
    </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

/* mount rw fs */
conf_mount_rw();

/* resync password database to avoid out of sync issues */
sync_webgui_passwords();

switch($_GET['mode']) {
	case "delete":
            
            $id = get_pkg_id($_GET['pkg']);
            $todel = substr(reverse_strrchr($config['installedpackages']['package'][$id]['depends_on_package'], "."), 0, -1);
            delete_package($todel);
            delete_package_xml($_GET['pkg']);
            update_status("Package deleted.");
            $static_output .= "\nPackage deleted.";
            update_output_window($static_output);
            break;
	case "reinstallpkg":
            $id = get_pkg_id($_GET['pkg']);
            $todel = substr(reverse_strrchr($config['installedpackages']['package'][$id]['depends_on_package'], "."), 0, -1);
            delete_package($todel);
            delete_package_xml($_GET['pkg']);
            install_package($_GET['pkg']);
            update_status("Package reinstalled.");
            $static_output .= "\n\nPackage reinstalled.";
            update_output_window($static_output);
            break;
	case "reinstallxml":
            delete_package_xml($_GET['pkg']);
            install_package($_GET['pkg']);
            $static_output .= "\n\nPackage reinstalled.";
            update_output_window($static_output);
            break;
	case "reinstallall":
	    if($config['installedpackages']['package'] <> "")
			foreach($config['installedpackages']['package'] as $package) 
	                        $todo[] = array('name' => $package['name'], 'version' => $package['version']);
            foreach($todo as $pkgtodo) {
                    $static_output = "";
                    update_output_window($static_output);
                    delete_package($pkgtodo['name'] . '-' . $pkgtodo['version']);
                    delete_package_xml($pkgtodo['name']);
                    install_package($pkgtodo['name']);
            }
            update_status("All packages reinstalled.");
            $static_output .= "\n\nAll packages reinstalled.";
            update_output_window($static_output);
	    break;
	default:
            install_package($_GET['id']);
            update_status("Installation of {$_GET['id']} completed.");
            $static_output .= "\n\nInstallation completed.";
            update_output_window($static_output);
}

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

/* read only fs */
conf_mount_ro();

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

?>
