返利添加游戏

master
ELF 3 years ago
parent 3b225f57a9
commit 0a3027796f

@ -1,39 +1,32 @@
<?php <?php
namespace Base\Service; namespace Base\Service;
use Base\Tool\GameResource\SbcqClient;
use Base\Tool\GameResource\XyyClient;
use Exception;
use GuzzleHttp\Client; use GuzzleHttp\Client;
class GameRebateService class GameRebateService
{ {
const SIGN_KEY = 'Eza65532qaOIAAWasdq962aqweasd';
private function getClient()
{
return new Client([
'base_uri' => 'http://rebate.99you.cn/xyy_apply.php/23400/',
'timeout' => 10.0,
]);
}
public function sendByOrder($order) public function sendByOrder($order)
{ {
$gift = M('rebate_gifts', 'tab_')->where(['type' => $order['type'], 'gift_key' => $order['gift_key']])->find(); $gift = M('rebate_gifts', 'tab_')->where(['type' => $order['type'], 'gift_key' => $order['gift_key']])->find();
$hasError = false; $hasError = false;
$sendResult = ''; $sendResult = '';
if ($gift['game_currency'] > 0) { if ($gift['game_currency'] > 0) {
$result = $this->sendCurrency($order['server_id'], $order['role_id'], $gift['game_currency']); $result = $this->sendGold($order, $gift['game_currency']);
if ($result['code'] != 1) { if ($result['status']) {
$hasError = true; $hasError = true;
} }
$sendResult .= ($result['msg'] ?? ''); $sendResult .= ($result['message'] ?? '') . ';';
$sendResult .= ';';
} }
if ($gift['gift_id'] > 0) { $giftItems = json_decode($gift['gifts'], true);
$result = $this->sendGift($order['server_id'], $order['role_id'], $gift['gift_id']); foreach ($giftItems as $giftItem) {
if ($result['code'] != 1) { $result = $this->sendGift($order, $giftItem);
if ($result['status']) {
$hasError = true; $hasError = true;
} }
$sendResult .= ($result['msg'] ?? ''); $sendResult .= ($result['message'] ?? '') . ';';
} }
M('rebate_orders', 'tab_')->where(['id' => $order['id']])->save([ M('rebate_orders', 'tab_')->where(['id' => $order['id']])->save([
'send_status' => $hasError ? 2 : 1, 'send_status' => $hasError ? 2 : 1,
@ -42,47 +35,33 @@ class GameRebateService
]); ]);
} }
public function sendCurrency($serverId, $roleId, $currency) private function getClient($baseGameId)
{ {
$sign = md5($currency.$serverId.$roleId.self::SIGN_KEY); $client = null;
$params = [ switch ($baseGameId) {
'act' => 'sendgold', case 70:
'serverid' => $serverId, $client = new XyyClient();
'role_id' => $roleId, break;
'money' => $currency, case 73:
'sign' => $sign $client = new SbcqClient();
]; break;
return $this->get('', $params); default:
throw new \Exception('客户端未实现');
break;
}
return $client;
} }
public function sendGift($serverId, $roleId, $giftId) public function sendGold($order, $gold)
{ {
$sign = md5($giftId.$serverId.$roleId.self::SIGN_KEY); $client = $this->getClient($order['base_game_id']);
$params = [ return $client->sendGold($gold, $order);
'act' => 'send_email',
'serverid' => $serverId,
'role_id' => $roleId,
'prop_id' => $giftId,
'sign' => $sign
];
return $this->get('', $params);
} }
protected function get($uri, array $params = []) public function sendGift($order, $giftItem)
{ {
try { $client = $this->getClient($order['base_game_id']);
$response = $this->getClient()->get($uri, [ return $client->sendEmail($giftItem, $order);
'verify' => false,
'query' => $params,
]);
$result = (string)$response->getBody();
return json_decode($result, true);
} catch (\Exception $e) {
return [
'code' => 3,
'msg' => '网络异常:' . $e->getMessage(),
];
}
} }
public function review(array $ids, $status) public function review(array $ids, $status)

@ -0,0 +1,162 @@
<?php
namespace Base\Tool\GameResource;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
/**
* 双倍传奇-测试资源接口
*/
class SbcqClient
{
const SIGN_NAME = 'sign';
const SUCCESS = '0000';
const KEY = 'wan';
protected $client;
private $apis = [
'send-gold' => ['uri' => '/sendgold', 'method' => 'get'],
'send-email' => ['uri' => '/sendemail', 'method' => 'get'],
];
public function __construct()
{
$this->client = new Client([
'base_uri' => 'http://api.tlcq.90wqiji.com/wan/game',
'timeout' => 10.0,
]);
}
public function api($api, array $params = [])
{
$api = $this->apis[$api] ?? null;
if (is_null($api)) {
throw new \Exception('接口不存在');
}
$params[self::SIGN_NAME] = $this->sign($params);
try {
return $this->request($api, $params);
} catch (\Exception $e) {
$env = C('APP_ENV', null, 'prod');
return ['status' => 'error', 'msg' => '接口请求错误。' . ($env == 'prod' ? '' : $e->getMessage()) , 'data' => []];
}
}
public function request($api, $params)
{
if ($api['method'] == 'get') {
return $this->get($api['uri'], $params);
} else {
return $this->post($api['uri'], $params);
}
}
protected function post($uri, array $params = [])
{
$response = $this->client->post($uri, [
'verify' => false,
'form_params' => $params,
]);
$result = (string)$response->getBody();
return json_decode($result, true);
}
protected function get($uri, array $params = [])
{
$response = $this->client->get($uri, [
'verify' => false,
'query' => $params,
]);
$result = (string)$response->getBody();
return json_decode($result, true);
}
protected function sign($params)
{
return md5($params['account'] . $params['num'] . $params['serverid'] . self::KEY);
}
public function sendEmail($giftItem, $order)
{
$data = [
'account' => $order['user_account'],
'serverid' => $order['server_id'],
'num' => $giftItem['num'],
'name' => $giftItem['id'],
'role' => $order['role_name'],
'content' => '',
];
$result = $this->api('send-email', $data);
return $this->getCommonResult($result);
}
public function sendGold($gold, $order)
{
$data = [
'account' => $order['user_account'],
'serverid' => $order['server_id'],
'num' => $gold,
'role' => $order['role_name'],
];
$result = $this->api('send-gold', $data);
return $this->getCommonResult($result);
}
private function getCommonResult($result)
{
if ($result['status'] == 'success') {
return [
'status' => true,
'message' => $result['msg'],
'result' => $result
];
} else {
return [
'status' => false,
'message' => $result['msg'],
'result' => $result
];
}
}
/**
* @todo 暂时没有测试资源
*/
public function apply($order, $role)
{
return $this->sendGold($order['ref_amount'], $role);
}
public function getResourceTypes($deviceType)
{
if ($deviceType == 'andriod') {
return [['id' => 1, 'name' => '通用', 'device_type' => 'andriod']];
} elseif ($deviceType == 'ios') {
return [['id' => 2, 'name' => '通用', 'device_type' => 'ios']];
}
}
public function getResources($typeId, $deviceType)
{
return [
1 => ['ref_id' => 1, 'name' => '60元宝', 'amount' => 6],
2 => ['ref_id' => 2, 'name' => '300元宝', 'amount' => 30],
3 => ['ref_id' => 3, 'name' => '980元宝', 'amount' => 98],
4 => ['ref_id' => 4, 'name' => '1280元宝', 'amount' => 128],
5 => ['ref_id' => 5, 'name' => '1980元宝', 'amount' => 198],
6 => ['ref_id' => 6, 'name' => '3280元宝', 'amount' => 328],
7 => ['ref_id' => 7, 'name' => '6480元宝', 'amount' => 648],
8 => ['ref_id' => 8, 'name' => '10000元宝', 'amount' => 1000],
9 => ['ref_id' => 9, 'name' => '20000元宝', 'amount' => 2000],
10 => ['ref_id' => 10, 'name' => '30000元宝', 'amount' => 3000],
11 => ['ref_id' => 11, 'name' => '50000元宝', 'amount' => 5000],
12 => ['ref_id' => 12, 'name' => '100000元宝', 'amount' => 10000],
13 => ['ref_id' => 13, 'name' => '200000元宝', 'amount' => 20000],
];
}
}

@ -13,18 +13,20 @@ class XyyClient
const SIGN_NAME = 'sign'; const SIGN_NAME = 'sign';
const SUCCESS = '0000'; const SUCCESS = '0000';
const KEY = 'Eza65532qaOIAAWasdq962aqweasd'; const SIGN_KEY = 'Eza65532qaOIAAWasdq962aqweasd';
protected $client; protected $client;
private $apis = [ private $apis = [
'provide' => ['uri' => '/', 'method' => 'get'], 'sendgold' => ['uri' => '', 'method' => 'get'],
'send_email' => ['uri' => '', 'method' => 'get'],
'self_apply_foster' => ['uri' => '', 'method' => 'get'],
]; ];
public function __construct() public function __construct()
{ {
$this->client = new Client([ $this->client = new Client([
'base_uri' => 'http://rebate.99you.cn/wdzx_apply.php/23399', 'base_uri' => 'http://rebate.99you.cn/xyy_apply.php/23400/',
'timeout' => 10.0, 'timeout' => 10.0,
]); ]);
} }
@ -35,7 +37,7 @@ class XyyClient
if (is_null($api)) { if (is_null($api)) {
throw new \Exception('接口不存在'); throw new \Exception('接口不存在');
} }
$params[self::SIGN_NAME] = $this->sign($params); $params[self::SIGN_NAME] = $this->sign($api, $params);
try { try {
return $this->request($api, $params); return $this->request($api, $params);
} catch (\Exception $e) { } catch (\Exception $e) {
@ -73,22 +75,45 @@ class XyyClient
return json_decode($result, true); return json_decode($result, true);
} }
protected function sign($params) protected function sign($api, $params)
{ {
return md5($params['orderid'] . $params['serverid'] . $params['role_id'] . self::KEY); if ($api == 'send-email') {
return md5($params['prop_id'].$params['serverid'].$params['role_id'].self::SIGN_KEY);
} elseif ($api == 'send-gold') {
return md5($params['money'].$params['serverid'].$params['role_id'].self::SIGN_KEY);
} else {
return '';
}
} }
public function apply($order, $role) public function sendEmail($giftItem, $order)
{
$data = [
'act' => 'send_email',
'serverid' => $order['server_id'],
'role_id' => $order['role_id'],
'prop_id' => $giftItem['id'],
];
$result = $this->api('send-email', $data);
return $this->getCommonResult($result);
}
public function sendGold($gold, $order)
{ {
$data = [ $data = [
'role_id' => $role['role_id'], 'act' => 'sendgold',
'serverid' => $role['server_id'], 'serverid' => $order['server_id'],
'amount' => $order['ref_amount'], 'role_id' => $order['role_id'],
// 'money' => intval($order['ref_amount']) * 10, 'money' => $gold,
'orderid' => $order['order_no'],
]; ];
$result = $this->api('provide', $data); $result = $this->api('send-gold', $data);
return $this->getCommonResult($result);
}
private function getCommonResult($result)
{
if ($result['code'] == 1) { if ($result['code'] == 1) {
return [ return [
'status' => true, 'status' => true,
@ -104,6 +129,14 @@ class XyyClient
} }
} }
/**
* @todo 暂时没有测试资源
*/
public function apply($order, $role)
{
return $this->sendGold($order['ref_amount'], $role);
}
public function getResourceTypes($deviceType) public function getResourceTypes($deviceType)
{ {
if ($deviceType == 'andriod') { if ($deviceType == 'andriod') {

Loading…
Cancel
Save