mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Faster checks for video exists.
This commit is contained in:
parent
c9cfd69953
commit
7f117f572f
1 changed files with 5 additions and 6 deletions
|
@ -97,12 +97,11 @@ public class DatabaseHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean doesVideoExist(SharedSessionContract s, String id) {
|
public static boolean doesVideoExist(SharedSessionContract s, String id) {
|
||||||
CriteriaBuilder cb = s.getCriteriaBuilder();
|
return s.createQuery("SELECT 1 FROM Video WHERE id = :id", Integer.class)
|
||||||
CriteriaQuery<String> cr = cb.createQuery(String.class);
|
.setParameter("id", id)
|
||||||
Root<Video> root = cr.from(Video.class);
|
.setMaxResults(1)
|
||||||
cr.select(root.get("id")).where(cb.equal(root.get("id"), id));
|
.uniqueResultOptional()
|
||||||
|
.isPresent();
|
||||||
return s.createQuery(cr).uniqueResult() != null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PlaylistVideo getPlaylistVideoFromId(SharedSessionContract s, String id) {
|
public static PlaylistVideo getPlaylistVideoFromId(SharedSessionContract s, String id) {
|
||||||
|
|
Loading…
Reference in a new issue