| <?php
|
| include("../includes/common.php");
|
| if($islogin==1){}else exit("<script language='javascript'>window.location.href='./login.php';</script>");
|
| $act=isset($_GET['act'])?daddslashes($_GET['act']):null;
|
|
|
| if(!checkRefererHost())exit('{"code":403}');
|
|
|
| @header('Content-Type: application/json; charset=UTF-8');
|
|
|
| switch($act){
|
| case 'getcount':
|
| $thtime=date("Y-m-d").' 00:00:00';
|
| $count1=$DB->getColumn("SELECT count(*) from pre_order");
|
| $count2=$DB->getColumn("SELECT count(*) from pre_user");
|
| $plugincount=$DB->getColumn("SELECT count(*) from pre_plugin");
|
| if($plugincount<1){
|
| \lib\Plugin::updateAll();
|
| }
|
|
|
| $paytype = [];
|
| $rs = $DB->getAll("SELECT id,name,showname FROM pre_type WHERE status=1");
|
| foreach($rs as $row){
|
| $paytype[$row['id']] = $row['showname'];
|
| }
|
| unset($rs);
|
|
|
| $channel = [];
|
| $rs = $DB->getAll("SELECT id,name FROM pre_channel WHERE status=1");
|
| foreach($rs as $row){
|
| $channel[$row['id']] = $row['name'];
|
| }
|
| unset($rs);
|
|
|
| $tongji_cachetime=getSetting('tongji_cachetime', true);
|
| $tongji_cache = $CACHE->read('tongji');
|
| if($tongji_cachetime+3600>=time() && $tongji_cache && !isset($_GET['getnew'])){
|
| $array = unserialize($tongji_cache);
|
| $result=["code"=>0,"type"=>"cache","paytype"=>$paytype,"channel"=>$channel,"count1"=>$count1,"count2"=>$count2,"usermoney"=>round($array['usermoney'],2),"settlemoney"=>round($array['settlemoney'],2),"order_today"=>$array['order_today'],"order"=>[]];
|
| }else{
|
| $usermoney=$DB->getColumn("SELECT SUM(money) FROM pre_user WHERE money!='0.00'");
|
| $settlemoney=$DB->getColumn("SELECT SUM(money) FROM pre_settle");
|
|
|
| $today=date("Y-m-d");
|
| $rs=$DB->query("SELECT type,channel,money from pre_order where status=1 and date>='$today'");
|
| foreach($paytype as $id=>$type){
|
| $order_paytype[$id]=0;
|
| }
|
| foreach($channel as $id=>$type){
|
| $order_channel[$id]=0;
|
| }
|
| while($row = $rs->fetch())
|
| {
|
| $order_paytype[$row['type']]+=$row['money'];
|
| $order_channel[$row['channel']]+=$row['money'];
|
| }
|
| foreach($order_paytype as $k=>$v){
|
| $order_paytype[$k] = round($v,2);
|
| }
|
| foreach($order_channel as $k=>$v){
|
| $order_channel[$k] = round($v,2);
|
| }
|
| $allmoney=0;
|
| foreach($order_paytype as $order){
|
| $allmoney+=$order;
|
| }
|
| $order_today['all']=round($allmoney,2);
|
| $order_today['paytype']=$order_paytype;
|
| $order_today['channel']=$order_channel;
|
|
|
| saveSetting('tongji_cachetime',time());
|
| $CACHE->save('tongji',serialize(["usermoney"=>$usermoney,"settlemoney"=>$settlemoney,"order_today"=>$order_today]));
|
|
|
| $result=["code"=>0,"type"=>"online","paytype"=>$paytype,"channel"=>$channel,"count1"=>$count1,"count2"=>$count2,"usermoney"=>round($usermoney,2),"settlemoney"=>round($settlemoney,2),"order_today"=>$order_today,"order"=>[]];
|
| }
|
| for($i=1;$i<7;$i++){
|
| $day = date("Ymd", strtotime("-{$i} day"));
|
| if($order_tongji = $CACHE->read('order_'.$day)){
|
| $result["order"][$day] = unserialize($order_tongji);
|
| }else{
|
| break;
|
| }
|
| }
|
| exit(json_encode($result));
|
| break;
|
|
|
| case 'set':
|
| if(isset($_POST['localurl'])){
|
| if(!empty($_POST['localurl']) && (substr($_POST['localurl'],0,4)!='http' || substr($_POST['localurl'],-1)!='/'))exit('{"code":-1,"msg":"回调专用网址格式错误"}');
|
| }
|
| if(isset($_POST['apiurl'])){
|
| if(!empty($_POST['apiurl']) && (substr($_POST['apiurl'],0,4)!='http' || substr($_POST['apiurl'],-1)!='/'))exit('{"code":-1,"msg":"用户对接网址格式错误"}');
|
| }
|
| if(isset($_POST['login_apiurl'])){
|
| if(!empty($_POST['login_apiurl']) && (substr($_POST['login_apiurl'],0,4)!='http' || substr($_POST['login_apiurl'],-1)!='/'))exit('{"code":-1,"msg":"聚合登录API接口地址格式错误"}');
|
| }
|
| foreach($_POST as $k=>$v){
|
| saveSetting($k, $v);
|
| }
|
| $ad=$CACHE->clear();
|
| if($ad)exit('{"code":0,"msg":"succ"}');
|
| else exit('{"code":-1,"msg":"修改设置失败['.$DB->error().']"}');
|
| break;
|
| case 'setGonggao':
|
| $id=intval($_GET['id']);
|
| $status=intval($_GET['status']);
|
| $sql = "UPDATE pre_anounce SET status='$status' WHERE id='$id'";
|
| if($DB->exec($sql))exit('{"code":0,"msg":"修改状态成功!"}');
|
| else exit('{"code":-1,"msg":"修改状态失败['.$DB->error().']"}');
|
| break;
|
| case 'delGonggao':
|
| $id=intval($_GET['id']);
|
| $sql = "DELETE FROM pre_anounce WHERE id='$id'";
|
| if($DB->exec($sql))exit('{"code":0,"msg":"删除公告成功!"}');
|
| else exit('{"code":-1,"msg":"删除公告失败['.$DB->error().']"}');
|
| break;
|
| case 'iptype':
|
| $result = [
|
| ['name'=>'0_X_FORWARDED_FOR', 'ip'=>real_ip(0), 'city'=>get_ip_city(real_ip(0))],
|
| ['name'=>'1_X_REAL_IP', 'ip'=>real_ip(1), 'city'=>get_ip_city(real_ip(1))],
|
| ['name'=>'2_REMOTE_ADDR', 'ip'=>real_ip(2), 'city'=>get_ip_city(real_ip(2))]
|
| ];
|
| exit(json_encode($result));
|
| break;
|
| default:
|
| exit('{"code":-4,"msg":"No Act"}');
|
| break;
|
| } |