mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
130 lines
3.9 KiB
PHP
130 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use App\Repositories\CleanupRepository;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Nexus\Database\NexusDB;
|
|
|
|
class UpdateTorrentSeedersEtc implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
private int $beginTorrentId;
|
|
|
|
private int $endTorrentId;
|
|
|
|
private string $requestId;
|
|
|
|
private ?string $idStr = null;
|
|
|
|
private string $idRedisKey;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(int $beginTorrentId, int $endTorrentId, string $idStr, string $idRedisKey, string $requestId = '')
|
|
{
|
|
$this->beginTorrentId = $beginTorrentId;
|
|
$this->endTorrentId = $endTorrentId;
|
|
$this->idStr = $idStr;
|
|
$this->idRedisKey = $idRedisKey;
|
|
$this->requestId = $requestId;
|
|
}
|
|
|
|
/**
|
|
* Determine the time at which the job should timeout.
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function retryUntil()
|
|
{
|
|
return now()->addSeconds(Setting::get('main.autoclean_interval_three'));
|
|
}
|
|
|
|
public $tries = 1;
|
|
|
|
public $timeout = 1800;
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$beginTimestamp = time();
|
|
$logPrefix = sprintf("[CLEANUP_CLI_UPDATE_TORRENT_SEEDERS_ETC_HANDLE_JOB], commonRequestId: %s, beginTorrentId: %s, endTorrentId: %s", $this->requestId, $this->beginTorrentId, $this->endTorrentId);
|
|
|
|
$idStr = $this->idStr;
|
|
$delIdRedisKey = false;
|
|
if (empty($idStr) && !empty($this->idRedisKey)) {
|
|
$delIdRedisKey = true;
|
|
$idStr = NexusDB::cache_get($this->idRedisKey);
|
|
}
|
|
if (empty($idStr)) {
|
|
do_log("$logPrefix, no idStr or idRedisKey", "error");
|
|
return;
|
|
}
|
|
$torrentIdArr = explode(",", $idStr);
|
|
foreach ($torrentIdArr as $torrentId) {
|
|
if ($torrentId <= 0) {
|
|
continue;
|
|
}
|
|
$peerResult = NexusDB::table('peers')
|
|
->where('torrent', $torrentId)
|
|
->selectRaw("count(*) as count, seeder")
|
|
->groupBy('seeder')
|
|
->get()
|
|
;
|
|
$commentResult = NexusDB::table('comments')
|
|
->where('torrent',$torrentId)
|
|
->selectRaw("count(*) as count")
|
|
->first()
|
|
;
|
|
$update = [
|
|
'comments' => $commentResult && $commentResult->count !== null ? $commentResult->count : 0,
|
|
'seeders' => 0,
|
|
'leechers' => 0,
|
|
];
|
|
foreach ($peerResult as $item) {
|
|
if ($item->seeder == 'yes') {
|
|
$update['seeders'] = $item->count;
|
|
} elseif ($item->seeder == 'no') {
|
|
$update['leechers'] = $item->count;
|
|
}
|
|
}
|
|
NexusDB::table('torrents')->where('id', $torrentId)->update($update);
|
|
do_log("[CLEANUP_CLI_UPDATE_TORRENT_SEEDERS_ETC_HANDLE_TORRENT], [SUCCESS]: $torrentId => " . json_encode($update));
|
|
}
|
|
if ($delIdRedisKey) {
|
|
NexusDB::cache_del($this->idRedisKey);
|
|
}
|
|
$costTime = time() - $beginTimestamp;
|
|
do_log(sprintf(
|
|
"$logPrefix, [DONE], update torrent count: %s, cost time: %s seconds",
|
|
count($torrentIdArr), $costTime
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Handle a job failure.
|
|
*
|
|
* @param \Throwable $exception
|
|
* @return void
|
|
*/
|
|
public function failed(\Throwable $exception)
|
|
{
|
|
do_log("failed: " . $exception->getMessage() . $exception->getTraceAsString(), 'error');
|
|
}
|
|
}
|