267 lines
8.8 KiB
PHP
267 lines
8.8 KiB
PHP
<?php
|
|
/*
|
|
FusionPBX
|
|
Version: MPL 1.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (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.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
The Initial Developer of the Original Code is
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
*/
|
|
|
|
set_time_limit(600); //sec (10 min)
|
|
|
|
include "root.php";
|
|
require_once "resources/require.php";
|
|
require_once "resources/check_auth.php";
|
|
|
|
//check the permission
|
|
if (
|
|
!permission_exists('upgrade_svn') &&
|
|
!permission_exists('upgrade_schema') &&
|
|
!permission_exists('upgrade_apps') &&
|
|
!permission_exists('menu_restore') &&
|
|
!permission_exists('group_edit')
|
|
) {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
|
|
//add multi-lingual support
|
|
require_once "app_languages.php";
|
|
foreach($text as $key => $value) {
|
|
$text[$key] = $value[$_SESSION['domain']['language']['code']];
|
|
}
|
|
|
|
|
|
if (sizeof($_POST) > 0) {
|
|
|
|
$do = $_POST['do'];
|
|
|
|
// run svn update
|
|
if ($do["svn"] && permission_exists("upgrade_svn") && !is_dir("/usr/share/examples/fusionpbx")) {
|
|
$cmd = "svn up /var/www/fusionpbx";
|
|
exec($cmd, $response_svn_update);
|
|
if (sizeof($response_svn_update) > 0) {
|
|
$_SESSION["response_svn_update"] = $response_svn_update;
|
|
}
|
|
$response_message = $text['message-upgrade_svn'];
|
|
}
|
|
|
|
// load an array of the database schema and compare it with the active database
|
|
if ($do["schema"] && permission_exists("upgrade_schema")) {
|
|
$response_message = $text['message-upgrade_schema'];
|
|
|
|
$upgrade_data_types = check_str($do["data_types"]);
|
|
require_once "resources/classes/schema.php";
|
|
$obj = new schema();
|
|
$_SESSION["schema"]["response"] = $obj->schema("html");
|
|
}
|
|
|
|
// process the apps defaults
|
|
if ($do["apps"] && permission_exists("upgrade_apps")) {
|
|
$response_message = $text['message-upgrade_apps'];
|
|
|
|
require_once "resources/classes/domains.php";
|
|
$domain = new domains;
|
|
$domain->upgrade();
|
|
}
|
|
|
|
// restore defaults of the selected menu
|
|
if ($do["menu"] && permission_exists("menu_restore")) {
|
|
$sel_menu = explode('|', check_str($_POST["sel_menu"]));
|
|
$menu_uuid = $sel_menu[0];
|
|
$menu_language = $sel_menu[1];
|
|
$included = true;
|
|
require_once("core/menu/menu_restore_default.php");
|
|
unset($sel_menu);
|
|
$response_message = $text['message-upgrade_menu'];
|
|
}
|
|
|
|
// restore default permissions
|
|
if ($do["permissions"] && permission_exists("group_edit")) {
|
|
$included = true;
|
|
require_once("core/users/permissions_default.php");
|
|
$response_message = "Permission Defaults Restored";
|
|
}
|
|
|
|
if (sizeof($_POST['do']) > 1) {
|
|
$response_message = $text['message-upgrade'];
|
|
}
|
|
|
|
$_SESSION["message"] = $response_message;
|
|
header("Location: ".PROJECT_PATH."/core/upgrade/index.php");
|
|
exit;
|
|
|
|
} // if
|
|
|
|
|
|
require_once "resources/header.php";
|
|
$document['title'] = $text['title-upgrade'];
|
|
|
|
echo "<br />";
|
|
echo "<b>".$text['header-upgrade']."</b><br>";
|
|
echo $text['description-upgrade'];
|
|
echo "<br><br><br>";
|
|
|
|
echo "<form name='frm' method='post' action=''>\n";
|
|
|
|
if (permission_exists("upgrade_svn") && !is_dir("/usr/share/examples/fusionpbx")) {
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td width='30%' class='vncell'>\n";
|
|
echo " ".$text['label-upgrade_svn'];
|
|
echo " </td>\n";
|
|
echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
|
|
echo " <label for='do_svn'>";
|
|
echo " <input type='checkbox' class='formfld' name='do[svn]' id='do_svn' value='1'>";
|
|
echo " ".$text['description-upgrade_svn'];
|
|
echo " </label>\n";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
}
|
|
|
|
if (permission_exists("upgrade_schema")) {
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td width='30%' class='vncell'>\n";
|
|
echo " ".$text['label-upgrade_schema'];
|
|
echo " </td>\n";
|
|
echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
|
|
echo " <label for='do_schema'>";
|
|
echo " <input type='checkbox' class='formfld' name='do[schema]' id='do_schema' value='1' onchange=\"$('#do_data_types').prop('checked', false); $('#tr_data_types').slideToggle('fast');\">";
|
|
echo " ".$text['description-upgrade_schema'];
|
|
echo " </label>\n";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
|
|
echo "<div id='tr_data_types' style='display: none;'>\n";
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td width='30%' class='vncell'>\n";
|
|
echo " ".$text['label-upgrade_data_types'];
|
|
echo " </td>\n";
|
|
echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
|
|
echo " <label for='do_data_types'>";
|
|
echo " <input type='checkbox' class='formfld' name='do[data_types]' id='do_data_types' value='true'>";
|
|
echo " ".$text['description-upgrade_data_types'];
|
|
echo " </label>\n";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
echo "</div>\n";
|
|
}
|
|
|
|
if (permission_exists("upgrade_apps")) {
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td width='30%' class='vncell'>\n";
|
|
echo " ".$text['label-upgrade_apps'];
|
|
echo " </td>\n";
|
|
echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
|
|
echo " <label for='do_apps'>";
|
|
echo " <input type='checkbox' class='formfld' name='do[apps]' id='do_apps' value='1'>";
|
|
echo " ".$text['description-upgrade_apps'];
|
|
echo " </label>\n";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
}
|
|
|
|
if (permission_exists("menu_restore")) {
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td width='30%' class='vncell'>\n";
|
|
echo " ".$text['label-upgrade_menu'];
|
|
echo " </td>\n";
|
|
echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
|
|
echo " <table cellpadding='0' cellspacing='0' border='0'>";
|
|
echo " <tr><td>";
|
|
echo " <input type='checkbox' class='formfld' name='do[menu]' id='do_menu' value='1' onchange=\"$('#td_sel_menu').fadeToggle('fast');\">";
|
|
echo " </td><td id='td_sel_menu' style='display: none; padding: 0px 3px 0px 8px;'>";
|
|
echo " <select name='sel_menu' id='sel_menu' class='formfld'>\n";
|
|
$sql = "select * from v_menus ";
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
$prep_statement->execute();
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
foreach ($result as &$row) {
|
|
echo "<option value='".$row["menu_uuid"]."|".$row["menu_language"]."'>".$row["menu_name"]."</option>\n";
|
|
}
|
|
unset ($sql, $result, $prep_statement);
|
|
echo " </select>\n";
|
|
echo " </td><td class='vtable' style='border: none; padding: 3px;'><label for='do_menu'>".$text['description-upgrade_menu']."</label></td></tr>";
|
|
echo " </table>";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
}
|
|
|
|
if (permission_exists("group_edit")) {
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td width='30%' class='vncell'>\n";
|
|
echo " ".$text['label-upgrade_permissions'];
|
|
echo " </td>\n";
|
|
echo " <td width='70%' class='vtable' style='height: 50px;'>\n";
|
|
echo " <label for='do_permissions'>";
|
|
echo " <input type='checkbox' class='formfld' name='do[permissions]' id='do_permissions' value='1'>";
|
|
echo " ".$text['description-upgrade_permissions'];
|
|
echo " </label>\n";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
}
|
|
|
|
echo "<table width='100%' border='0' cellpadding='6' cellspacing='0'>\n";
|
|
echo "<tr>\n";
|
|
echo " <td colspan='2' style='text-align: right;'>\n";
|
|
echo " <input type='submit' class='btn' value='".$text['button-upgrade_execute']."'>\n";
|
|
echo " </td>\n";
|
|
echo "</tr>\n";
|
|
echo "</table>\n";
|
|
|
|
echo "</form>\n";
|
|
|
|
|
|
// output result of svn update
|
|
if ($_SESSION["response_svn_update"] != '') {
|
|
echo "<br /><br /><br />";
|
|
echo "<b>".$text['header-svn_update_results']."</b>";
|
|
echo "<br /><br />";
|
|
echo "<pre>";
|
|
echo implode("\n", $_SESSION["response_svn_update"]);
|
|
echo "</pre>";
|
|
echo "<br /><br />";
|
|
unset($_SESSION["response_svn_update"]);
|
|
}
|
|
|
|
|
|
// output result of upgrade schema
|
|
if ($_SESSION["schema"]["response"] != '') {
|
|
echo "<br /><br /><br />";
|
|
echo "<b>".$text['header-upgrade_schema_results']."</b>";
|
|
echo "<br /><br />";
|
|
echo $_SESSION["schema"]["response"];
|
|
unset($_SESSION["schema"]["response"]);
|
|
}
|
|
|
|
require_once "resources/footer.php";
|
|
?>
|