Moved the Agents into their own repo. Kept the agent.pl just for reference

This commit is contained in:
Frank Harris 2025-09-11 13:27:32 -04:00
parent 22381be29a
commit 8680a02b13
18132 changed files with 0 additions and 2569420 deletions

View file

@ -1,48 +0,0 @@
<?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 exec_ogp_module()
{
global $db;
global $view;
print "<h2>".get_lang_f('installing_module',$_REQUEST['module'])."</h2>";
require_once('modules/modulemanager/module_handling.php');
$install_retval = -99;
if ( isset($_REQUEST['module']) )
$install_retval = install_module($db, $_REQUEST['module']);
if ( $install_retval > 0 )
print_success(get_lang_f("successfully_installed_module",$_REQUEST['module']));
else if ( $install_retval == 0 )
print_success(get_lang_f("module_already_installed",$_REQUEST['module']));
else
print_failure(get_lang_f("failed_to_install_module",$_REQUEST['module']));
$view->refresh("?m=modulemanager");
}
?>

View file

@ -1,42 +0,0 @@
<?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 exec_ogp_module()
{
global $db;
global $view;
print "<h2>".get_lang_f('uninstalling_module',$_REQUEST['module'])."</h2>";
require_once('modules/modulemanager/module_handling.php');
if ( isset($_REQUEST['id']) && isset($_REQUEST['module']) &&
uninstall_module($db, $_REQUEST['id'], $_REQUEST['module']) === TRUE )
print_success(get_lang_f("successfully_uninstalled_module",$_REQUEST['module']));
else
print_failure(get_lang_f("failed_to_uninstall_module",$_REQUEST['module']));
$view->refresh("?m=modulemanager");
}
?>

View file

@ -1,34 +0,0 @@
<?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.
*
*/
// Module general information
$module_title = "Module manager";
$module_version = "1.0";
$db_version = 0;
$module_required = TRUE;
$module_menus = array(
array( 'subpage' => '', 'name'=>'Modules', 'group'=>'admin' )
);
?>

View file

