Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/88949fe0-8891-483a-b5c5-952bc209748d Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
417 lines
15 KiB
PHP
417 lines
15 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
* OGP - Open Game Panel
|
|
* Copyright (C) 2008 - 2018 The OGP Development Team
|
|
*
|
|
* http://www.opengamepanel.org/
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
function do_progress($kbytes,$rsyncPath)
|
|
{
|
|
$mbytes = round($kbytes / 1024, 2);
|
|
|
|
$sizes = file("modules/gamemanager/sizes.list", FILE_IGNORE_NEW_LINES)or print_failure("Can't open sizes.list");
|
|
if (!is_array($sizes)) {
|
|
$sizes = [];
|
|
}
|
|
|
|
# Adds a backslash on each slash so it can be used as patern at preg_match
|
|
$rsyncPath = addcslashes($rsyncPath,"/");
|
|
|
|
# Sets a default file size
|
|
$totalsize = 0;
|
|
|
|
# loops all available sizes to work over a string instead of an array.
|
|
foreach($sizes as $key => $size)
|
|
{
|
|
# If the rsync path matches the path at the string on the variable $size
|
|
# then lists the path and the total size on separated variables
|
|
# using explode over the string saved on $size
|
|
if ( preg_match("/$rsyncPath/i", $size) )
|
|
list( $path, $totalsize ) = explode( ";", $size );
|
|
}
|
|
|
|
if($kbytes > 0)
|
|
{
|
|
$pct = round(( $kbytes / $totalsize ) * 100, 2);
|
|
}
|
|
else
|
|
{
|
|
$pct = "unavailable";
|
|
}
|
|
#echo "Percent is $pct";
|
|
$pct = $pct > 100 ? 100 : $pct;
|
|
return "$totalsize;$mbytes;$pct";
|
|
}
|
|
|
|
function update_local_copies()
|
|
{
|
|
$last_updated = filemtime("modules/gamemanager/sizes.list");
|
|
$nowtime=time();
|
|
$diff = $nowtime - $last_updated;
|
|
|
|
if( $diff < 86400)
|
|
{
|
|
#echo "Now $nowtime last $last_updated diff $diff<br>";
|
|
return 0;
|
|
}
|
|
echo "Updating local cache of rsync meta data files<br>";
|
|
$update_files = array('sizes.list', 'rsync.list', 'rsync_sites.list');
|
|
$update_urls = array('rsync.opengamepanel.org', 'dls.atl.webehostin.com');
|
|
|
|
$context = array(
|
|
'ssl' => array(
|
|
'verify_peer' => false,
|
|
'verify_peer_name' => false,
|
|
'allow_self_signed' => true
|
|
)
|
|
);
|
|
|
|
foreach($update_files as $file_chk)
|
|
{
|
|
#echo "Trying to update $file_chk<br>";
|
|
foreach($update_urls as $site)
|
|
{
|
|
#echo "Trying $file_chk from $site<br>";
|
|
if(!is_writable("modules/gamemanager/$file_chk"))
|
|
{
|
|
print_failure("modules/gamemanager/$file_chk is not writable...please make it writable by the webserver");
|
|
}
|
|
if($tmp_content = file_get_contents("http://$site/sync_data/$file_chk", false, $context))
|
|
{
|
|
if(!file_put_contents("modules/gamemanager/$file_chk",$tmp_content)){echo "Failed to write<br>";};
|
|
break;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
if(is_writable('modules/gamemanager'))
|
|
{
|
|
$tmp = 'modules/gamemanager';
|
|
}
|
|
elseif(is_writable('/tmp'))
|
|
{
|
|
$tmp = 'modules/gamemanager';
|
|
}
|
|
else
|
|
{
|
|
return "-1";
|
|
}
|
|
}
|
|
|
|
require_once("includes/lib_remote.php");
|
|
require_once("modules/config_games/server_config_parser.php");
|
|
function exec_ogp_module() {
|
|
//update_local_copies(); #Disabled until the rsync_sites.list file from master servers is corrected.
|
|
global $db,$view,$settings;
|
|
|
|
$home_id = isset($_REQUEST['home_id']) ? $_REQUEST['home_id'] : "";
|
|
$mod_id = isset($_REQUEST['mod_id']) ? $_REQUEST['mod_id'] : "";
|
|
$state = isset($_POST['state']) ? $_POST['state'] : "";
|
|
$update = isset($_GET['update']) ? $_GET['update'] : "";
|
|
|
|
$rsync_remote_sites = file("modules/gamemanager/rsync_sites.list"); #load offical rsync sites
|
|
$rsync_local_sites = file("modules/gamemanager/rsync_sites_local.list"); #load user custom sites
|
|
$settings['rsync_available'] = isset($settings['rsync_available']) ? $settings['rsync_available'] : "1";
|
|
|
|
if(is_array($rsync_local_sites) && $settings['rsync_available'] == "1") {
|
|
$rsync_sites = array_merge($rsync_remote_sites, $rsync_local_sites);
|
|
} elseif($settings['rsync_available'] == "2") {
|
|
$rsync_sites = $rsync_remote_sites;
|
|
} elseif( $settings['rsync_available'] == "3") {
|
|
$rsync_sites = $rsync_local_sites;
|
|
}
|
|
|
|
$isAdmin = $db->isAdmin($_SESSION['user_id']);
|
|
|
|
if ($isAdmin) {
|
|
$home_info = $db->getGameHome($home_id);
|
|
} else {
|
|
$home_info = $db->getUserGameHome($_SESSION['user_id'],$home_id);
|
|
}
|
|
|
|
if ( $home_info === FALSE || preg_match("/u/",$home_info['access_rights']) != 1 )
|
|
{
|
|
print_failure( get_lang("no_rights") );
|
|
echo create_back_button("gamemanager","game_monitor");
|
|
return;
|
|
}
|
|
|
|
$home_id = $home_info['home_id'];
|
|
|
|
$remote = new OGPRemoteLibrary($home_info['agent_ip'],$home_info['agent_port'],$home_info['encryption_key'],$home_info['timeout']);
|
|
$server_xml = read_server_config(SERVER_CONFIG_LOCATION."/".$home_info['home_cfg_file']);
|
|
|
|
if( isset($server_xml->lgsl_query_name) )
|
|
{
|
|
$lgslname = $server_xml->lgsl_query_name;
|
|
if($lgslname == "quake3")
|
|
{
|
|
if($server_xml->game_name == "Quake 3")
|
|
$lgslname = "q3";
|
|
}
|
|
}
|
|
elseif( isset($server_xml->gameq_query_name) )
|
|
{
|
|
$lgslname = $server_xml->gameq_query_name;
|
|
if($lgslname == "minecraft")
|
|
{
|
|
if($server_xml->game_name == "Bukkit")
|
|
$lgslname = "bukkit";
|
|
elseif($server_xml->game_name == "Tekkit")
|
|
$lgslname = "tekkit";
|
|
}
|
|
}
|
|
elseif( isset($server_xml->protocol) )
|
|
$lgslname = $server_xml->protocol;
|
|
else
|
|
$lgslname = $server_xml->mods->mod['key'];
|
|
|
|
//SKIP ABOVE AND JUST SET RS_GNAME TO GAME xml NAME
|
|
$rs_gname = $server_xml->game_key;
|
|
|
|
if( preg_match("/win32/", $server_xml->game_key) OR preg_match("/win64/", $server_xml->game_key) )
|
|
$os = "windows";
|
|
elseif( preg_match("/linux/", $server_xml->game_key) )
|
|
$os = "linux";
|
|
|
|
echo "<h2>Update $home_info[home_name]</h2>";
|
|
|
|
if ( $remote->is_screen_running(OGP_SCREEN_TYPE_HOME,$home_id) == 1 )
|
|
{
|
|
print_failure( get_lang("server_running_cant_update") );
|
|
return;
|
|
}
|
|
$update_active = $remote->get_log(OGP_SCREEN_TYPE_UPDATE,
|
|
// Note exec location should not be added here as the log is in root where rsync is executed.
|
|
$home_id,clean_path($home_info['home_path']),
|
|
$log_txt,30);
|
|
if ($update_active === 0)
|
|
{
|
|
print_failure( get_lang("agent_offline") );
|
|
$view->refresh("{CURRENT_PAGE}", 5);
|
|
return;
|
|
}
|
|
// Start update.
|
|
elseif ($state == 'start' && $update_active != 1)
|
|
{
|
|
$precmd = $home_info['mods'][$mod_id]['precmd'] == "" ?
|
|
( $home_info['mods'][$mod_id]['def_precmd'] == "" ? $server_xml->pre_install :
|
|
$home_info['mods'][$mod_id]['def_precmd'] ) : $home_info['mods'][$mod_id]['precmd'];
|
|
|
|
$postcmd = $home_info['mods'][$mod_id]['postcmd'] == "" ?
|
|
( $home_info['mods'][$mod_id]['def_postcmd'] == "" ? $server_xml->post_install :
|
|
$home_info['mods'][$mod_id]['def_precmd'] ) : $home_info['mods'][$mod_id]['postcmd'];
|
|
|
|
$exec_folder_path = clean_path($home_info['home_path'] . "/" . $server_xml->exe_location );
|
|
$exec_path = clean_path($exec_folder_path . "/" . $server_xml->server_exec_name );
|
|
|
|
if( isset( $_REQUEST['master_server_home_id'] ) )
|
|
{
|
|
$ms_home_id = $_REQUEST['master_server_home_id'];
|
|
|
|
if ($db->getMasterServer($home_info['remote_server_id'], $home_info['home_cfg_id']) == $ms_home_id) {
|
|
if ($ms_home_id !== $home_id) {
|
|
$ms_info = $db->getGameHome($ms_home_id);
|
|
print_success(get_lang_f("starting_copy_with_master_server_named",htmlentities($ms_info['home_name'])));
|
|
$rsync = $remote->masterServerUpdate( $home_id,$home_info['home_path'],$ms_home_id,$ms_info['home_path'],$exec_folder_path,$exec_path,$precmd,$postcmd );
|
|
|
|
$master = "&master=true";
|
|
} else {
|
|
print_failure(get_lang('cannot_update_from_own_self'));
|
|
$view->refresh('?m=gamemanager&p=game_monitor', 2);
|
|
|
|
return;
|
|
}
|
|
} else {
|
|
$db->logger(get_lang_f('update_attempt_from_nonmaster_server', $_SESSION['users_login'], $home_id, $ms_home_id));
|
|
print_failure(get_lang('attempting_nonmaster_update'));
|
|
$view->refresh('?m=gamemanager&p=game_monitor', 2);
|
|
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$url_id = (isset($_POST['url_id']) && (int)$_POST['url_id'] > 0 ? (int)$_POST['url_id'] -1 : null);
|
|
if (!is_null($url_id) && array_key_exists($url_id, $rsync_sites)) {
|
|
$urlArr = explode('|', $rsync_sites[$url_id]);
|
|
$url = $urlArr[0] . "/rsync_installer/$rs_gname/$os/";
|
|
} else {
|
|
print_failure(get_lang('unknown_rsync_mirror'));
|
|
$view->refresh('?m=gamemanager&p=game_monitor');
|
|
return;
|
|
}
|
|
|
|
print_success(get_lang_f("starting_sync_with", $url));
|
|
|
|
// Additional files to lock
|
|
if(isset($server_xml->lock_files) && !empty($server_xml->lock_files)){
|
|
$lockFiles = trim($server_xml->lock_files);
|
|
}else{
|
|
$lockFiles = "";
|
|
}
|
|
|
|
$rsync = $remote->start_rsync_install($home_id, $home_info['home_path'], $url, $exec_folder_path, $exec_path, $precmd, $postcmd, $lockFiles);
|
|
$master = "";
|
|
}
|
|
if( $rsync === 0 )
|
|
{
|
|
print_failure( get_lang("failed_to_start_rsync_update") );
|
|
return;
|
|
}
|
|
else if ( $rsync === 1 )
|
|
{
|
|
print_success(get_lang("update_started"));
|
|
echo "<p><a href=\"?m=gamemanager&p=rsync_install&update=refresh&home_id=$home_id&mod_id=$mod_id$master\">".
|
|
get_lang("refresh_rsync_status") ."</a></p>";
|
|
$view->refresh("?m=gamemanager&p=rsync_install&update=refresh&home_id=$home_id&mod_id=$mod_id$master",5);
|
|
return;
|
|
}
|
|
elseif( $rsync === 0 )
|
|
{
|
|
print_failure( get_lang("agent_offline") );
|
|
return;
|
|
}
|
|
}
|
|
elseif($update_active == 1)
|
|
{
|
|
echo "<p class='note'></p>\n";
|
|
if ( isset( $_POST['stop_update_x'] ) )
|
|
{
|
|
$remote->stop_update($home_id);
|
|
print_success("Update stopped.");
|
|
$view->refresh("?m=gamemanager&p=rsync_install&update=refresh&home_id=$home_id&mod_id=$mod_id", 2);
|
|
return;
|
|
}
|
|
$update_complete = false;
|
|
echo "<form method=POST><input type='image' name='stop_update' onsubmit='submit-form();' src='modules/administration/images/remove.gif'>". get_lang("stop_update") ."</input></form>";
|
|
if (empty($log_txt))
|
|
$log_txt = not_available;
|
|
if(!isset($_GET['master']))
|
|
{
|
|
$kbytes = $remote->rsync_progress($home_info['home_path']);
|
|
list($totalsize,$mbytes,$pct) = explode(";",do_progress($kbytes,$rs_gname."/".$os));
|
|
$totalmbytes = round($totalsize / 1024, 2);
|
|
echo '<div class="dragbox bloc rounded" style="background-color:#dce9f2;" >
|
|
<h4>'. get_lang("update_in_progress") ." ${mbytes}MB/${totalmbytes}MB</h4>
|
|
<div style='background-color:#dce9f2;' >
|
|
";
|
|
$bar = '';
|
|
for( $i = 1; $i <= $pct; $i++ )
|
|
{
|
|
$bar .= '<img style="width:0.92%;vertical-align:middle;" src="images/progressBar.png">';
|
|
}
|
|
echo "$bar <b style='vertical-align:top;display:inline;font-size:1.2em;color:red;' >$pct%</b>
|
|
</div>
|
|
</div><br>";
|
|
}
|
|
else
|
|
{
|
|
echo '<h4>'. get_lang("update_in_progress") .'</h4>';
|
|
}
|
|
|
|
echo "<pre>".$log_txt."</pre>\n".
|
|
"<p><a href=\"?m=gamemanager&p=rsync_install&update=refresh&home_id=$home_id&mod_id=$mod_id\">".
|
|
get_lang("refresh_rsync_status") ."</a></p>";
|
|
$view->refresh("?m=gamemanager&p=rsync_install&update=refresh&home_id=$home_id&mod_id=$mod_id",5);
|
|
return;
|
|
|
|
}
|
|
elseif($update != "update")
|
|
{
|
|
$view->refresh("{CURRENT_PAGE}", 60);
|
|
print_success(get_lang("update_completed") );
|
|
echo "<table class='center'><tr><td><a href='?m=gamemanager&p=game_monitor&home_id=".$home_info['home_id']."'><< ". get_lang("back") ."</a></td></tr></table>";
|
|
echo "<pre>".$log_txt."</pre>\n";
|
|
echo "<table class='center'><tr><td><a href='?m=gamemanager&p=game_monitor&home_id=".$home_info['home_id']."'><< ". get_lang("back") ."</a></td></tr></table>";
|
|
$update_complete = true;
|
|
}
|
|
else
|
|
{
|
|
#echo "LGSL or GameQ query name is $server_xml->lgsl_query_name$server_xml->gameq_query_name";
|
|
$sync_list = @file("modules/gamemanager/rsync.list", FILE_IGNORE_NEW_LINES);
|
|
|
|
if(!is_array($sync_list))
|
|
{
|
|
if(!is_file("modules/gamemanager/rsync.list"))
|
|
{
|
|
print_failure("Trouble accessing http://www.opengamepanel.org/rsync.list<br>".
|
|
"Make sure allow_fopen_url is set to \"On\" in your php.ini and opengamepanel.org is online<br>".
|
|
"In the mean time, you can get a local copy of the file by running wget http://www.opengamepanel.org/sync_data/rsync.list -O /path/to/ogpweb/modules/gamemanager/rsync.list");
|
|
return;
|
|
}
|
|
# print_failure("Error loading rsync.list");
|
|
# return;
|
|
$sync_list = @file("modules/gamemanager/rsync.list", FILE_IGNORE_NEW_LINES);
|
|
if(!is_array($sync_list))
|
|
{
|
|
print_failure("Failed to open local copy of rsync.list in modules/gamemanager/rsync.list");
|
|
return;
|
|
}
|
|
}
|
|
$master_server_home_id = $db->getMasterServer( $home_info['remote_server_id'], $home_info['home_cfg_id'] );
|
|
if ( is_array($sync_list) && in_array($rs_gname, $sync_list) )
|
|
{
|
|
echo "<form action='?m=gamemanager&p=rsync_install' method='post'>
|
|
<table class='center'>
|
|
<input type='hidden' name='home_id' value='$home_id' />
|
|
<input type='hidden' name='mod_id' value='$mod_id' />
|
|
<input type='hidden' name='lgslname' value='$rs_gname' />
|
|
<input type='hidden' name='state' value='start' />
|
|
<tr><td align='right'>Game name:</td><td align='left'>$home_info[game_name]</td></tr>
|
|
<tr><td align='right'>Directory:</td><td align='left'>$home_info[home_path]</td></tr>
|
|
<tr><td align='right'>Remoteserver:</td>
|
|
<td align='left'>$home_info[remote_server_name] ($home_info[agent_ip]:$home_info[agent_port])</td></tr>
|
|
<tr><td align='right'>Rsync Server:</td>
|
|
<td align='left'>".create_drop_box_from_array_rsync($rsync_sites,"url_id")."<br>";
|
|
if( $master_server_home_id != FALSE AND $master_server_home_id != $home_id )
|
|
{
|
|
echo "<input type='checkbox' name='master_server_home_id' value='$master_server_home_id' /><b>". get_lang("update_from_local_master_server") ."</b>";
|
|
}
|
|
echo "</td></tr></table><p><input type='submit' name='update' value='". get_lang("update_from_selected_rsync_server") ."' /></p>
|
|
</form>";
|
|
}
|
|
elseif($master_server_home_id != FALSE AND $master_server_home_id != $home_id)
|
|
{
|
|
$ms_home_info = $db->getGameHome($master_server_home_id);
|
|
echo "<br>
|
|
<p class='success'>Master server update available</p><br>
|
|
<form action='?m=gamemanager&p=rsync_install' method='post'>
|
|
<table class='center'>
|
|
<input type='hidden' name='home_id' value='$home_id' />
|
|
<input type='hidden' name='mod_id' value='$mod_id' />
|
|
<input type='hidden' name='lgslname' value='$rs_gname' />
|
|
<input type='hidden' name='state' value='start' />
|
|
<tr><td align='right'>Game name:</td><td align='left'>$home_info[game_name]</td></tr>
|
|
<tr><td align='right'>Master Server Name:</td><td align='left'>$ms_home_info[home_name]</td></tr>
|
|
<tr><td align='right'>Master Server Directory:</td><td align='left'>$ms_home_info[home_path]</td></tr>
|
|
<tr><td align='right'>Local Directory:</td><td align='left'>$home_info[home_path]</td></tr>".
|
|
"<input type='hidden' name='master_server_home_id' value='$master_server_home_id' />".
|
|
"</td></tr></table><p><input type='submit' name='update' value='". get_lang("update_from_local_master_server") ."' /></p>
|
|
</form>";
|
|
}
|
|
else
|
|
{
|
|
print_failure("This game type [ $lgslname ] is not yet supported with rsync install");
|
|
}
|
|
}
|
|
}
|
|
?>
|