set $text

This commit is contained in:
Denny Dai 2015-06-26 14:14:14 +08:00
parent d0391f4a7e
commit 1ab6510772
6 changed files with 8 additions and 7 deletions

View File

@ -16,4 +16,5 @@ if($_GET['from'] != escapePeer(BOT_NAME)){
$BOT->exec("msg ".escapePeer(OWNER_NAME)." ".json_encode($_GET));
}
$text = $_GET['text'];
}

View File

@ -1,5 +1,5 @@
<?php
PluginList("echo", "Echo what you typed.");
if (preg_match("/^".TAG."echo (.*)$/", $_GET['text'], $matches)) {
if (preg_match("/^".TAG."echo (.*)$/", $text, $matches)) {
$BOT->msg($from, $matches[1]);
}

View File

@ -1,6 +1,6 @@
<?php
PluginList("help", "Ask for help");
if (preg_match("/^".TAG."help$/", $_GET['text'])) {
if (preg_match("/^".TAG."help$/", $text)) {
$plugin_list = HELP_BEGIN."\n";
foreach ($plugins as $value) {
$plugin_list .= "\n".$value;

View File

@ -1,6 +1,6 @@
<?php
PluginList("ipto", "Change the form of IP address");
if (preg_match("/^".TAG."ipto (.*)$/", $_GET['text'], $matches)) {
if (preg_match("/^".TAG."ipto (.*)$/", $text, $matches)) {
$arr = explode('.',$matches[1]);
$msg = 'IP: '.$arr[0].'.'.$arr[1].'.'.$arr[2].'.'.$arr[3];
$msg .= "\nint: ".($arr[0] * pow(256,3) + $arr[1] * pow(256,2) + $arr[2] * 256 + $arr[3]);

View File

@ -1,6 +1,6 @@
<?php
PluginList("trans", "translate");
if (preg_match("/^".TAG."trans (.*)$/", $_GET['text'], $matches)) {
if (preg_match("/^".TAG."trans (.*)$/", $text, $matches)) {
$matches = explode(" ", $matches[1], 2);
if (!isset($matches[1])) {
$to = "en";

View File

@ -1,10 +1,10 @@
<?php
PluginList("tts", "Text To Speech");
if (preg_match("/^".TAG."tts (.*)$/", $_GET['text'], $matches)) {
if (preg_match("/^".TAG."tts (.*)$/", $text, $matches)) {
$mp3 = file_get_contents("http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&text=".urlencode($matches[1]));
$file = fopen($_GET['from'].".mp3","w");
$file = fopen($from.".mp3","w");
echo fwrite($file,$mp3);
fclose($file);
$BOT->send_audio($from, "/home/wwwroot/1.vps.dennx.com/".$_GET['from'].".mp3");
$BOT->send_audio($from, "/home/wwwroot/1.vps.dennx.com/".$from.".mp3");
//unlink($matches[1].".mp3");
}