|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @remark :
|
|
|
|
* @name :SyncTimeFiles.php
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2024/8/14 14:23
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Console\Commands\Sync;
|
|
|
|
|
|
|
|
use App\Models\File\ErrorFile;
|
|
|
|
use App\Models\File\File;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
|
|
|
|
class SyncTimeMinuteFile extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'sync_minute_file';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = '按时间同步图片与文件(每分钟执行前面10分钟的数据)';
|
|
|
|
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$dir = '/www/wwwroot/cos';
|
|
|
|
// 获取当前时间的 Unix 时间戳
|
|
|
|
$currentTime = time();
|
|
|
|
// 获取当前时间前10分钟的 Unix 时间戳
|
|
|
|
$time10MinutesAgo = $currentTime - 10 * 60;
|
|
|
|
// 将 Unix 时间戳格式化为标准的日期时间格式
|
|
|
|
$start = date('Y-m-d H:i:s', $time10MinutesAgo);
|
|
|
|
$end = date('Y-m-d H:i:s');
|
|
|
|
$fileModel = new File();
|
|
|
|
$lists = $fileModel->list(['created_at'=>['between',[$start,$end]]]);
|
|
|
|
foreach ($lists as $v){
|
|
|
|
$path = $v['path'];
|
|
|
|
if (file_exists($dir.$path)) {
|
|
|
|
echo date('Y-m-d H:i:s') . ' | file_ok:' . $dir.$path . PHP_EOL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$this->param['name'] = basename($path);
|
|
|
|
$this->param['path'] = str_replace('/'.$this->param['name'],'',$path);
|
|
|
|
$file_path = $this->getUrl($this->param['path'].'/'.$this->param['name'], 0,0);
|
|
|
|
$cmd = 'curl -F "file_path='.$file_path.'" -F "save_path=/www/wwwroot/cos'.$this->param['path'].'" https://v6-file.globalso.com/upload.php';
|
|
|
|
echo date('Y-m-d H:i:s') . ' | ' . $cmd . PHP_EOL;
|
|
|
|
$code = shell_exec($cmd);
|
|
|
|
if(200 != (int)$code){
|
|
|
|
echo date('Y-m-d H:i:s') . ' | 错误状态:' . $code . PHP_EOL;
|
|
|
|
$errorFileModel = new ErrorFile();
|
|
|
|
$errorFileModel->add(['path'=>$this->param['path'].'/'.$this->param['name']]);
|
|
|
|
}
|
|
|
|
echo date('Y-m-d H:i:s') . ' | ok:' . $code . PHP_EOL;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取图片文件链接
|
|
|
|
* @name :getUrl
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2024/5/22 11:53
|
|
|
|
*/
|
|
|
|
public function getUrl($path,$storage_type,$location){
|
|
|
|
if(is_array($path)){
|
|
|
|
$url =[];
|
|
|
|
foreach ($path as $v){
|
|
|
|
$url[] = $this->getUrl($v,$storage_type,$location);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if(empty($path)){
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
if((strpos($path,'https://')!== false) || (strpos($path,'http://') !== false)){
|
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
if(substr($path,0,2) == '//'){
|
|
|
|
return 'https:'.$path;
|
|
|
|
}
|
|
|
|
if($location == 0){
|
|
|
|
$cos = config('filesystems.disks.cos');
|
|
|
|
$cosCdn = ($storage_type == 0) ? $cos['cdn'] : $cos['cdn1'];
|
|
|
|
$url = $cosCdn.$path;
|
|
|
|
}else{
|
|
|
|
$s3 = config('filesystems.disks.s3');
|
|
|
|
$cdn = $s3['cdn'];
|
|
|
|
$url = $cdn.$path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|