Files
nexusphp/app/Jobs/UpdateTorrentSeedersEtc.php

146 lines
4.7 KiB
PHP
Raw Normal View History

2022-11-05 18:43:49 +08:00
<?php
namespace App\Jobs;
use App\Models\Setting;
use App\Models\User;
use App\Repositories\CleanupRepository;
2022-11-05 18:43:49 +08:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
2024-11-08 20:14:45 +08:00
use Illuminate\Queue\Middleware\WithoutOverlapping;
2022-11-05 18:43:49 +08:00
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;
2023-09-20 01:14:08 +08:00
private ?string $idStr = null;
2023-07-15 01:44:48 +08:00
2024-02-21 21:11:16 +08:00
private string $idRedisKey;
2022-11-05 18:43:49 +08:00
/**
* Create a new job instance.
*
* @return void
*/
2024-02-21 21:11:16 +08:00
public function __construct(int $beginTorrentId, int $endTorrentId, string $idStr, string $idRedisKey, string $requestId = '')
2022-11-05 18:43:49 +08:00
{
$this->beginTorrentId = $beginTorrentId;
$this->endTorrentId = $endTorrentId;
2023-07-15 01:44:48 +08:00
$this->idStr = $idStr;
2024-02-21 21:11:16 +08:00
$this->idRedisKey = $idRedisKey;
2022-11-05 18:43:49 +08:00
$this->requestId = $requestId;
}
2023-02-21 01:49:17 +08:00
public $tries = 1;
public $timeout = 1800;
2024-11-08 20:14:45 +08:00
/**
* 获取任务时,应该通过的中间件。
*
* @return array
*/
public function middleware()
{
return [new WithoutOverlapping($this->idRedisKey)];
}
2022-11-05 18:43:49 +08:00
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$beginTimestamp = time();
2024-11-08 20:14:45 +08:00
$logPrefix = sprintf(
"[CLEANUP_CLI_UPDATE_TORRENT_SEEDERS_ETC_HANDLE_JOB], commonRequestId: %s, beginTorrentId: %s, endTorrentId: %s, idStr: %s, idRedisKey: %s",
$this->requestId, $this->beginTorrentId, $this->endTorrentId, $this->idStr, $this->idRedisKey
);
2024-11-15 20:52:31 +08:00
do_log("$logPrefix, job start ...");
2024-02-21 21:11:16 +08:00
$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);
2024-11-07 03:35:21 +08:00
//批量取,简单化
$torrents = array();
2024-11-07 20:53:23 +08:00
// $res = sql_query("SELECT torrent, seeder, COUNT(*) AS c FROM peers GROUP BY torrent, seeder where torrent in ($idStr)");
$res = NexusDB::table("peers")
->selectRaw("torrent, seeder, COUNT(*) AS c")
->whereRaw("torrent in ($idStr)")
->groupBy(['torrent', 'seeder'])
->get();
2025-09-08 03:05:55 +07:00
if ($res->isEmpty()) {
do_log("$logPrefix, no data from idStr: $idStr", "error");
return;
}
2024-11-07 20:53:23 +08:00
foreach ($res as $row) {
if ($row->seeder == "yes")
2024-11-07 03:35:21 +08:00
$key = "seeders";
else
$key = "leechers";
2024-11-07 20:53:23 +08:00
$torrents[$row->torrent][$key] = $row->c;
}
2024-11-07 03:35:21 +08:00
2024-11-07 20:53:23 +08:00
// $res = sql_query("SELECT torrent, COUNT(*) AS c FROM comments GROUP BY torrent where torrent in ($idStr)");
$res = NexusDB::table("comments")
->selectRaw("torrent, COUNT(*) AS c")
->whereRaw("torrent in ($idStr)")
->groupBy(['torrent'])
->get();
foreach ($res as $row) {
2024-11-08 03:33:15 +08:00
$torrents[$row->torrent]["comments"] = $row->c;
2024-11-07 03:35:21 +08:00
}
$seedersUpdates = $leechersUpdates = $commentsUpdates = [];
foreach ($torrentIdArr as $id) {
$seedersUpdates[] = sprintf("when %d then %d", $id, $torrents[$id]["seeders"] ?? 0);
$leechersUpdates[] = sprintf("when %d then %d", $id, $torrents[$id]["leechers"] ?? 0);
$commentsUpdates[] = sprintf("when %d then %d", $id, $torrents[$id]["comments"] ?? 0);
}
$sql = sprintf(
"update torrents set seeders = case id %s end, leechers = case id %s end, comments = case id %s end where id in (%s)",
implode(" ", $seedersUpdates), implode(" ", $leechersUpdates), implode(" ", $commentsUpdates), $idStr
);
2024-11-07 20:53:23 +08:00
$result = NexusDB::statement($sql);
2024-02-21 21:11:16 +08:00
if ($delIdRedisKey) {
NexusDB::cache_del($this->idRedisKey);
}
$costTime = time() - $beginTimestamp;
do_log(sprintf(
2024-11-08 04:05:37 +08:00
"$logPrefix, [DONE], update torrent count: %s, result: %s, cost time: %s seconds",
count($torrentIdArr), var_export($result, true), $costTime
));
2024-11-08 04:05:37 +08:00
do_log("$logPrefix, sql: $sql", "debug");
2022-11-05 18:43:49 +08:00
}
2023-02-21 01:04:28 +08:00
/**
* Handle a job failure.
*
* @param \Throwable $exception
* @return void
*/
public function failed(\Throwable $exception)
{
do_log("failed: " . $exception->getMessage() . $exception->getTraceAsString(), 'error');
}
2022-11-05 18:43:49 +08:00
}