|
@@ -24,6 +24,7 @@ require env('root_path').'application/common/library/llp/src/params/GetRandomPar
|
|
|
class Notify extends Controller
|
|
|
{
|
|
|
|
|
|
+ protected $prefix = 'xl_';
|
|
|
public function __construct()
|
|
|
{
|
|
|
$data = input('post.');
|
|
@@ -56,12 +57,12 @@ class Notify extends Controller
|
|
|
// 开户回调
|
|
|
public function openAcctApplyNotify()
|
|
|
{
|
|
|
- $data = input('post.');
|
|
|
- $data['openAcctApplyNotify'] = 'openAcctApplyNotify';
|
|
|
- $header = app()->request->header();
|
|
|
- $notify_ip = request()->ip();
|
|
|
- file_put_contents("lianLianNotify.txt", json_encode($data,JSON_UNESCAPED_UNICODE) . "\n" . "\n", FILE_APPEND);
|
|
|
- file_put_contents("lianLianNotify.txt", json_encode($header) . "\n" . "\n", FILE_APPEND);
|
|
|
+ $result = input('post.');
|
|
|
+ $result['openAcctApplyNotify'] = 'openAcctApplyNotify';
|
|
|
+ if($result['user_status'] == 'NORMAL') {
|
|
|
+ Db::name('store_member')->where('id',trim($result['user_id'],$this->prefix))->update(['cloud_wallet'=>1]);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|