1 package model.repository;
2
3 import model.entity.Comment;
4 import model.entity.Post;
5
6 import javax.persistence.EntityManager;
7 import javax.persistence.PersistenceContext;
8 import java.io.Serializable;
9 import java.util.List;
10
11
12
13
14
15 public class CommentRepository implements Serializable {
16
17 @PersistenceContext
18 protected EntityManager em;
19
20
21
22
23
24
25
26 public List<Comment> getByPost(Post post, int depth){
27 return em.createQuery(
28 "from Comment c where c.post = :post and length(c.path) <= (7 * :depth) + 1 order by c.path",
29 Comment.class)
30 .setParameter("depth", depth)
31 .setParameter("post", post)
32 .getResultList();
33 }
34
35
36
37
38
39
40
41 public List<Comment> getReplies(Comment comment, int depth){
42 return em.createQuery(
43 "from Comment c where c.path like :path and length(c.path) <= (7 * :depth) + 1 order by c.path",
44 Comment.class)
45 .setParameter("depth", depth)
46 .setParameter("path", comment.getPath() + '%')
47 .getResultList();
48 }
49 }