add Usage support & add no argu func support
This commit is contained in:
parent
c464bcf46c
commit
1f47f997ba
@ -2,40 +2,43 @@
|
|||||||
//init
|
//init
|
||||||
$Pre_Type = $_SERVER['QUERY_STRING'];
|
$Pre_Type = $_SERVER['QUERY_STRING'];
|
||||||
require_once('config.php');
|
require_once('config.php');
|
||||||
$plugins = array();
|
|
||||||
|
|
||||||
require(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'Base.php');
|
require(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'Base.php');
|
||||||
require_once(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'init.php');
|
require_once(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'init.php');
|
||||||
|
|
||||||
//load plugins
|
//load plugins
|
||||||
$load_plugins = glob(PATH.'plugins'.DIRECTORY_SEPARATOR.'*.php');
|
$load_plugins = glob(PATH.'plugins'.DIRECTORY_SEPARATOR.'*.php');
|
||||||
foreach ($load_plugins as $key => $value) {
|
|
||||||
if ($value == PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php') {
|
foreach ($TAGs as $TAG) {
|
||||||
unset($load_plugins[$key]);
|
foreach ($load_plugins as $value) {
|
||||||
|
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
||||||
|
eval(file($value)[1]);
|
||||||
|
$plugin_sendto = $from;
|
||||||
|
if (preg_match("/^(".preg_quote($TAG, '/').$plugin_name."|".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.") (.*)$/", $text, $matches)) {
|
||||||
|
$plugin_text = $matches[2];
|
||||||
|
require_once $value;
|
||||||
|
break;
|
||||||
|
}elseif (($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) and ($plugins[$plugin_name]["needArgu"] == false)) {
|
||||||
|
require_once $value;
|
||||||
|
break;
|
||||||
|
}elseif ($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) {
|
||||||
|
if ($plugins[$plugin_name]["usage"]!=null) {
|
||||||
|
$BOT->msg($plugin_sendto, "Usage:\n".$plugins[$plugin_name]["usage"]);
|
||||||
|
}else{
|
||||||
|
$BOT->msg($plugin_sendto, "Missing argument(s)");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (in_array(substr($text, 0, 1),$TAGs)) {
|
|
||||||
$TAG = substr($text, 0, 1);
|
|
||||||
}
|
|
||||||
foreach ($load_plugins as $value) {
|
|
||||||
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
|
||||||
if (preg_match("/^(".preg_quote($TAG, '/').$plugin_name."|".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.") (.*)$/", $text, $matches)) {
|
|
||||||
$plugin_text = $matches[2];
|
|
||||||
$plugin_sendto = $from;
|
|
||||||
require_once $value;
|
|
||||||
break;
|
|
||||||
}elseif ($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) {
|
|
||||||
$plugin_sendto = $from;
|
|
||||||
$BOT->msg($plugin_sendto, "Missing argument(s)");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
require_once PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php';
|
|
||||||
|
|
||||||
//function
|
//function
|
||||||
function PluginSet($desc){
|
function PluginSet($desc,$usage=null,$needArgu=True,$visible=True){
|
||||||
global $plugins,$plugin_name,$TAG;
|
global $plugins,$plugin_name,$TAG;
|
||||||
$plugins[] .= $TAG.$plugin_name." ".$desc;
|
$plugins[$plugin_name]["desc"] = '/'.$plugin_name." ".$desc;
|
||||||
|
$plugins[$plugin_name]["usage"] = $usage;
|
||||||
|
$plugins[$plugin_name]["needArgu"] = $needArgu;
|
||||||
|
$plugins[$plugin_name]["visible"] = $visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
49
VAR_BOT.php
49
VAR_BOT.php
@ -2,40 +2,43 @@
|
|||||||
//init
|
//init
|
||||||
$Pre_Type = substr(substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/')+1), 0, -4);
|
$Pre_Type = substr(substr($_SERVER['PHP_SELF'], strrpos($_SERVER['PHP_SELF'], '/')+1), 0, -4);
|
||||||
require_once('config.php');
|
require_once('config.php');
|
||||||
$plugins = array();
|
|
||||||
|
|
||||||
require(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'Base.php');
|
require(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'Base.php');
|
||||||
require_once(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'init.php');
|
require_once(PATH.'classes'.DIRECTORY_SEPARATOR.TYPE.DIRECTORY_SEPARATOR.'init.php');
|
||||||
|
|
||||||
//load plugins
|
//load plugins
|
||||||
$load_plugins = glob(PATH.'plugins'.DIRECTORY_SEPARATOR.'*.php');
|
$load_plugins = glob(PATH.'plugins'.DIRECTORY_SEPARATOR.'*.php');
|
||||||
foreach ($load_plugins as $key => $value) {
|
|
||||||
if ($value == PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php') {
|
foreach ($TAGs as $TAG) {
|
||||||
unset($load_plugins[$key]);
|
foreach ($load_plugins as $value) {
|
||||||
|
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
||||||
|
eval(file($value)[1]);
|
||||||
|
$plugin_sendto = $from;
|
||||||
|
if (preg_match("/^(".preg_quote($TAG, '/').$plugin_name."|".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.") (.*)$/", $text, $matches)) {
|
||||||
|
$plugin_text = $matches[2];
|
||||||
|
require_once $value;
|
||||||
|
break;
|
||||||
|
}elseif (($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) and ($plugins[$plugin_name]["needArgu"] == false)) {
|
||||||
|
require_once $value;
|
||||||
|
break;
|
||||||
|
}elseif ($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) {
|
||||||
|
if ($plugins[$plugin_name]["usage"]!=null) {
|
||||||
|
$BOT->msg($plugin_sendto, "Usage:\n".$plugins[$plugin_name]["usage"]);
|
||||||
|
}else{
|
||||||
|
$BOT->msg($plugin_sendto, "Missing argument(s)");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (in_array(substr($text, 0, 1),$TAGs)) {
|
|
||||||
$TAG = substr($text, 0, 1);
|
|
||||||
}
|
|
||||||
foreach ($load_plugins as $value) {
|
|
||||||
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
|
||||||
if (preg_match("/^(".preg_quote($TAG, '/').$plugin_name."|".preg_quote($TAG, '/').$plugin_name.preg_quote('@').BOT_NAME.") (.*)$/", $text, $matches)) {
|
|
||||||
$plugin_text = $matches[2];
|
|
||||||
$plugin_sendto = $from;
|
|
||||||
require_once $value;
|
|
||||||
break;
|
|
||||||
}elseif ($TAG.$plugin_name == $text or $TAG.$plugin_name.'@'.BOT_NAME == $text) {
|
|
||||||
$plugin_sendto = $from;
|
|
||||||
$BOT->msg($plugin_sendto, "Missing argument(s)");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
require_once PATH.'plugins'.DIRECTORY_SEPARATOR.'help.php';
|
|
||||||
|
|
||||||
//function
|
//function
|
||||||
function PluginSet($desc){
|
function PluginSet($desc,$usage=null,$needArgu=True,$visible=True){
|
||||||
global $plugins,$plugin_name,$TAG;
|
global $plugins,$plugin_name,$TAG;
|
||||||
$plugins[] .= $TAG.$plugin_name." ".$desc;
|
$plugins[$plugin_name]["desc"] = '/'.$plugin_name." ".$desc;
|
||||||
|
$plugins[$plugin_name]["usage"] = $usage;
|
||||||
|
$plugins[$plugin_name]["needArgu"] = $needArgu;
|
||||||
|
$plugins[$plugin_name]["visible"] = $visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -1,16 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
foreach ($TAGs as $TAG) {
|
PluginSet("Show help",null,false);
|
||||||
if (preg_match("/^(".preg_quote($TAG, '/')."help|".preg_quote($TAG, '/')."help".preg_quote('@').BOT_NAME.")$/", $text)) {
|
$plugin_list = HELP_BEGIN."\n";
|
||||||
foreach ($load_plugins as $value) {
|
foreach ($plugins as $value) {
|
||||||
$plugin_name = substr($value, strlen(PATH.'plugins'.DIRECTORY_SEPARATOR), -4);
|
if ($value['visible'] == True) {
|
||||||
$lines=file($value);
|
$plugin_list .= "\n".$value['desc'];
|
||||||
eval($lines[1]);
|
}
|
||||||
}
|
}
|
||||||
$plugin_list = HELP_BEGIN."\n";
|
$plugin_list .= "\n\n".HELP_END;
|
||||||
foreach ($plugins as $value) {
|
$BOT->msg($from, $plugin_list);
|
||||||
$plugin_list .= "\n".$value;
|
|
||||||
}
|
|
||||||
$plugin_list .= "\n\n".HELP_END;
|
|
||||||
$BOT->msg($from, $plugin_list);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user