mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-10 06:57:52 +00:00
make common methods optimization
This commit is contained in:
parent
8d258c677b
commit
285a5104e2
@ -21,23 +21,6 @@ class TorrentDownloadFileRepository extends ServiceEntityRepository
|
|||||||
parent::__construct($registry, TorrentDownloadFile::class);
|
parent::__construct($registry, TorrentDownloadFile::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentDownloadFile(
|
|
||||||
int $torrentId,
|
|
||||||
int $userId
|
|
||||||
): ?TorrentDownloadFile
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('tdf')
|
|
||||||
->where('tdf.torrentId = :torrentId')
|
|
||||||
->andWhere('tdf.userId = :userId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->setParameter('userId', $userId)
|
|
||||||
->orderBy('tdf.id', 'DESC') // same to ts.added
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findTorrentDownloadFilesTotalByTorrentId(
|
public function findTorrentDownloadFilesTotalByTorrentId(
|
||||||
int $torrentId
|
int $torrentId
|
||||||
): int
|
): int
|
||||||
|
@ -21,23 +21,6 @@ class TorrentDownloadMagnetRepository extends ServiceEntityRepository
|
|||||||
parent::__construct($registry, TorrentDownloadMagnet::class);
|
parent::__construct($registry, TorrentDownloadMagnet::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentDownloadMagnet(
|
|
||||||
int $torrentId,
|
|
||||||
int $userId
|
|
||||||
): ?TorrentDownloadMagnet
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('tdm')
|
|
||||||
->where('tdm.torrentId = :torrentId')
|
|
||||||
->andWhere('tdm.userId = :userId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->setParameter('userId', $userId)
|
|
||||||
->orderBy('tdm.id', 'DESC') // same to ts.added
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findTorrentDownloadMagnetsTotalByTorrentId(
|
public function findTorrentDownloadMagnetsTotalByTorrentId(
|
||||||
int $torrentId
|
int $torrentId
|
||||||
): int
|
): int
|
||||||
|
@ -20,37 +20,4 @@ class TorrentLocalesRepository extends ServiceEntityRepository
|
|||||||
{
|
{
|
||||||
parent::__construct($registry, TorrentLocales::class);
|
parent::__construct($registry, TorrentLocales::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTorrentLocales(int $id): ?TorrentLocales
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('tl')
|
|
||||||
->where('tl.id = :id')
|
|
||||||
->setParameter('id', $id)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findLastTorrentLocalesByTorrentId(int $torrentId): ?TorrentLocales
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('tl')
|
|
||||||
->where('tl.torrentId = :torrentId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->orderBy('tl.id', 'DESC') // same to tl.added
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findTorrentLocalesByTorrentId(int $torrentId): array
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('tl')
|
|
||||||
->where('tl.torrentId = :torrentId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->orderBy('tl.id', 'DESC') // same to tl.added
|
|
||||||
->getQuery()
|
|
||||||
->getResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -20,24 +20,4 @@ class TorrentRepository extends ServiceEntityRepository
|
|||||||
{
|
{
|
||||||
parent::__construct($registry, Torrent::class);
|
parent::__construct($registry, Torrent::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTorrent(int $id): ?Torrent
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('t')
|
|
||||||
->where('t.id = :id')
|
|
||||||
->setParameter('id', $id)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getTorrentScrapeQueue(): ?Torrent
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('t')
|
|
||||||
->orderBy('t.scraped', 'ASC') // same to ts.added
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -20,37 +20,4 @@ class TorrentSensitiveRepository extends ServiceEntityRepository
|
|||||||
{
|
{
|
||||||
parent::__construct($registry, TorrentSensitive::class);
|
parent::__construct($registry, TorrentSensitive::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getTorrentSensitive(int $id): ?TorrentSensitive
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('ts')
|
|
||||||
->where('ts.id = :id')
|
|
||||||
->setParameter('id', $id)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findLastTorrentSensitiveByTorrentId(int $torrentId): ?TorrentSensitive
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('ts')
|
|
||||||
->where('ts.torrentId = :torrentId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->orderBy('ts.id', 'DESC') // same to ts.added
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findTorrentSensitiveByTorrentId(int $torrentId): array
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('ts')
|
|
||||||
->where('ts.torrentId = :torrentId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->orderBy('ts.id', 'DESC') // same to ts.added
|
|
||||||
->getQuery()
|
|
||||||
->getResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -21,30 +21,13 @@ class TorrentStarRepository extends ServiceEntityRepository
|
|||||||
parent::__construct($registry, TorrentStar::class);
|
parent::__construct($registry, TorrentStar::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentStar(
|
|
||||||
int $torrentId,
|
|
||||||
int $userId
|
|
||||||
): ?TorrentStar
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('tb')
|
|
||||||
->where('tb.torrentId = :torrentId')
|
|
||||||
->andWhere('tb.userId = :userId')
|
|
||||||
->setParameter('torrentId', $torrentId)
|
|
||||||
->setParameter('userId', $userId)
|
|
||||||
->orderBy('tb.id', 'DESC') // same to ts.added
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findTorrentStarsTotalByTorrentId(
|
public function findTorrentStarsTotalByTorrentId(
|
||||||
int $torrentId
|
int $torrentId
|
||||||
): int
|
): int
|
||||||
{
|
{
|
||||||
return $this->createQueryBuilder('tb')
|
return $this->createQueryBuilder('ts')
|
||||||
->select('count(tb.id)')
|
->select('count(ts.id)')
|
||||||
->where('tb.torrentId = :torrentId')
|
->where('ts.torrentId = :torrentId')
|
||||||
->setParameter('torrentId', $torrentId)
|
->setParameter('torrentId', $torrentId)
|
||||||
->getQuery()
|
->getQuery()
|
||||||
->getSingleScalarResult()
|
->getSingleScalarResult()
|
||||||
|
@ -20,24 +20,4 @@ class UserRepository extends ServiceEntityRepository
|
|||||||
{
|
{
|
||||||
parent::__construct($registry, User::class);
|
parent::__construct($registry, User::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getUser(int $id): ?User
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('u')
|
|
||||||
->where('u.id = :id')
|
|
||||||
->setParameter('id', $id)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findOneByAddressField(string $address): ?User
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('u')
|
|
||||||
->where('u.address = :address')
|
|
||||||
->setParameter('address', $address)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -21,22 +21,6 @@ class UserStarRepository extends ServiceEntityRepository
|
|||||||
parent::__construct($registry, UserStar::class);
|
parent::__construct($registry, UserStar::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findUserStar(
|
|
||||||
int $userId,
|
|
||||||
int $userIdTarget
|
|
||||||
): ?UserStar
|
|
||||||
{
|
|
||||||
return $this->createQueryBuilder('us')
|
|
||||||
->where('us.userId = :userId')
|
|
||||||
->andWhere('us.userIdTarget = :userIdTarget')
|
|
||||||
->setParameter('userId', $userId)
|
|
||||||
->setParameter('userIdTarget', $userIdTarget)
|
|
||||||
->setMaxResults(1)
|
|
||||||
->getQuery()
|
|
||||||
->getOneOrNullResult()
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function findUserStarsTotalByUserIdTarget(
|
public function findUserStarsTotalByUserIdTarget(
|
||||||
int $userIdTarget
|
int $userIdTarget
|
||||||
): int
|
): int
|
||||||
|
@ -250,7 +250,7 @@ class TorrentService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(Torrent::class)
|
->getRepository(Torrent::class)
|
||||||
->getTorrent($id);
|
->find($id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addTorrent(
|
public function addTorrent(
|
||||||
@ -277,7 +277,12 @@ class TorrentService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(Torrent::class)
|
->getRepository(Torrent::class)
|
||||||
->getTorrentScrapeQueue();
|
->findOneBy(
|
||||||
|
[],
|
||||||
|
[
|
||||||
|
'scraped' => 'ASC'
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setTorrentsApprovedByUserId(
|
public function setTorrentsApprovedByUserId(
|
||||||
@ -302,32 +307,44 @@ class TorrentService
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Torrent locale
|
// Torrent locale
|
||||||
public function getTorrentLocales(int $id): ?TorrentLocales
|
public function getTorrentLocales(
|
||||||
|
int $torrentLocaleId
|
||||||
|
): ?TorrentLocales
|
||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentLocales::class)
|
->getRepository(TorrentLocales::class)
|
||||||
->getTorrentLocales($id);
|
->find($torrentLocaleId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findLastTorrentLocalesByTorrentId(int $torrentId): ?TorrentLocales
|
public function findLastTorrentLocalesByTorrentId(
|
||||||
|
int $torrentId
|
||||||
|
): ?TorrentLocales
|
||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentLocales::class)
|
->getRepository(TorrentLocales::class)
|
||||||
->findLastTorrentLocalesByTorrentId($torrentId);
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentLocalesByTorrentId(int $torrentId): array
|
public function findTorrentLocalesByTorrentId(int $torrentId): array
|
||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentLocales::class)
|
->getRepository(TorrentLocales::class)
|
||||||
->findTorrentLocalesByTorrentId($torrentId);
|
->findBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function toggleTorrentLocalesApproved(
|
public function toggleTorrentLocalesApproved(
|
||||||
int $id
|
int $torrentLocalesId
|
||||||
): ?TorrentLocales
|
): ?TorrentLocales
|
||||||
{
|
{
|
||||||
$torrentLocales = $this->getTorrentLocales($id);
|
$torrentLocales = $this->getTorrentLocales($torrentLocalesId);
|
||||||
|
|
||||||
$torrentLocales->setApproved(
|
$torrentLocales->setApproved(
|
||||||
!$torrentLocales->isApproved() // toggle current value
|
!$torrentLocales->isApproved() // toggle current value
|
||||||
@ -340,10 +357,10 @@ class TorrentService
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function deleteTorrentLocales(
|
public function deleteTorrentLocales(
|
||||||
int $id
|
int $torrentLocalesId
|
||||||
): ?TorrentLocales
|
): ?TorrentLocales
|
||||||
{
|
{
|
||||||
$torrentLocales = $this->getTorrentLocales($id);
|
$torrentLocales = $this->getTorrentLocales($torrentLocalesId);
|
||||||
|
|
||||||
$this->entityManagerInterface->remove($torrentLocales);
|
$this->entityManagerInterface->remove($torrentLocales);
|
||||||
$this->entityManagerInterface->flush();
|
$this->entityManagerInterface->flush();
|
||||||
@ -395,32 +412,52 @@ class TorrentService
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Torrent sensitive
|
// Torrent sensitive
|
||||||
public function getTorrentSensitive(int $id): ?TorrentSensitive
|
public function getTorrentSensitive(
|
||||||
|
int $torrentSensitiveId
|
||||||
|
): ?TorrentSensitive
|
||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentSensitive::class)
|
->getRepository(TorrentSensitive::class)
|
||||||
->getTorrentSensitive($id);
|
->find(
|
||||||
|
$torrentSensitiveId
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findLastTorrentSensitiveByTorrentId(int $torrentId): ?TorrentSensitive
|
public function findLastTorrentSensitiveByTorrentId(int $torrentId): ?TorrentSensitive
|
||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentSensitive::class)
|
->getRepository(TorrentSensitive::class)
|
||||||
->findLastTorrentSensitiveByTorrentId($torrentId);
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'id' => 'DESC'
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentSensitiveByTorrentId(int $torrentId): array
|
public function findTorrentSensitiveByTorrentId(int $torrentId): array
|
||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentSensitive::class)
|
->getRepository(TorrentSensitive::class)
|
||||||
->findTorrentSensitiveByTorrentId($torrentId);
|
->findBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'id' => 'DESC'
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function toggleTorrentSensitiveApproved(
|
public function toggleTorrentSensitiveApproved(
|
||||||
int $id
|
int $torrentSensitiveId
|
||||||
): ?TorrentSensitive
|
): ?TorrentSensitive
|
||||||
{
|
{
|
||||||
$torrentSensitive = $this->getTorrentSensitive($id);
|
$torrentSensitive = $this->find(
|
||||||
|
$torrentSensitiveId
|
||||||
|
);
|
||||||
|
|
||||||
$torrentSensitive->setApproved(
|
$torrentSensitive->setApproved(
|
||||||
!$torrentSensitive->isApproved() // toggle current value
|
!$torrentSensitive->isApproved() // toggle current value
|
||||||
@ -433,10 +470,12 @@ class TorrentService
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function deleteTorrentSensitive(
|
public function deleteTorrentSensitive(
|
||||||
int $id
|
int $torrentSensitiveId
|
||||||
): ?TorrentSensitive
|
): ?TorrentSensitive
|
||||||
{
|
{
|
||||||
$torrentSensitive = $this->getTorrentSensitive($id);
|
$torrentSensitive = $this->getTorrentSensitive(
|
||||||
|
$torrentSensitiveId
|
||||||
|
);
|
||||||
|
|
||||||
$this->entityManagerInterface->remove($torrentSensitive);
|
$this->entityManagerInterface->remove($torrentSensitive);
|
||||||
$this->entityManagerInterface->flush();
|
$this->entityManagerInterface->flush();
|
||||||
@ -495,7 +534,12 @@ class TorrentService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentStar::class)
|
->getRepository(TorrentStar::class)
|
||||||
->findTorrentStar($torrentId, $userId);
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId,
|
||||||
|
'userId' => $userId,
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentStarsTotalByTorrentId(int $torrentId): int
|
public function findTorrentStarsTotalByTorrentId(int $torrentId): int
|
||||||
@ -538,7 +582,12 @@ class TorrentService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentDownloadFile::class)
|
->getRepository(TorrentDownloadFile::class)
|
||||||
->findTorrentDownloadFile($torrentId, $userId);
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId,
|
||||||
|
'userId' => $userId
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentDownloadFilesTotalByTorrentId(int $torrentId): int
|
public function findTorrentDownloadFilesTotalByTorrentId(int $torrentId): int
|
||||||
@ -575,7 +624,12 @@ class TorrentService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(TorrentDownloadMagnet::class)
|
->getRepository(TorrentDownloadMagnet::class)
|
||||||
->findTorrentDownloadMagnet($torrentId, $userId);
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'torrentId' => $torrentId,
|
||||||
|
'userId' => $userId
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findTorrentDownloadMagnetsTotalByTorrentId(int $torrentId): int
|
public function findTorrentDownloadMagnetsTotalByTorrentId(int $torrentId): int
|
||||||
|
@ -28,7 +28,11 @@ class UserService
|
|||||||
// Return existing user
|
// Return existing user
|
||||||
if ($result = $this->entityManagerInterface
|
if ($result = $this->entityManagerInterface
|
||||||
->getRepository(User::class)
|
->getRepository(User::class)
|
||||||
->findOneByAddressField($address))
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'address' => $address
|
||||||
|
]
|
||||||
|
))
|
||||||
{
|
{
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
@ -91,7 +95,7 @@ class UserService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(User::class)
|
->getRepository(User::class)
|
||||||
->getUser($userId);
|
->find($userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function identicon(
|
public function identicon(
|
||||||
@ -128,7 +132,12 @@ class UserService
|
|||||||
{
|
{
|
||||||
return $this->entityManagerInterface
|
return $this->entityManagerInterface
|
||||||
->getRepository(UserStar::class)
|
->getRepository(UserStar::class)
|
||||||
->findUserStar($userId, $userIdTarget);
|
->findOneBy(
|
||||||
|
[
|
||||||
|
'userId' => $userId,
|
||||||
|
'userIdTarget' => $userIdTarget
|
||||||
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function findUserStarsTotalByUserIdTarget(int $torrentId): int
|
public function findUserStarsTotalByUserIdTarget(int $torrentId): int
|
||||||
|
Loading…
Reference in New Issue
Block a user