@ -1,239 +0,0 @@
<?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 list_available_modules()
{
return makefilelist("modules/", ".|..|.svn", true, "folders");
}
/// \return -2 Error while handling db queries after installation.
/// \return -1 In case of error.
/// \return 0 If module already installed.
/// \return 1 If module installation was successfull.
/// \return 2 If module installation was optional and module was not installed.
function install_module($db, $module, $install_if_optional = TRUE)
{
// each module must have module.php file which contains the required variables.
/// \todo We might want to turn this to XML file.
if ( !is_file("modules/".$module."/module.php") )
{
print_failure("modules/".$module." ".get_lang("module_file_missing")."");
return -1;
}
include("modules/".$module."/module.php");
// Check that required fields exist.
if ( !isset($module_title,$module_version) )
{
print_failure("modules/".$module."/module.php ".get_lang("module_file_missing_info")."");
return -1;
}
if ( $db->isModuleInstalled($module) )
return 0;
// Prerequisites checking
if(isset($module_prereqs) && is_array($module_prereqs) && count($module_prereqs)){
$prereqPass = true;
$missingPrereqs = "";
$i = 0;
foreach($module_prereqs as $prereq){
if(!preReqInstalled($prereq)){
if($i == 0){
$missingPrereqs .= $prereq["name"];
}else{
$missingPrereqs .= ", " . $prereq["name"];
}
$prereqPass = false;
}
$i++;
}
if(!$prereqPass){
print_failure(get_lang_f("prereqs_missing", $missingPrereqs, $module_title));
return -2;
}
}
// Check if the module should be installed or not.
if ( $install_if_optional == FALSE && $module_required == FALSE )
return 2;
echo "<p>".get_lang_f('adding_module',$module_title)."</p>";
$module_id = $db->addModule($module_title, $module, $module_version, $db_version);
if ( isset( $install_queries ) )
{
foreach ( $install_queries as $key_db_version => $querys )
{
foreach ( $querys as $query )
{
if ( $db->query($query) )
continue;
print_failure("".get_lang("query_failed")." (".$query.") ".get_lang("query_failed_2")." ERROR: ".$db->getError()."");
return -2;
}
}
}
if ( isset($module_menus) && is_array($module_menus) )
{
foreach( $module_menus as $menu )
{
$db->addModuleMenu($module_id,$menu['subpage'],$menu['group'],$menu['name']);
}
}
$db->clearModuleAccessRights($module_id);
if(isset($module_access_rights) and is_array($module_access_rights) and !empty($module_access_rights))
{
foreach($module_access_rights as $flag => $description)
{
$db->setModuleAccessRight($module_id, $flag, $description);
}
}
return 1;
}
function uninstall_module($db, $module_id, $module, $adminOverride = false)
{
// Don't allow users to uninstall core IMPORTANT MODULES
if(!isCoreModule($module) || $adminOverride === true){
if ( !is_file("modules/".$module."/module.php") )
{
print_failure("modules/".$module." ".get_lang("module_file_missing")."");
return FALSE;
}
if ( $db->delModule($module_id) === FALSE )
{
print_failure(get_lang("failed_del_db"));
return FALSE;
}
include("modules/".$module."/module.php");
$db->clearModuleAccessRights($module_id);
if ( isset( $uninstall_queries ) )
{
foreach ( $uninstall_queries as $query )
{
if ( !$db->query($query) )
{
print_failure("".get_lang("query_failed")." (".$query.") ".get_lang("query_failed_2")." ERROR: ".$db->getError()."");
return FALSE;
}
}
}
return TRUE;
}
return false;
}
function update_module($db, $module_id, $module)
{
if ( !is_file("modules/".$module."/module.php") )
{
print_failure("modules/".$module." ".get_lang("module_file_missing")."");
return FALSE;
}
include("modules/".$module."/module.php");
$module_info = $db->getModule($module_id);
if ( $module_info['version'] != $module_version)
{
if(method_exists($db, "getModuleMenu")){ // Added this check for successful updates
// Get position of module so that users don't need to reorder them after updating
$currentModuleMenuInfo = $db->getModuleMenu($module_id);
if($currentModuleMenuInfo !== false && is_array($currentModuleMenuInfo)){
$pos = $currentModuleMenuInfo["pos"];
if(!isset($pos) || empty($pos)){
$pos = 0;
}
}else{
$pos = 0;
}
}else{
$pos = 0;
}
// Debug
// echo "<p>Module position is " . $pos . " for module " . $currentModuleMenuInfo["menu_name"] . " with ID of " . $module_id . "</p>";
$db->delModuleMenu($module_id);
if ( isset($module_menus) && is_array($module_menus) )
{
foreach( $module_menus as $menu )
{
$db->addModuleMenu($module_id,$menu['subpage'],$menu['group'],$menu['name'],$pos);
}
}
}
if ( $module_info['db_version'] < $db_version)
{
$i = $module_info['db_version'];
while ($i < $db_version)
{
if(isset($install_queries))
{
foreach ( $install_queries[$i+1] as $query )
{
if ( $db->query($query) )
continue;
print_failure("".get_lang("query_failed")." (".$query.") ".get_lang("query_failed_2")." ERROR: ".$db->getError()."");
return -2;
}
}
++$i;
}
}
if(method_exists($db, "clearModuleAccessRights")){
$db->clearModuleAccessRights($module_id);
}
if(isset($module_access_rights) and is_array($module_access_rights) and !empty($module_access_rights))
{
foreach($module_access_rights as $flag => $description)
{
if(method_exists($db, "setModuleAccessRight")){
$db->setModuleAccessRight($module_id, $flag, $description);
}
}
}
$db->updateModule($module_id, $module_version, $db_version);
echo "<p>".get_lang_f('updated_module',$module_title)." - ".$module_info['db_version'] ." to ". $db_version."</p>";
}
?>

