001package model.entity;
002
003import lombok.Getter;
004import lombok.Setter;
005
006import javax.persistence.*;
007import java.io.Serializable;
008import java.time.Instant;
009import java.util.Map;
010
011/**
012 * Entità rappresentante il commento ad un post
013 */
014@Entity
015public class Comment implements Serializable {
016
017    @Setter @Getter
018    @Id @GeneratedValue(strategy = GenerationType.IDENTITY)
019    protected Integer id;
020
021    @Setter @Getter
022    @ManyToOne(fetch = FetchType.LAZY, optional = false)
023    protected Post post;
024
025    @Setter @Getter
026    @ManyToOne(fetch = FetchType.LAZY, optional = false)
027    protected User author;
028
029    /**
030     * <p>Riferimento al commento padre (o <pre>null</pre> se il commento in questione è un commento radice</p>
031     */
032    @Setter @Getter
033    @ManyToOne(fetch = FetchType.LAZY, optional = true)
034    protected Comment parentComment;
035
036    @Setter @Getter
037    @Column(columnDefinition = "TEXT", nullable = false)
038    protected String content;
039
040    @Getter
041    @Column(nullable = false, updatable = false, insertable = false)
042    protected Instant creationDate;
043
044    @Getter
045    @Column(name="votes", insertable = false, updatable = false)
046    protected Integer votesCount;
047
048    /**
049     * <p>Il percorso materializzato del commento, contenente tutti gli ID (in base 36) dei commenti che, da
050     * sinistra verso destra, costituiscono il percorso per arrivare al commento in questione a partire dalla radice.</p>
051     */
052    @Getter
053    @Column(insertable = false, updatable = false)
054    protected String path;
055
056    @OneToMany(mappedBy="comment")
057    @MapKeyJoinColumn(name="user_id", updatable = false, insertable = false)
058    protected Map<User, CommentVote> votes;
059
060    /**
061     * Ottieni il voto di un utente al commento in questione (o <pre>null</pre> se il voto non è presente)
062     * @param user Riferimento all'utente
063     * @return Un oggetto {@link CommentVote}
064     */
065    public CommentVote getVote(User user){
066        return votes.get(user);
067    }
068
069    public Comment(){}
070
071    @Override
072    public boolean equals(Object o) {
073        if (this == o) return true;
074        if (!(o instanceof Comment)) return false;
075        Comment comment = (Comment) o;
076        return id.equals(comment.id);
077    }
078
079    @Override
080    public int hashCode() {
081        return getClass().hashCode();
082    }
083}