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.
223 lines
7.3 KiB
PHP
223 lines
7.3 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Administrator
|
|
* Date: 2016/12/19
|
|
* Time: 13:38
|
|
*/
|
|
|
|
namespace Admin\Controller;
|
|
|
|
use Admin\Model\PromoteModel;
|
|
|
|
class AjaxController extends ThinkController{
|
|
|
|
/**
|
|
* 获取配置项
|
|
* @param $category
|
|
*/
|
|
public function getConfigCategory($category){
|
|
switch ($category){
|
|
case 1:$result = C('PC_CONFIG_GROUP_LIST');break;
|
|
case 2:$result = C('CHANNEL_CONFIG_GROUP_LIST');break;
|
|
case 3:$result = C('APP_CONFIG_GROUP_LIST');break;
|
|
case 5:$result = C('WAP_CONFIG_GROUP_LIST');break;
|
|
case 6:$result = C('BA_CONFIG_GROUP_LIST');break;
|
|
default:$result = C('CONFIG_GROUP_LIST');
|
|
}
|
|
|
|
$this->AjaxReturn($result);
|
|
}
|
|
|
|
/**
|
|
* 获取区服列表
|
|
* @param $game_id
|
|
*/
|
|
public function getServer($game_id=""){
|
|
$map = [];
|
|
if (!empty($game_id)) {
|
|
$map['game_id'] = $game_id;
|
|
}
|
|
$data = M('server','tab_')->where($map)->select();
|
|
$this->AjaxReturn($data);
|
|
}
|
|
|
|
/**
|
|
*获取充值游戏区服
|
|
* @param game_id
|
|
*/
|
|
public function getSpendServer($game_id="",$type=1, $game_type='', $game_name=''){
|
|
if($type==2){
|
|
$game = M('Game','tab_')->field('id')->where(['game_name'=>$game_id])->find();
|
|
$game_id = $game['id'];
|
|
}
|
|
$map['game_id'] = $game_id;
|
|
$map['server_name'] = array('neq','');
|
|
$data = M('Spend','tab_')->field('server_name')->where($map)->group('server_name')->select();
|
|
$this->AjaxReturn($data);
|
|
}
|
|
|
|
/**
|
|
* 获取用户注册区服
|
|
*/
|
|
|
|
public function getUserServer($game_id="",$type=1){
|
|
if($type==2){
|
|
$game = M('Game','tab_')->field('id')->where(['game_name'=>$game_id])->find();
|
|
$game_id = $game['id'];
|
|
}
|
|
$map['game_id'] = $game_id;
|
|
$map['server_name'] = array('neq','');
|
|
$data = M('UserPlayInfo','tab_')->field('server_name')->where($map)->group('server_name')->select();
|
|
$this->AjaxReturn($data);
|
|
}
|
|
|
|
public function getGmeServer($game_name="", $sdk_version="")
|
|
{
|
|
$game_map = [];
|
|
if ($game_name) {
|
|
$game_map['relation_game_name'] = $game_name;
|
|
}else {
|
|
$this->AjaxReturn([]);
|
|
}
|
|
if ($sdk_version) {
|
|
$map['server_version'] = $game_map['sdk_version'] = $sdk_version;
|
|
}else {
|
|
$this->AjaxReturn([]);
|
|
}
|
|
$game = M("Game", 'tab_')->where($game_map)->getField('id', true);
|
|
|
|
// 获取版本信息
|
|
$map = [];
|
|
if ($game) {
|
|
$map['game_id'] = ['in', $game];
|
|
}
|
|
$data = M('Server', 'tab_')->field('id, server_name, server_id')->where($map)->group('server_name')->select();
|
|
$this->AjaxReturn($data);
|
|
}
|
|
|
|
public function getGameVersion($game_name="")
|
|
{
|
|
if ($game_name) {
|
|
$map['relation_game_name'] = $game_name;
|
|
}else {
|
|
$this->AjaxReturn([]);
|
|
}
|
|
$data = M('Game','tab_')->field('sdk_version')->where($map)->select();
|
|
$this->AjaxReturn($data);
|
|
}
|
|
|
|
/**
|
|
* 获取游戏折扣
|
|
* @param $game_id
|
|
*/
|
|
public function getGameDiscount($game_id){
|
|
$data = M('Game','tab_')->find($game_id);
|
|
$res['discount'] = $data['discount'];
|
|
$this->AjaxReturn($res);
|
|
}
|
|
|
|
public function getUserPlayGameName($user_id=0){
|
|
$map['user_account'] = $user_id;
|
|
$data = M("UserPlay","tab_")->field("game_id,game_name,bind_balance")->where($map)->group('user_id,game_id')->select();
|
|
$this->AjaxReturn($data);
|
|
}
|
|
|
|
/**
|
|
*修改游戏字段
|
|
* @param int game_id
|
|
* @param string $fields 要修改的字段名称
|
|
* @param string $value 要修改的字段的值
|
|
* @author 小纯洁
|
|
*/
|
|
public function setGameDataField($game_id=0,$fields='',$value=''){
|
|
$map['id'] = $game_id;
|
|
$result = M('Game','tab_')->where($map)->setField($fields,$value);
|
|
if($result !== false){
|
|
if($fields != "game_status"){
|
|
$game = M('Game','tab_')->where($map)->find();
|
|
$map1['relation_game_name'] = $game['relation_game_name'];
|
|
M('Game','tab_')->where($map1)->setField($fields,$value);
|
|
}
|
|
$data = array('status' =>1 ,'data'=>$result );
|
|
$this->AjaxReturn($data);
|
|
}else{
|
|
$data = array('status' =>0 ,'data'=>$result );
|
|
$this->AjaxReturn($data);
|
|
}
|
|
}
|
|
|
|
/**
|
|
*获取推广员申请通过的游戏
|
|
*/
|
|
public function getPromoteApplyGame($promote_id = 0){
|
|
if($promote_id == 0){
|
|
$return_msg = array('status'=>0,'info'=>'请选择推广员');
|
|
$this->AjaxReturn($return_msg);
|
|
}
|
|
$fields = "tab_game.id,tab_game.game_name,discount,tab_apply.promote_id,tab_apply.promote_account";
|
|
$data = D('Apply')->getPromoteGame($promote_id,$fields);
|
|
if(empty($data)){
|
|
$return_msg = array('status'=>0,'info'=>'该推广员没有已审核的游戏');
|
|
$this->AjaxReturn($return_msg);
|
|
} else{
|
|
$return_msg = array('status'=>1,'info'=>'成功','data'=>$data);
|
|
$this->AjaxReturn($return_msg);
|
|
}
|
|
}
|
|
|
|
public function getPromotersByLevel()
|
|
{
|
|
$level = I('level');
|
|
if (!$level) {
|
|
return $this->ajaxReturn(['code'=>1, 'msg'=>'获取成功', 'data'=>[]]);
|
|
}
|
|
$this->ajaxReturn(['code'=>1, 'msg'=>'获取成功', 'data'=>(new PromoteModel)->getPromotersByLevel($level)]);
|
|
}
|
|
|
|
public function getPromotersByLevelOther()
|
|
{
|
|
$level = I('level');
|
|
if (!$level) {
|
|
return $this->ajaxReturn(['code'=>1, 'msg'=>'获取成功', 'data'=>[]]);
|
|
}
|
|
$this->ajaxReturn(['code'=>1, 'msg'=>'获取成功', 'data'=>(new PromoteModel)->getPromotersByLevelOther($level)]);
|
|
}
|
|
|
|
public function getGameList($type=0, $sdk_type=0)
|
|
{
|
|
$game = M("game","tab_");
|
|
|
|
if(MODULE_NAME == 'Admin') {
|
|
$map['game_status'] = array('in','0,1');
|
|
} else {
|
|
$map['game_status'] = 1;
|
|
}
|
|
|
|
if(!empty($type)){
|
|
/*$map['developers'] = $type == 1? array('EQ',0):array('GT',0);*/
|
|
/* $map['game_status'] = $type == 1? 1:array('in','0,1'); */
|
|
switch($type) {
|
|
case 1:
|
|
$map['developers'] = array('EQ',0);
|
|
break;
|
|
case 2:
|
|
$map['developers'] = array('EGT',0);
|
|
break;
|
|
default:
|
|
$map['developers'] = array('GT',0);
|
|
}
|
|
}else{
|
|
$map['apply_status'] = 1;
|
|
$map['online_status'] = 1;
|
|
|
|
}
|
|
if (empty($sdk_type)) {
|
|
$lists = $game->field('id,game_name,sdk_version,relation_game_name,icon,relation_game_id,game_status,display_site,dow_num')->where($map)->group('relation_game_name')->order("id asc")->select();
|
|
} else {
|
|
$map['sdk_version'] = $sdk_type;
|
|
$lists = $game->field('id,game_name,sdk_version,relation_game_name,icon,relation_game_id,game_status,display_site,dow_num')->where($map)->order("id asc")->select();
|
|
}
|
|
$this->ajaxReturn(['code'=>1, 'msg'=>'获取成功', 'data'=>$lists]);
|
|
}
|
|
} |