You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
422 lines
17 KiB
PHP
422 lines
17 KiB
PHP
<?php
|
|
namespace Admin\Controller;
|
|
|
|
/**
|
|
* 游戏流水聚合接口
|
|
* @author chenzhi
|
|
*/
|
|
class SpendCountSetController extends \Think\Controller
|
|
{
|
|
public $beginThismonth;
|
|
public $endThismonth;
|
|
public $date;
|
|
public $nowdata;
|
|
public $model;
|
|
public $continue=false;//单元测试,开启后可访问独立函数测试
|
|
public function _initialize(){
|
|
//初始化
|
|
$this->beginThismonth = mktime(0,0,0,date('m')-1,1,date('Y'));
|
|
$this->endThismonth = mktime(0,0,0,date('m')-1,date('t'),date('Y'))-1;
|
|
$this->date = date('Y')."-".((date('m')-1) > 9 ? (date('m')-1) : "0".(date('m')-1));
|
|
$this->nowdata =time();
|
|
$this->model =M("spend_count",'tab_');
|
|
}
|
|
/**
|
|
* 初始化统计/用于之前数据的聚合
|
|
*/
|
|
public function initCount()
|
|
{
|
|
$countRes = M("spend_count","tab_")->field("count(*) date_count")->find()['date_count'];
|
|
if($countRes > 0){
|
|
die("init error");
|
|
}
|
|
$nowdate = date('Y')."-".(date('m') > 9 ? date('m') : "0".date('m'));
|
|
// $nowdate = "2017-10";
|
|
//获取所有的月份 pay_time
|
|
$res = M("spend",'tab_')->field("FROM_UNIXTIME(pay_time,'%Y-%m') AS pay_time")->buildSql();
|
|
$res = M()->table($res.' a')->group('pay_time')->select();
|
|
//执行数据统计
|
|
for ($i=0; $i < count($res); $i++) {
|
|
# code...
|
|
if($res[$i]['pay_time'] != $nowdate){
|
|
$month = $res[$i]['pay_time'];
|
|
$this->date = $month;
|
|
$tarry = explode('-',$month);
|
|
$this->beginThismonth=mktime(0,0,0,$tarry[1],1,$tarry[0]);
|
|
$this->endThismonth=mktime(0,0,0,$tarry[1]-0+1,1,$tarry[0])-1;
|
|
//执行
|
|
$this->model->startTrans();
|
|
$this->continue =true;
|
|
$this->getCashData();
|
|
$this->getBalanceData();
|
|
$this->getBingData();
|
|
$this->getInsideData();
|
|
$this->setRoot();
|
|
//执行用户表统计
|
|
$this->setUserCount();
|
|
|
|
$this->model->commit();
|
|
}
|
|
}
|
|
die("success");
|
|
|
|
}
|
|
/**
|
|
* 每个月的统计接口
|
|
*/
|
|
public function setSpendCount()
|
|
{
|
|
//判断是否已经聚合
|
|
$countRes = M("spend_count","tab_")->field("count(*) date_count")->where("count_date = '{$this->date}'")->find()['date_count'];
|
|
if($countRes > 0){
|
|
die("Repeated statistics");
|
|
}
|
|
$this->model->startTrans();
|
|
$this->continue =true;
|
|
$this->getCashData();
|
|
$this->getBalanceData();
|
|
$this->getBingData();
|
|
$this->getInsideData();
|
|
$this->setRoot();
|
|
//执行用户表统计
|
|
$this->setUserCount();
|
|
|
|
$this->model->commit();
|
|
die("success");
|
|
}
|
|
//获取游戏现金流水
|
|
public function getCashData()
|
|
{
|
|
if(!$this->continue){
|
|
die("api error");
|
|
}
|
|
$map = array(
|
|
"pay_time"=> array('BETWEEN',array($this->beginThismonth, $this->endThismonth)),
|
|
"spend.pay_status"=>1,
|
|
"pay_way"=>array("GT",0)
|
|
);
|
|
$field = "IFNULL(game.partner_id,0) partner_id,partner.partner partner_name,
|
|
spend.promote_id,spend.promote_account,spend.game_id,spend.game_name,
|
|
IFNULL(promote.parent_id,0) parent_id,promote.parent_name,sum(pay_amount) cash_count,
|
|
'{$this->date}' as count_date,'{$this->nowdata}' as create_time";
|
|
//获取现金
|
|
$cashRes = M()
|
|
->table("tab_spend spend")
|
|
->field($field)
|
|
->where($map)
|
|
->join("tab_promote promote ON spend.promote_id = promote.id","left")
|
|
->join("tab_game game ON spend.game_id = game.id","left")
|
|
->join("tab_partner partner ON partner.id = game.partner_id","left")
|
|
->group('spend.promote_id,spend.game_id')
|
|
->select();
|
|
if(!empty($cashRes)){
|
|
$dbres = $this->model->addAll($cashRes);
|
|
if(!$dbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}
|
|
# code...
|
|
}
|
|
//获取平台币聚合
|
|
public function getBalanceData()
|
|
{
|
|
if(!$this->continue){
|
|
die("api error");
|
|
}
|
|
$map = array(
|
|
"pay_time"=> array('BETWEEN',array($this->beginThismonth, $this->endThismonth)),
|
|
"spend.pay_status"=>1,
|
|
"pay_way"=> array("LT",1)
|
|
);
|
|
$field = "IFNULL(game.partner_id,0) partner_id,partner.partner partner_name,
|
|
spend.promote_id,spend.promote_account,spend.game_id,spend.game_name,
|
|
IFNULL(promote.parent_id,0) parent_id,promote.parent_name,sum(pay_amount) balance_coin_count,
|
|
'{$this->date}' as count_date,'{$this->nowdata}' as create_time";
|
|
$balanceRes = M()
|
|
->table("tab_spend spend")
|
|
->field($field)
|
|
->where($map)
|
|
->join("tab_promote promote ON spend.promote_id = promote.id","left")
|
|
->join("tab_game game ON spend.game_id = game.id","left")
|
|
->join("tab_partner partner ON partner.id = game.partner_id","left")
|
|
->group('spend.promote_id,spend.game_id')
|
|
->select();
|
|
//集中两个表
|
|
if(!empty($balanceRes)){
|
|
|
|
for ($i=0; $i < count($balanceRes); $i++) {
|
|
# code...
|
|
$tempmap = array(
|
|
"game_id"=>$balanceRes[$i]['game_id'],
|
|
"promote_id"=>$balanceRes[$i]['promote_id'],
|
|
"count_date"=>$this->date
|
|
);
|
|
$dbres = $this->model->where($tempmap)->find();
|
|
if(!$dbres){
|
|
//不存在
|
|
$tempdbres = $this->model->add($balanceRes[$i]);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}else{
|
|
$dbres["balance_coin_count"] = $balanceRes[$i]['balance_coin_count'];
|
|
$tempdbres = $this->model->save($dbres);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
# code...
|
|
}
|
|
//获取绑定币充值
|
|
public function getBingData()
|
|
{
|
|
if(!$this->continue){
|
|
die("api error");
|
|
}
|
|
$bindRes = M()
|
|
->table("tab_bind_recharge bind")
|
|
->field("IFNULL(game.partner_id,0) partner_id,partner.partner partner_name,
|
|
bind.game_id,bind.game_name,bind.promote_id,bind.promote_account,
|
|
IFNULL(promote.parent_id,0) parent_id,promote.parent_name,sum(real_amount) bind_coin_count,
|
|
'{$this->date}' as count_date,'{$this->nowdata}' as create_time")
|
|
->where(array(
|
|
"bind.create_time"=> array('BETWEEN',array($this->beginThismonth, $this->endThismonth)),
|
|
"bind.pay_status"=>1
|
|
))
|
|
->join("tab_promote promote ON bind.promote_id = promote.id","left")
|
|
->join("tab_game game ON bind.game_id = game.id","left")
|
|
->join("tab_partner partner ON partner.id = game.partner_id","left")
|
|
->group('bind.promote_id,bind.game_id')
|
|
->select();
|
|
//聚合表
|
|
if(!empty($bindRes)){
|
|
for ($i=0; $i < count($bindRes); $i++) {
|
|
# code...
|
|
$tempmap = array(
|
|
"game_id"=>$balanceRes[$i]['game_id'],
|
|
"promote_id"=>$balanceRes[$i]['promote_id'],
|
|
"count_date"=>$this->date
|
|
);
|
|
$dbres = $this->model->where($tempmap)->find();
|
|
if(!$dbres){
|
|
//不存在
|
|
$tempdbres =$this->model->add($bindRes[$i]);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}else{
|
|
$dbres["bind_coin_count"] = $bindRes[$i]['bind_coin_count'];
|
|
$tempdbres = $this->model->save($dbres);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//获取内充流水
|
|
public function getInsideData()
|
|
{
|
|
if(!$this->continue){
|
|
die("api error");
|
|
}
|
|
$insideRes = M()
|
|
->table("tab_deposit deposit")
|
|
->field("promote_id,promote_account,IFNULL(promote.parent_id,0) parent_id,parent_name,sum(pay_amount) inside_cash_count,'{$this->date}' as count_date,'{$this->nowdata}' as create_time")
|
|
->where(array(
|
|
"deposit.create_time"=> array('BETWEEN',array($this->beginThismonth, $this->endThismonth)),
|
|
"pay_status"=>1
|
|
))
|
|
->join("tab_promote promote ON deposit.promote_id = promote.id","left")
|
|
->group('promote_id')
|
|
->select();
|
|
//聚合表
|
|
if(!empty($insideRes)){
|
|
for ($i=0; $i < count($insideRes); $i++) {
|
|
# code...
|
|
$tempmap = array(
|
|
"promote_id"=>$insideRes[$i]['promote_id'],
|
|
"count_date"=>$this->date
|
|
);
|
|
$dbres = $this->model->where($tempmap)->find();
|
|
if(!$dbres){
|
|
//不存在
|
|
$tempdbres = $this->model->add($insideRes[$i]);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}else{
|
|
$savedata = array("inside_cash_count"=>$insideRes[$i]['inside_cash_count']);
|
|
$tempdbres = $this->model->where($tempmap)->save($savedata);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("error");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// return true;
|
|
}
|
|
public function setRoot()
|
|
{
|
|
if(!$this->continue){
|
|
die("api error");
|
|
}
|
|
$map = array(
|
|
"parent_id"=>array("GT",0),
|
|
"count_date"=>$this->date
|
|
);
|
|
$user = $this->model->field("parent_id,promote_id")->where($map)->group("promote_id")->select();
|
|
$Promote=M("promote","tab_");
|
|
for ($i=0; $i < count($user); $i++) {
|
|
# code...
|
|
$map['id']=$user[$i]['parent_id'];
|
|
$root=$Promote->field('IFNULL(parent_id,0) root_id,parent_name root_name')->where($map)->find();
|
|
if(!$root){
|
|
$root['root_id']=0;
|
|
$root['root_name']='官方渠道';
|
|
}
|
|
//保存
|
|
$where = array(
|
|
"promote_id"=>$user[$i]['promote_id'],
|
|
"count_date"=>$this->date
|
|
);
|
|
$tempdbres = $this->model->where($where)->save($root);
|
|
if(!$tempdbres){
|
|
$this->model->rollback();
|
|
die("setRoot error");
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* 获取角色聚合
|
|
*/
|
|
public function setUserCount()
|
|
{
|
|
//获取会长信息
|
|
$this->getRootUser();
|
|
$this->getParentUser();
|
|
$this->getPromoteUser();
|
|
|
|
}
|
|
/** --------以下为辅助函数--------- **/
|
|
//获取会长信息
|
|
public function getRootUser()
|
|
{
|
|
//获取所有数据
|
|
$month = $this->date;
|
|
$from = "
|
|
(
|
|
SELECT root_id,root_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,inside_cash_count FROM tab_spend_count WHERE root_id > 0 and count_date='{$month}' group by root_id
|
|
UNION
|
|
SELECT promote_id,promote_account,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,inside_cash_count FROM tab_spend_count WHERE parent_id = 0 and count_date='{$month}' group by promote_id
|
|
UNION
|
|
SELECT parent_id,parent_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,inside_cash_count FROM tab_spend_count WHERE parent_id > 0 and root_id = 0 and count_date='{$month}' group by parent_id
|
|
)
|
|
";
|
|
$subQueryAll = M()->table($from." a")
|
|
->field('root_id,root_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count')
|
|
->group("a.root_id")
|
|
->having("cash_count > 0 or balance_coin_count > 0 or inside_cash_count > 0")
|
|
->select();
|
|
for ($i=0; $i<count($subQueryAll); $i++) {
|
|
$adddata = array(
|
|
"promote_id"=>$subQueryAll[$i]['root_id'],
|
|
"promote_account"=>$subQueryAll[$i]['root_name'],
|
|
"parent_id"=>0,
|
|
"parent_name"=>'官方渠道',
|
|
"root_id"=>0,
|
|
"root_name"=>'官方渠道',
|
|
"cash_count"=>$subQueryAll[$i]['cash_count'],
|
|
"balance_coin_count"=>$subQueryAll[$i]['balance_coin_count'],
|
|
"inside_cash_count"=>$subQueryAll[$i]['inside_cash_count'],
|
|
"all_count"=>$subQueryAll[$i]['cash_count']-0+$subQueryAll[$i]['balance_coin_count']-0+$subQueryAll[$i]['inside_cash_count'],
|
|
"count_date"=>$this->date,
|
|
"create_time"=>$this->nowdata
|
|
);
|
|
M("spend_user_count","tab_")->add($adddata);
|
|
}
|
|
}
|
|
//获取组长信息
|
|
public function getParentUser()
|
|
{
|
|
$month =$this->date;
|
|
//获取数据
|
|
$from = "
|
|
(
|
|
SELECT parent_id,parent_name,root_id,root_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,inside_cash_count FROM tab_spend_count WHERE root_id > 0 and count_date='{$month}' group by parent_id
|
|
UNION
|
|
SELECT promote_id,promote_account,parent_id,parent_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,inside_cash_count FROM tab_spend_count WHERE parent_id >0 and root_id = 0 and count_date='{$month}' group by promote_id
|
|
)
|
|
";
|
|
$subQueryAll = M()->table($from." a")
|
|
->field('parent_id,parent_name,root_id,root_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,sum(inside_cash_count) inside_cash_count')
|
|
// ->limit(1)
|
|
->group("a.parent_id")
|
|
->having("cash_count > 0 or balance_coin_count > 0 or inside_cash_count > 0")
|
|
->select();
|
|
for ($i=0; $i<count($subQueryAll); $i++) {
|
|
$adddata = array(
|
|
"promote_id"=>$subQueryAll[$i]['parent_id'],
|
|
"promote_account"=>$subQueryAll[$i]['parent_name'],
|
|
"parent_id"=>$subQueryAll[$i]['root_id'],
|
|
"parent_name"=>$subQueryAll[$i]['root_name'],
|
|
"root_id"=>0,
|
|
"root_name"=>'官方渠道',
|
|
"cash_count"=>$subQueryAll[$i]['cash_count'],
|
|
"balance_coin_count"=>$subQueryAll[$i]['balance_coin_count'],
|
|
"inside_cash_count"=>$subQueryAll[$i]['inside_cash_count'],
|
|
"all_count"=>$subQueryAll[$i]['cash_count']-0+$subQueryAll[$i]['balance_coin_count']-0+$subQueryAll[$i]['inside_cash_count'],
|
|
"count_date"=>$this->date,
|
|
"create_time"=>$this->nowdata
|
|
);
|
|
M("spend_user_count","tab_")->add($adddata);
|
|
}
|
|
# code...
|
|
}
|
|
//获取组员
|
|
public function getPromoteUser()
|
|
{
|
|
$month = $this->date;;
|
|
//获取数据
|
|
$from = "
|
|
(
|
|
SELECT promote_id,promote_account,parent_id,parent_name,root_id,root_name,sum(cash_count) cash_count,sum(balance_coin_count) balance_coin_count,inside_cash_count FROM tab_spend_count WHERE parent_id > 0 and root_id > 0 and count_date='{$month}' group by promote_id
|
|
)
|
|
";
|
|
$subQueryAll = M()->table($from." a")
|
|
->field('*')
|
|
// ->limit(1)
|
|
->group("a.promote_id")
|
|
->having("cash_count > 0 or balance_coin_count > 0 or inside_cash_count > 0")
|
|
->select();
|
|
for ($i=0; $i<count($subQueryAll); $i++) {
|
|
$adddata = array(
|
|
"promote_id"=>$subQueryAll[$i]['promote_id'],
|
|
"promote_account"=>$subQueryAll[$i]['promote_account'],
|
|
"parent_id"=>$subQueryAll[$i]['parent_id'],
|
|
"parent_name"=>$subQueryAll[$i]['parent_name'],
|
|
"root_id"=>$subQueryAll[$i]['root_id'],
|
|
"root_name"=>$subQueryAll[$i]['root_name'],
|
|
"cash_count"=>$subQueryAll[$i]['cash_count'],
|
|
"balance_coin_count"=>$subQueryAll[$i]['balance_coin_count'],
|
|
"inside_cash_count"=>$subQueryAll[$i]['inside_cash_count'],
|
|
"all_count"=>$subQueryAll[$i]['cash_count']-0+$subQueryAll[$i]['balance_coin_count']-0+$subQueryAll[$i]['inside_cash_count'],
|
|
"count_date"=>$this->date,
|
|
"create_time"=>$this->nowdata
|
|
);
|
|
M("spend_user_count","tab_")->add($adddata);
|
|
}
|
|
# code...
|
|
}
|
|
|
|
}
|