74 lines
2.3 KiB
PHP
Executable File
74 lines
2.3 KiB
PHP
Executable File
<?php
|
|
|
|
namespace app\controller\api;
|
|
|
|
use app\common\dao\store\consumption\CommissionDao;
|
|
use app\common\model\store\order\StoreOrder;
|
|
use crmeb\basic\BaseController;
|
|
use think\exception\ValidateException;
|
|
use think\facade\Log;
|
|
|
|
class Open extends BaseController
|
|
{
|
|
|
|
/**
|
|
* 获取活动佣金(供应商平台异步回调)
|
|
* @return mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function activityCommission()
|
|
{
|
|
$decrypted = $this->decrypt();
|
|
Log::error('供销平台佣金回调:' . var_export($decrypted, true));
|
|
$storeConsumptionUserDao = new CommissionDao();
|
|
// "惠农供销,谱写数字新篇章"活动首单分润
|
|
$result = $storeConsumptionUserDao->firstOrderCommissionCallback($decrypted);
|
|
return app('json')->success($result);
|
|
}
|
|
|
|
|
|
/**
|
|
* 供销平台退佣金回调
|
|
* @return mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function refundCommission()
|
|
{
|
|
$decrypted = $this->decrypt();
|
|
Log::error('供销平台退佣金回调:' . var_export($decrypted, true));
|
|
$storeConsumptionUserDao = new CommissionDao();
|
|
$result = $storeConsumptionUserDao->refundByCallback($decrypted);
|
|
return app('json')->success($result);
|
|
}
|
|
|
|
public function orderList()
|
|
{
|
|
$pageIndex = $this->request->get('page', 1);
|
|
$pageSize = $this->request->get('page_size', 15);
|
|
$order = StoreOrder::whereIn('status', [0, 1, 2, 3])
|
|
->field('order_id,order_sn')
|
|
->limit($pageIndex, $pageSize)
|
|
->order('order_id', 'desc')
|
|
->select()->toArray();
|
|
return app('json')->success($order);
|
|
}
|
|
|
|
public function decrypt()
|
|
{
|
|
$timestamp = $this->request->post('timestamp');
|
|
$data = $this->request->post('data');
|
|
$aes = new \AES();
|
|
$iv = !empty($timestamp) ? $aes->buildIv($timestamp) : '';
|
|
$decrypted = $aes->decrypt($data, $iv);
|
|
if (empty($decrypted)) {
|
|
throw new ValidateException('解密失败');
|
|
}
|
|
return $decrypted;
|
|
}
|
|
|
|
}
|