aboutsummaryrefslogtreecommitdiff
path: root/juick-common/src/main/java/com/juick/Message.java
blob: b1c0ab796a24d92c6d362811e30f99dd17160834 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*
 * Copyright (C) 2008-2017, Juick
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.juick;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.juick.adapters.SimpleDateAdapter;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.builder.ToStringBuilder;

import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.time.Instant;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;

/**
 * @author Ugnich Anton
 */
@XmlRootElement(name = "juick", namespace = "http://juick.com/message")
@XmlAccessorType()
public class Message implements Comparable {
    private int mid = 0;
    private int rid = 0;
    private int replyto = 0;
    private String text = null;
    private User user = null;
    private final List<Tag> tags;
    private Instant ts;
    private Instant updated;
    private boolean unread;
    @XmlTransient
    @JsonIgnore
    public int TimeAgo = 0;
    @JsonIgnore
    private int privacy = 1;
    @XmlTransient
    @JsonIgnore
    public boolean FriendsOnly = false;
    @XmlTransient
    @JsonIgnore
    public boolean ReadOnly = false;
    @XmlTransient
    @JsonIgnore
    public boolean Hidden = false;
    @JsonIgnore
    @XmlTransient
    public boolean VisitorCanComment = true;
    private int replies = 0;
    private String repliesBy;
    private String attachmentType;
    @XmlTransient
    private Photo photo;
    @XmlTransient
    private Attachment attachment;
    private int likes;
    private User to;
    private Recommendation Recommendation;
    private String replyQuote;
    @XmlTransient
    private Set<Reaction> reactions;
    private boolean service;

    public Message() {
        tags = new ArrayList<>();
        reactions = new HashSet<>();
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this)
                .append("mid", mid)
                .append("rid", rid)
                .append("replyto", replyto)
                .append("TimeAgo", TimeAgo)
                .append("privacy", privacy)
                .append("FriendsOnly", FriendsOnly)
                .append("ReadOnly", ReadOnly)
                .append("Hidden", Hidden)
                .append("VisitorCanComment", VisitorCanComment)
                .append("replies", replies)
                .append("likes", likes)
                .append("reactions", reactions)
                .toString();
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == this)
            return true;

        if (!(obj instanceof Message))
            return false;

        Message jmsg = (Message) obj;
        return (this.getMid() == jmsg.getMid() && this.getRid() == jmsg.getRid());
    }

    @Override
    public int compareTo(Object obj) throws ClassCastException {
        if (obj == this)
            return 0;

        if (!(obj instanceof Message))
            throw new ClassCastException();

        Message jmsg = (Message) obj;

        int cmp = Integer.compare(jmsg.getMid(), getMid());

        if (cmp == 0)
            cmp = Integer.compare(getRid(), jmsg.getRid());

        return cmp;
    }

    @JsonProperty("mid")
    @XmlAttribute(name = "mid")
    public int getMid() {
        return mid;
    }

    public void setMid(int mid) {
        this.mid = mid;
    }

    @JsonProperty("rid")
    @XmlAttribute(name = "rid")
    public int getRid() {
        return rid;
    }

    public void setRid(int rid) {
        this.rid = rid;
    }

    @XmlElement(name = "user", namespace = "http://juick.com/user")
    public com.juick.User getUser() {
        return user;
    }

    public void setUser(com.juick.User user) {
        this.user = user;
    }

    @JsonProperty("body")
    @XmlElement(name = "body")
    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

    @JsonProperty("timestamp")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "UTC")
    @XmlAttribute(name = "ts")
    @XmlJavaTypeAdapter(SimpleDateAdapter.class)
    public Instant getTimestamp() {
        return ts;
    }

    public void setTimestamp(Instant timestamp) {
        this.ts = timestamp;
    }

    @XmlElement(name = "to", namespace = "http://juick.com/user")
    public User getTo() {
        return to;
    }

    public void setTo(User to) {
        this.to = to;
    }

    public Recommendation getRecommendation() {
        return Recommendation;
    }

    public void setRecommendation(Recommendation recommendation) {
        this.Recommendation = recommendation;
    }

    @XmlAttribute(name = "quote")
    public String getReplyQuote() {
        return replyQuote;
    }

    public void setReplyQuote(String quote) {
        replyQuote = quote;
    }

    @JsonProperty("replyto")
    @XmlAttribute(name = "replyto")
    public int getReplyto() {
        return replyto;
    }

    public void setReplyto(int replyto) {
        this.replyto = replyto;
    }

    @JsonProperty("tags")
    @XmlElement(name = "tag")
    public List<Tag> getTags() {
        return tags;
    }

    public void setTags(List<Tag> tags) {
        this.tags.clear();
        if (CollectionUtils.isNotEmpty(tags))
            this.tags.addAll(tags);
    }

    @XmlAttribute
    public int getPrivacy() {
        return privacy;
    }

    public void setPrivacy(int privacy) {
        this.privacy = privacy;
    }

    public Photo getPhoto() {
        return photo;
    }

    public void setPhoto(Photo photo) {
        this.photo = photo;
    }

    @XmlAttribute(name = "attach")
    @JsonProperty("attach")
    public String getAttachmentType() {
        return attachmentType;
    }

    public void setAttachmentType(String attachmentType) {
        this.attachmentType = attachmentType;
    }

    @XmlTransient
    public int getReplies() {
        return replies;
    }

    public void setReplies(int replies) {
        this.replies = replies;
    }

    @XmlTransient
    public int getLikes() {
        return likes;
    }

    public void setLikes(int likes) {
        this.likes = likes;
    }

    @JsonProperty("repliesby")
    public String getRepliesBy() {
        return repliesBy;
    }

    public void setRepliesBy(String repliesBy) {
        this.repliesBy = repliesBy;
    }

    public Attachment getAttachment() {
        return attachment;
    }
    public void setAttachment(Attachment attachment) {
        this.attachment = attachment;
    }

    @XmlTransient
    public Instant getUpdated() {
        return updated;
    }

    public void setUpdated(Instant updated) {
        this.updated = updated;
    }

    @XmlTransient
    public boolean isUnread() {
        return unread;
    }

    public void setUnread(boolean unread) {
        this.unread = unread;
    }


    @XmlTransient
    public Set<Reaction> getReactions() {
        return reactions;
    }

    public void setReactions(Set<Reaction> reactions) {
        this.reactions = reactions;
    }

    @Override
    public int hashCode() {
        return Objects.hash(mid, rid);
    }

    public boolean isService() {
        return service;
    }

    public void setService(boolean service) {
        this.service = service;
    }
}