mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-08 22:17:57 +00:00
request scrape update on torrent download
This commit is contained in:
parent
83ea09adad
commit
a47893ff9b
@ -1826,6 +1826,12 @@ class TorrentController extends AbstractController
|
||||
time()
|
||||
);
|
||||
|
||||
// Request scrape
|
||||
$torrentService->updateTorrentScraped(
|
||||
$torrent->getId(),
|
||||
0
|
||||
);
|
||||
|
||||
// Register download event
|
||||
$activityService->addEventTorrentDownloadFileAdd(
|
||||
$user->getId(),
|
||||
@ -1947,6 +1953,12 @@ class TorrentController extends AbstractController
|
||||
time()
|
||||
);
|
||||
|
||||
// Request scrape
|
||||
$torrentService->updateTorrentScraped(
|
||||
$torrent->getId(),
|
||||
0
|
||||
);
|
||||
|
||||
// Register download event
|
||||
$activityService->addEventTorrentDownloadFileAdd(
|
||||
$user->getId(),
|
||||
@ -2065,6 +2077,12 @@ class TorrentController extends AbstractController
|
||||
time()
|
||||
);
|
||||
|
||||
// Request scrape
|
||||
$torrentService->updateTorrentScraped(
|
||||
$torrent->getId(),
|
||||
0
|
||||
);
|
||||
|
||||
// Register download event
|
||||
$activityService->addEventTorrentDownloadMagnetAdd(
|
||||
$user->getId(),
|
||||
|
@ -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(
|
||||
int $torrentId,
|
||||
int $seeders,
|
||||
|
Loading…
Reference in New Issue
Block a user