* Copyright (c) Jonathan Watt * Copyright (c) 2004-2016 Electric Sheep Fencing, LLC * All rights reserved. * * originally part of m0n0wall (http://m0n0.ch/wall) * Copyright (c) 2003-2004 Manuel Kasper . * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ $nocsrf = true; require_once("guiconfig.inc"); require_once("pfsense-utils.inc"); require_once("functions.inc"); require_once("/usr/local/www/widgets/include/installed_packages.inc"); require_once("pkg-utils.inc"); if ($_REQUEST && $_REQUEST['ajax']) { $package_list = get_pkg_info(); $installed_packages = array_filter($package_list, function($v) { return (isset($v['installed']) || isset($v['broken'])); }); if (empty($installed_packages)) { print_info_box(gettext("No packages installed.") . " " . gettext('Packages can be installed here.'), 'warning', false); exit; } print("\n"); print( "\n"); print( "" . gettext("Name") . "\n"); print( "" . gettext("Category") . "\n"); print( "" . gettext("Version") . "\n"); print( "" . gettext("Actions") . "\n"); print( "\n"); print("\n"); print("\n"); foreach ($installed_packages as $pkg) { if (!$pkg['name']) { continue; } $txtcolor = ""; $upgradeavail = false; $vergetstr = ""; $missing = false; if (isset($pkg['broken'])) { $txtcolor = "text-danger"; $missing = true; $status = gettext('Package is configured, but not installed!'); } else if (isset($pkg['installed_version']) && isset($pkg['version'])) { $version_compare = pkg_version_compare( $pkg['installed_version'], $pkg['version']); if ($version_compare == '>') { // we're running a newer version of the package $status = sprintf(gettext('Newer than available (%s)'), $pkg['version']); $statusicon = 'exclamation'; } else if ($version_compare == '<') { // we're running an older version of the package $status = sprintf(gettext('Upgrade available to %s'), $pkg['version']); $statusicon = 'plus-circle'; $txtcolor = "text-warning"; $upgradeavail = true; $vergetstr = '&from=' . $pkg['installed_version'] . '&to=' . $pkg['version']; } else if ($version_compare == '=') { // we're running the current version $status = gettext('ok'); $statusicon = 'check'; } else { $status = gettext('Error comparing version'); $statusicon = 'exclamation'; } } else { // unknown available package version $status = gettext('Unknown'); $statusicon = 'question'; } print("\n"); print( '' . $pkg['shortname'] . "\n"); print( "" . implode(' ', $pkg['categories']) . "\n"); print( "\n"); print( ' '); if (!$g['disablepackagehistory']) { print(''); } print( htmlspecialchars($pkg['installed_version'])); if (!$g['disablepackagehistory']) { print("\n"); } print( "\n"); print( "\n"); print( ''."\n"); if ($upgradeavail) { print( ''."\n"); } else { print( ''."\n"); } if (!isset($g['disablepackageinfo']) && $pkg['www'] != 'UNKNOWN') { print( ''."\n"); } print( "\n"); print("\n"); } print("\n"); exit; } ?>
 

->