wupengfei 2 vuotta sitten
vanhempi
commit
6f51878d3c
2 muutettua tiedostoa jossa 9 lisäystä ja 7 poistoa
  1. 2 1
      .idea/workspace.xml
  2. 7 6
      application/api/controller/Notify.php

+ 2 - 1
.idea/workspace.xml

@@ -3,6 +3,7 @@
   <component name="ChangeListManager">
     <list default="true" id="39916099-6c76-4a34-b5a2-40f5b4c0c928" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/api/controller/Notify.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Notify.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -216,7 +217,7 @@
       <workItem from="1665535774839" duration="2954000" />
       <workItem from="1665543792569" duration="7208000" />
       <workItem from="1665621143495" duration="2513000" />
-      <workItem from="1665708328289" duration="3812000" />
+      <workItem from="1665708328289" duration="5111000" />
     </task>
     <task id="LOCAL-00001" summary=".">
       <created>1663731279977</created>

+ 7 - 6
application/api/controller/Notify.php

@@ -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]);
+        }
+
     }