| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?php
- include 'jl.php';
- if ($_POST) {
- /*
- "1" => array (
- "user" =>"admin",
- "pswd" =>"admin",
- "zoneid"=>1,
- "srv_name"=>"game.dev.1",
- "name"=>"内网1区",
- "url"=>"http://127.0.0.1:39081",
- "hidde"=>false
- )
-
- */
- $quid = trim(poststr('qu'));
- $qu = $quarr[$quid];
- $uid = trim(poststr('username'));
- $url = $qu['url'];
- $srv_name = $qu['srv_name'];
- $adm_user = $qu['user'];
- $adm_pswd = $qu['pswd'];
-
- $cookie = loginGetCookie($url,$adm_user,$adm_pswd);
-
-
- $pwd = trim(poststr('pwd'));
-
-
- //参数处理
-
-
-
- $time = time();
-
- //参数处理
-
-
- if ($quid >= 1) {
- if ($uid != '') {
- if ($_POST['type']) {
- $type = trim($_POST['type']);
- switch ($type) {
- case 'mailjl':
-
- $jl = trim(poststr('mailid'));
-
- if ($jl == '') {
- exit('精灵ID错误');
- }
- $find = false;
- $file = fopen("jl.txt", "r");
- while (!feof($file)) {
- $line = fgets($file);
- $txts = explode('|', $line);
- if ($txts[0] == $jl) {
- $find = true;
- }
- }
- fclose($file);
- if ($find == false) {
- exit('精灵ID错误');
- }
- $chargetype = trim(poststr('mailid'));
- $result = sendMail($url,$uid,$cookie,$chargetype,$chargenum,$srv_name);
- echo json_encode(array('info'=>1,'msg'=>'发送成功!'));
- //exit('发送成功!');
-
- break;
-
- case 'daoju':
-
-
-
- if ($viplevel < 1) {
- exit('VIP权限不足');
- }
- $mailid = trim(poststr('item'));
- if ($mailid == '') {
- exit('物品ID错误');
- }
- $find = false;
- $file = fopen("../item.txt", "r");
- while (!feof($file)) {
- $line = fgets($file);
- $txts = explode('|', $line);
- if ($txts[0] == $mailid) {
- $find = true;
- }
- }
- fclose($file);
- if ($find == false) {
- exit('物品ID不存在');
- }
- $mailnum = trim(poststr('num'));
- if ($mailnum == '' || $mailnum < 0 || $mailnum > 9999) {
- exit('发送数量错误');
- }
- //防止f12
- $mailid = trim(poststr('item'));
- if ($mailid == '') {
- exit('物品ID错误');
- }
- $find = false;
- $file = fopen("../xmitem.txt", "r");
- while (!feof($file)) {
- $line = fgets($file);
- $txts = explode(';', $line);
- if ($txts[0] == $mailid) {
- $find = true;
- }
- }
- fclose($file);
- if ($find == false) {
- exit('物品ID不存在');
- }
- $mailnum = trim(poststr('num'));
- if ($mailnum == '' || $mailnum < 0 || $mailnum > 9999) {
- exit('发送数量太大,不允许哦,人家受不鸟啦~!');
- }
- //防止f12
- $item = trim($_POST['item']);
- $itemnum = trim($_POST['num']);
- $title = trim($_POST['title']);
- $content = trim($_POST['content']);
-
-
- sendMail($url,$uid,$cookie,$item,$itemnum,$srv_name,$title,$content);
-
-
- exit('发送成功!');
- break;
- default:
- exit('系统异常,请重试!');
- break;
- }
- } else {
- exit('抓尼玛呢!');
- }
- } else {
- exit('角色名错误');
- }
- } else {
- exit('区号错误');
- }
- } else {
- exit('非法请求!请自重');
- }
|