|
...
|
...
|
@@ -9,6 +9,7 @@ use App\Http\Logic\Logic; |
|
|
|
use App\Models\Com\UpdateNotify;
|
|
|
|
use App\Models\Project\Project;
|
|
|
|
use App\Models\RouteMap\RouteDelete;
|
|
|
|
use App\Models\Service\Service;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
...
|
...
|
@@ -173,7 +174,7 @@ class BaseLogic extends Logic |
|
|
|
$data['project_id'] = $this->user['project_id'];
|
|
|
|
$str = http_build_query($data);
|
|
|
|
$url = $this->user['domain'].'api/delHtml/?'.$str;
|
|
|
|
if($this->user['project_id'] == 672){//TODO::当前项目通知不过 ,跳过自动更新
|
|
|
|
if(isset($this->project['serve_id']) && ($this->project['serve_id'] == 3)){//TODO::当前项目通知不过 ,跳过自动更新
|
|
|
|
exec('curl -k "'.$url.'" > /dev/null 2>&1 &');
|
|
|
|
}else{
|
|
|
|
shell_exec('curl -k "'.$url.'"');
|
...
|
...
|
|