View Javadoc
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   * Classe che incapsula la logica per il recupero di entità di tipo {@link Comment}
14   */
15  public class CommentRepository implements Serializable {
16  
17      @PersistenceContext
18      protected EntityManager em;
19  
20      /**
21       *  Trova tutti i commenti di un determinato post
22       * @param post entità Post di cui si vuole ottenere i commenti
23       * @param depth profondità della ricorsione per le risposte ai post
24       * @return Lista di commenti
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       *  Trova tutti i commenti di riposta a un determinato commento
37       * @param comment Entità Comment di cui si vuole ottenere i commenti
38       * @param depth profondità della ricorsione per le risposte ai post
39       * @return Lista di commenti
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  }