作者 邓超

同步

... ... @@ -15,7 +15,7 @@ function start(){
// 占用当前的id,占用2小时
if(redis()->add('just_sync_'.$id,time(),600)){
go(function () use ($id){
echo \Swlib\SaberGM::get('http://mail-serve.hagro.cn/v3/sync?id='.$id,['timeout'=>60]);
echo \Swlib\SaberGM::get('http://mail-serve.hagro.cn/v3/sync?id='.$id,['timeout'=>60])->getBody()->getContents();
});
}
}else{
... ...
... ... @@ -35,6 +35,7 @@ class Home extends Base {
* @time 2023/8/2 16:19
*/
public function sync(){
header("content-type:text/html; charset=utf-8");
$id = app()->request('id');
if($id && is_numeric($id)){
(new SyncMail($id))->sync();
... ...
... ... @@ -25,7 +25,7 @@ class SyncMail {
public function __construct(int $id, array $data)
{
if(php_sapi_name() == 'cli'){
// if(php_sapi_name() == 'cli'){
$this->db = db();
// 是否是预热邮件 aicc专用
... ... @@ -86,7 +86,7 @@ class SyncMail {
}
}
// }
... ...