aboutsummaryrefslogtreecommitdiff
path: root/juick-core/src/main/java/com/juick/Message.java
blob: cb5fe92e88170985343638023fdcd46103155278 (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
/*
 * Juick
 * Copyright (C) 2008-2011, Ugnich Anton
 *
 * 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 java.util.*;
import java.util.stream.Collectors;

/**
 *
 * @author Ugnich Anton
 */
public class Message implements Comparable {

    private int MID = 0;
    
    private int RID = 0;

    @JsonProperty("replyto")
    public int ReplyTo = 0;
    private String Text = null;
    private User User = null;
    @JsonProperty("tags")
    public List<Tag> Tags = new ArrayList<>();
    private Date date;
    public int TimeAgo = 0;
    public int Privacy = 1;
    public boolean FriendsOnly = false;
    public boolean ReadOnly = false;
    public boolean Hidden = false;
    public boolean VisitorCanComment = true;
    public int Replies = 0;
    public String RepliesBy = null;
    public String AttachmentType = null;
    public String Photo = null;
    public String Video = null;
    public Place Place = null;
    public int Likes = 0;
    private boolean liked = false;
    public List<Message> childs = new ArrayList<>();
    private PM PM;
    private Recommendation Recommendation;

    public Message() {
    }

    public Message(Message msg) {
        setMID(msg.getMID());
        setRID(msg.getRID());
        ReplyTo = msg.ReplyTo;
        setText(msg.getText());
        setUser(msg.getUser());
        Tags = msg.Tags;
        setDate(msg.getDate());
        TimeAgo = msg.TimeAgo;
        Privacy = msg.Privacy;
        FriendsOnly = msg.FriendsOnly;
        ReadOnly = msg.ReadOnly;
        Hidden = msg.Hidden;
        Replies = msg.Replies;
        AttachmentType = msg.AttachmentType;
        Photo = msg.Photo;
        Video = msg.Video;
        Place = msg.Place;
        Likes = msg.Likes;
        setLiked(msg.isLiked());
        childs = msg.childs;
        PM = msg.PM;
        Recommendation = msg.Recommendation;
    }

    public void parseTags(String strTags) {
        if (strTags != null) {
            List<String> tags = Arrays.asList(strTags.split(" "));
            Tags.addAll(tags.stream().map(Tag::new).collect(Collectors.toList()));
        }
    }

    @Override
    public boolean equals(Object obj) {
        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 instanceof Message)) {
            throw new ClassCastException();
        }
        Message jmsg = (Message) obj;

        if (this.getMID() != jmsg.getMID()) {
            if (this.getMID() > jmsg.getMID()) {
                return -1;
            } else {
                return 1;
            }
        }

        if (this.getRID() != jmsg.getRID()) {
            if (this.getRID() < jmsg.getRID()) {
                return -1;
            } else {
                return 1;
            }
        }

        return 0;
    }

    public int getChildsCount() {
        int cnt = childs.size();
        for (Message child : childs) {
            cnt += child.getChildsCount();
        }
        return cnt;
    }

    public void cleanupChilds() {
        if (!childs.isEmpty()) {
            for (Message child : childs) {
                child.cleanupChilds();
            }
            childs.clear();
        }
    }

    public String getAttachmentURL() {
        if (AttachmentType != null) {
            String url = "http://i.juick.com/";
            url += AttachmentType.equals("mp4") ? "video" : "photos-1024";
            url += "/" + getMID();
            if (getRID() > 0) {
                url += "-" + getRID();
            }
            url += "." + AttachmentType;
            return url;
        } else {
            return null;
        }
    }
    @JsonIgnore
    public String getTagsString() {
        String ret = "";
        if (!Tags.isEmpty()) {
            for (Tag Tag : Tags) {
                ret += " *" + Tag.getName();
            }
            if (FriendsOnly) {
                ret += " *friends";
            }
            if (Privacy == -2) {
                ret += " *private";
            }
            if (Privacy == -1) {
                ret += " *friends";
            }
            if (Privacy == 2) {
                ret += " *public";
            }
            if (ReadOnly) {
                ret += " *readonly";
            }
        }
        return ret;
    }

    @JsonProperty("mid")
    public int getMID() {
        return MID;
    }

    public void setMID(int MID) {
        this.MID = MID;
    }

    @JsonProperty("rid")
    public int getRID() {
        return RID;
    }

    public void setRID(int RID) {
        this.RID = RID;
    }

    public com.juick.User getUser() {
        return User;
    }

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

    @JsonProperty("body")
    public String getText() {
        return Text;
    }

    public void setText(String text) {
        Text = text;
    }

    @JsonProperty("timestamp")
    @JsonFormat(shape= JsonFormat.Shape.STRING, pattern="yyyy-MM-dd HH:mm:ss", timezone="UTC")
    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {

        this.date = date;
    }

    public com.juick.PM getPM() {
        return PM;
    }

    public void setPM(com.juick.PM PM) {
        this.PM = PM;
    }

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

    public boolean isLiked() {
        return liked;
    }

    public void setLiked(boolean liked) {
        this.liked = liked;
    }
}