request scrape update on torrent download

This commit is contained in:
ghost 2023-10-26 04:02:35 +03:00
parent 83ea09adad
commit a47893ff9b
2 changed files with 34 additions and 0 deletions

View File

@ -1826,6 +1826,12 @@ class TorrentController extends AbstractController
time() time()
); );
// Request scrape
$torrentService->updateTorrentScraped(
$torrent->getId(),
0
);
// Register download event // Register download event
$activityService->addEventTorrentDownloadFileAdd( $activityService->addEventTorrentDownloadFileAdd(
$user->getId(), $user->getId(),
@ -1947,6 +1953,12 @@ class TorrentController extends AbstractController
time() time()
); );
// Request scrape
$torrentService->updateTorrentScraped(
$torrent->getId(),
0
);
// Register download event // Register download event
$activityService->addEventTorrentDownloadFileAdd( $activityService->addEventTorrentDownloadFileAdd(
$user->getId(), $user->getId(),
@ -2065,6 +2077,12 @@ class TorrentController extends AbstractController
time() time()
); );
// Request scrape
$torrentService->updateTorrentScraped(
$torrent->getId(),
0
);
// Register download event // Register download event
$activityService->addEventTorrentDownloadMagnetAdd( $activityService->addEventTorrentDownloadMagnetAdd(
$user->getId(), $user->getId(),

View File

@ -407,6 +407,22 @@ class TorrentService
} }
} }
public function updateTorrentScraped(
int $torrentId,
int $time
): void
{
if ($torrent = $this->getTorrent($torrentId))
{
$torrent->setScraped(
time()
);
$this->entityManagerInterface->persist($torrent);
$this->entityManagerInterface->flush();
}
}
public function updateTorrentScrape( public function updateTorrentScrape(
int $torrentId, int $torrentId,
int $seeders, int $seeders,