View file

@ -1,113 +0,0 @@
<?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 exec_ogp_module()
{
global $db;
print "<h2>".get_lang('modules')."</h2>";
print '<a href="?m=modulemanager&amp;p=update">'.get_lang('update_modules').'</a>';
$modules = $db->getInstalledModules();
if ( $modules === FALSE )
{
print_failure(get_lang('no_installed_modules'));
return;
}
print "<p class='note'>".get_lang("not_complete")."</p>";
$coreHTML = "<h3>" . get_lang("core_mods_installed") . "</h3>"; // Core Modules Installed:
$nonCoreHTML = "<h3>" . get_lang("custom_mods_installed") . "</h3>"; // Custom Modules Installed:
$coreHTML .= "<table class='center'><tr class='first_row'><td>".get_lang('module_id')."</td>
<td>".get_lang('module_name')."</td><td>".get_lang('module_folder')."</td>
<td>".get_lang('module_version')."</td><td>".get_lang('db_version')."</td>
<td></td></tr>";
$nonCoreHTML .= "<table class='center'><tr class='first_row'><td>".get_lang('module_id')."</td>
<td>".get_lang('module_name')."</td><td>".get_lang('module_folder')."</td>
<td>".get_lang('module_version')."</td><td>".get_lang('db_version')."</td>
<td></td></tr>";
require_once('modules/modulemanager/module_handling.php');
$installed_modules = array();
$i = 0;
foreach ( $modules as $row )
{
$html = "";
$coreModule = true;
$html .= "<tr class='tr".($i++%2)."'><td>".$row['id']."</td>";
$html .= "<td>".$row['title']."</td><td>".$row['folder']."</td><td>".$row['version']."</td><td>".$row['db_version']."</td>";
$html .= "<td>";
// Don't allow the deletion of core modules
if(!isCoreModule($row['folder'])){
$html .= "<a href='?m=modulemanager&amp;p=del&amp;id=".$row['id']."&amp;module=".$row['folder']."'>";
$html .= get_lang('uninstall');
$html .= "</a>";
$coreModule = false;
}
$html .= "</td>";
$html .= "</tr>\n";
// Append HTML to correct table
if($coreModule){
$coreHTML .= $html;
}else{
$nonCoreHTML .= $html;
}
array_push( $installed_modules, $row['folder'] );
}
// End the table
$coreHTML .= "</table>";
$nonCoreHTML .= "</table>";
// Print out installed modules tables
echo $coreHTML . "\n";
echo $nonCoreHTML . "\n";
// Show available custom addons available for install
$not_installed = array_diff( list_available_modules(), $installed_modules );
if ( empty($not_installed) )
return;
print "<h3>".get_lang('modules_available_for_install')."</h3>";
echo "<table class='center'><tr class='first_row'><td>".get_lang('module_folder')."</td><td></td></tr>";
foreach ( $not_installed as $available_module )
{
echo "<tr><td>".$available_module."</td><td>";
echo "<a href='?m=modulemanager&amp;p=add&amp;module=".$available_module."'>";
echo get_lang('install')."</a></td></tr>";
}
echo "</table>";
}
?>

View file

@ -1,6 +0,0 @@
<navigation>
<page key="add" file="add_module.php" access="admin" />
<page key="del" file="delete_module.php" access="admin" />
<page key="update" file="update_modules.php" access="admin" />
<page key="default" file="modulemanager.php" access="admin" />
</navigation>

View file

@ -1,38 +0,0 @@
<?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 exec_ogp_module()
{
global $db;
global $view;
print "<h2>".get_lang_f('updating_modules')."</h2>";
updateAllPanelModules();
print "<p>".get_lang_f('updating_finished')."</p>";
$view->refresh("?m=modulemanager",30);
}
?>