Ver código fonte

update: server log fetch

tokumeikoi 3 anos atrás
pai
commit
0c14652ff7

+ 1 - 0
app/Console/Commands/Test.php

@@ -3,6 +3,7 @@
 namespace App\Console\Commands;
 
 use App\Models\Order;
+use App\Models\User;
 use App\Utils\Helper;
 use Illuminate\Console\Command;
 

+ 4 - 0
app/Models/ServerLog.php

@@ -13,4 +13,8 @@ class ServerLog extends Model
         'created_at' => 'timestamp',
         'updated_at' => 'timestamp'
     ];
+    protected $fillable = [
+        'u',
+        'd'
+    ];
 }

+ 11 - 4
app/Services/ServerService.php

@@ -9,6 +9,7 @@ use App\Models\Server;
 use App\Models\ServerTrojan;
 use App\Utils\CacheKey;
 use Illuminate\Support\Facades\Cache;
+use Illuminate\Support\Facades\DB;
 
 class ServerService
 {
@@ -268,12 +269,18 @@ class ServerService
             ->where('user_id', $userId)
             ->where('rate', $rate)
             ->where('method', $method)
-            ->lockForUpdate()
             ->first();
         if ($serverLog) {
-            $serverLog->u = $serverLog->u + $u;
-            $serverLog->d = $serverLog->d + $d;
-            return $serverLog->save();
+            try {
+                $serverLog->update([
+                    'u' => DB::raw("u+{$u}"),
+                    'd' => DB::raw("d+{$d}")
+                ]);
+                return true;
+            } catch (\Exception $e) {
+                info($e);
+                return false;
+            }
         } else {
             $serverLog = new ServerLog();
             $serverLog->user_id = $userId;