pkg_mgr_install.php 10.6 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4
	Copyright (C) 2004-2010 Scott Ullrich <sullrich@gmail.com>
5
	Copyright (C) 2005 Colin Smith
Ad Schellevis's avatar
Ad Schellevis committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
	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.
*/

ini_set('max_execution_time', '0');

require("guiconfig.inc");
33
require_once("functions.inc");
Ad Schellevis's avatar
Ad Schellevis committed
34 35
require_once("filter.inc");
require_once("shaper.inc");
36
require_once("pkg-utils.inc");
Ad Schellevis's avatar
Ad Schellevis committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

global $static_output;

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

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

if ($_POST) {
	if (isset($_POST['pkgcancel']) || (empty($_POST['id']) && $_POST['mode'] != 'reinstallall')) {
		header("Location: pkg_mgr_installed.php");
		return;
	}
} else if ($_GET) {
	switch ($_GET['mode']) {
	case 'reinstallall':
	case 'showlog':
		break;
	case 'installedinfo':
	case 'reinstallxml':
        case 'reinstallpkg':
	case 'delete':
		if (empty($_GET['pkg'])) {
			header("Location: pkg_mgr_installed.php");
			return;
		}
		break;
	default:
		if (empty($_GET['id'])) {
			header("Location: pkg_mgr_installed.php");
			return;
		}
		break;
	}
}

?>

Ad Schellevis's avatar
Ad Schellevis committed
77
<body>
Ad Schellevis's avatar
Ad Schellevis committed
78
<?php include("fbegin.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
79 80

	<section class="page-content-main">
81
		<div class="container-fluid">
Ad Schellevis's avatar
Ad Schellevis committed
82
			<div class="row">
83

Ad Schellevis's avatar
Ad Schellevis committed
84 85
				<?php
				/* Print package server mismatch warning. See https://redmine.pfsense.org/issues/484 */
86 87
				/*if (!verify_all_package_servers())
					print_info_box(package_server_mismatch_message());*/
88

Ad Schellevis's avatar
Ad Schellevis committed
89 90 91
				/* Print package server SSL warning. See https://redmine.pfsense.org/issues/484 */
				if (check_package_server_ssl() === false)
					print_info_box(package_server_ssl_failure_message()); ?>
92

Ad Schellevis's avatar
Ad Schellevis committed
93
			    <section class="col-xs-12">
94 95


Ad Schellevis's avatar
Ad Schellevis committed
96
					<?php
Ad Schellevis's avatar
Ad Schellevis committed
97 98 99 100 101
							$tab_array = array();
							$tab_array[] = array(gettext("Available packages"), false, "pkg_mgr.php");
							$tab_array[] = array(gettext("Installed packages"), false, "pkg_mgr_installed.php");
							$tab_array[] = array(gettext("Package Installer"), true, "");
							display_top_tabs($tab_array);
Ad Schellevis's avatar
Ad Schellevis committed
102
					?>
103 104 105 106 107

					<div class="tab-content content-box col-xs-12">

				    <div class="container-fluid">
						<form action="pkg_mgr_install.php" method="post" name="iform">
Ad Schellevis's avatar
Ad Schellevis committed
108 109 110
		                        <div class="table-responsive">
			                        <table class="table table-striped table-sort">

111

Ad Schellevis's avatar
Ad Schellevis committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
<?php if ((empty($_GET['mode']) && $_GET['id']) || (!empty($_GET['mode']) && (!empty($_GET['pkg']) || $_GET['mode'] == 'reinstallall') && ($_GET['mode'] != 'installedinfo' && $_GET['mode'] != 'showlog'))):
	if (empty($_GET['mode']) && $_GET['id']) {
		$pkgname = str_replace(array("<", ">", ";", "&", "'", '"', '.', '/'), "", htmlspecialchars_decode($_GET['id'], ENT_QUOTES | ENT_HTML401));
		$pkgmode = 'installed';
	} else if (!empty($_GET['mode']) && !empty($_GET['pkg'])) {
		$pkgname = str_replace(array("<", ">", ";", "&", "'", '"', '.', '/'), "", htmlspecialchars_decode($_GET['pkg'], ENT_QUOTES | ENT_HTML401));
		$pkgmode = str_replace(array("<", ">", ";", "&", "'", '"', '.', '/'), "", htmlspecialchars_decode($_GET['mode'], ENT_QUOTES | ENT_HTML401));
	} else if ($_GET['mode'] == 'reinstallall') {
		$pkgmode = 'reinstallall';
	}
	switch ($pkgmode) {
	case 'reinstallall':
		$pkgname = 'All packages';
		$pkgtxt = 'reinstalled';
		break;
	case 'reinstallxml':
	case 'reinstallpkg':
		$pkgtxt = 'reinstalled';
		break;
	case 'delete':
		$pkgtxt = 'deleted';
		break;
	default:
		$pkgtxt = $pkgmode;
		break;
	}
?>
Ad Schellevis's avatar
Ad Schellevis committed
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
									<tr>
										<td class="tabcont" align="center">
											<table style="height:15;colspacing:0" width="420" border="0" cellpadding="0" cellspacing="0" summary="images">
												<tr>
													<td class="tabcont" align="center">Package: <b><?=$pkgname;?></b> will be <?=$pkgtxt;?>.<br/>
													Please confirm the action.<br/>
													</td>
													<td class="tabcont" align="center">
														<input type="hidden" name="id" value="<?=$pkgname;?>" />
														<input type="hidden" name="mode" value="<?=$pkgmode;?>" />
														<input type="submit" name="pkgconfirm" id="pkgconfirm" value="Confirm" class="btn btn-primary"/>
														<input type="submit" name="pkgcancel" id="pkgcancel" value="Cancel" class="btn btn-default"/>
													</td>
												</tr>
											</table>
										</td>
									</tr>
					<?php endif; if (!empty($_POST['id']) || $_GET['mode'] == 'showlog' || ($_GET['mode'] == 'installedinfo' && !empty($_GET['pkg']))): ?>
									<tr>
										<td class="tabcont" align="center">
159

Ad Schellevis's avatar
Ad Schellevis committed
160 161 162 163 164
											<div class="progress">
											  <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
											    <span class="sr-only">5% Complete</span>
											  </div>
											</div>
165 166


Ad Schellevis's avatar
Ad Schellevis committed
167 168 169 170 171 172 173 174 175 176 177
											<br />
											<!-- status box -->
											<textarea cols="80" rows="1" name="status" id="status" wrap="hard"><?=gettext("Beginning package installation.");?></textarea>
											<br />
											<!-- command output box -->
											<textarea cols="80" rows="35" name="output" id="output" wrap="hard"></textarea>
										</td>
									</tr>
					<?php endif; ?>
								</table>
		                        </div>
178 179
						</form>
				    </div>
Ad Schellevis's avatar
Ad Schellevis committed
180 181 182
					</div>
			    </section>
			</div>
Ad Schellevis's avatar
Ad Schellevis committed
183
		</div>
Ad Schellevis's avatar
Ad Schellevis committed
184 185
	</section>

Ad Schellevis's avatar
Ad Schellevis committed
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

<?php

ob_flush();

if ($_GET) {
	$pkgname = str_replace(array("<", ">", ";", "&", "'", '"', '.', '/'), "", htmlspecialchars_decode($_GET['pkg'], ENT_QUOTES | ENT_HTML401));
	switch($_GET['mode']) {
	case 'showlog':
		if (strpos($pkgname, ".")) {
			update_output_window(gettext("Something is wrong on the request."));
		} else if (file_exists("/tmp/pkg_mgr_{$pkgname}.log"))
			update_output_window(@file_get_contents("/tmp/pkg_mgr_{$pkgname}.log"));
		else
			update_output_window(gettext("Log was not retrievable."));
		break;
	case 'installedinfo':
		if (file_exists("/tmp/{$pkgname}.info")) {
			$status = @file_get_contents("/tmp/{$pkgname}.info");
			update_status("{$pkgname} " . gettext("installation completed."));
			update_output_window($status);
		} else
			update_output_window(sprintf(gettext("Could not find %s."), $pkgname));
		break;
	default:
		break;
	}
} else if ($_POST) {
	$pkgid = str_replace(array("<", ">", ";", "&", "'", '"', '.', '/'), "", htmlspecialchars_decode($_POST['id'], ENT_QUOTES | ENT_HTML401));

	/* All other cases make changes, so mount rw fs */
	conf_mount_rw();
	/* Write out configuration to create a backup prior to pkg install. */
	write_config(gettext("Creating restore point before package installation."));

	switch ($_POST['mode']) {
		case 'delete':
			uninstall_package($pkgid);
			update_status(gettext("Package deleted."));
			$static_output .= "\n" . gettext("Package deleted.");
			update_output_window($static_output);
			filter_configure();
			break;
		case 'reinstallxml':
			pkg_fetch_config_file($pkgid);
			pkg_fetch_additional_files($pkgid);
		case 'reinstallpkg':
			delete_package_xml($pkgid);
			if (install_package($pkgid) < 0) {
				update_status(gettext("Package reinstallation failed."));
				$static_output .= "\n" . gettext("Package reinstallation failed.");
				update_output_window($static_output);
			} else {
				update_status(gettext("Package reinstalled."));
				$static_output .= "\n" . gettext("Package reinstalled.");
				update_output_window($static_output);
				filter_configure();
			}
			@file_put_contents("/tmp/{$pkgid}.info", $static_output);
			$pkgid = htmlspecialchars($pkgid);
			echo "<script type='text/javascript'>document.location=\"pkg_mgr_install.php?mode=installedinfo&pkg={$pkgid}\";</script>";
			break;
		case 'reinstallall':
			if (is_array($config['installedpackages']) && is_array($config['installedpackages']['package'])) {
				$todo = array();
				foreach($config['installedpackages']['package'] as $package)
					$todo[] = array('name' => $package['name'], 'version' => $package['version']);
				foreach($todo as $pkgtodo) {
					$static_output = "";
					if($pkgtodo['name']) {
						update_output_window($static_output);
						uninstall_package($pkgtodo['name']);
						install_package($pkgtodo['name']);
					}
				}
				update_status(gettext("All packages reinstalled."));
				$static_output .= "\n" . gettext("All packages reinstalled.");
				update_output_window($static_output);
				filter_configure();
			} else
				update_output_window(gettext("No packages are installed."));
			break;
		case 'installed':
		default:
			$status = install_package($pkgid);
			if($status == -1) {
				update_status(gettext("Installation of") . " {$pkgid} " . gettext("FAILED!"));
				$static_output .= "\n" . gettext("Installation halted.");
				update_output_window($static_output);
			} else {
				$status_a = gettext(sprintf("Installation of %s completed.", $pkgid));
				update_status($status_a);
				$status = get_after_install_info($pkgid);
279
				if($status)
Ad Schellevis's avatar
Ad Schellevis committed
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
					$static_output .= "\n" . gettext("Installation completed.") . "\n{$pkgid} " . gettext("setup instructions") . ":\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.");

				@file_put_contents("/tmp/{$pkgid}.info", $static_output);
				echo "<script type='text/javascript'>document.location=\"pkg_mgr_install.php?mode=installedinfo&pkg={$pkgid}\";</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);

	/* Restore to read only fs */
	conf_mount_ro();
}
?>

Ad Schellevis's avatar
Ad Schellevis committed
304

305
<?php include("foot.inc"); ?>