aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/juick/model/User.java
blob: 131ec1b1939677089e3c872297be8efbc4b7edf5 (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
/*
 * Copyright (C) 2008-2020, 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.model;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlTransient;

import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.builder.ToStringBuilder;

import javax.annotation.Nonnull;
import java.io.Serializable;
import java.net.URI;
import java.time.Instant;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;

/**
 * @author Ugnich Anton
 */
@XmlRootElement(name = "user", namespace = "http://juick.com/user")
@XmlAccessorType()
public class User implements Serializable {
    private int uid;
    private String name;
    private String avatar;
    private String fullName;
    private int messagesCount;
    private String authHash;
    private boolean banned;
    private String credentials;
    private List<ExternalToken> tokens;
    private List<User> read;
    private List<User> readers;
    private List<Integer> unread;
    private URI uri;
    private Instant seen;
    private boolean verified;
    private boolean service;
    private String country;
    private String url;
    private String description;
    private final List<TagStats> tagStats;

    public User() {
        tokens = new ArrayList<>();
        tagStats = new ArrayList<>();
        uri = URI.create(StringUtils.EMPTY);
    }

    @Override
    public boolean equals(Object obj) {
        return obj == this ||
                (obj instanceof User && ((User) obj).getUid() == this.getUid()
                        && ((User) obj).getUri().toString().equals(this.getUri().toString()));
    }

    @Override
    public int hashCode() {
        return Objects.hash(uid, uri);
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this)
                .append("uid", uid)
                .append("name", name)
                .append("fullName", fullName)
                .append("messagesCount", messagesCount)
                .append("banned", banned)
                .toString();
    }

    @JsonProperty("uid")
    @XmlAttribute(name = "uid")
    public int getUid() {
        return uid;
    }

    public void setUid(int uid) {
        this.uid = uid;
    }

    @JsonProperty("uname")
    @XmlAttribute(name = "uname")
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @JsonProperty("fullname")
    @XmlTransient
    public String getFullName() {
        return fullName;
    }

    public void setFullName(String fullName) {
        this.fullName = fullName;
    }

    @XmlTransient
    @JsonIgnore
    public String getAuthHash() {
        return authHash;
    }

    public void setAuthHash(String authHash) {
        this.authHash = authHash;
    }

    @JsonProperty("unreadCount")
    @XmlTransient
    public Integer getUnreadCount() {
        return messagesCount;
    }

    public void setUnreadCount(Integer count) {
        this.messagesCount = count;
    }

    @XmlTransient
    public boolean isBanned() {
        return banned;
    }

    public void setBanned(boolean banned) {
        this.banned = banned;
    }

    public String getAvatar() {
        return avatar;
    }

    public void setAvatar(String avatarUri) {
        this.avatar = avatarUri;
    }

    @XmlTransient
    @JsonIgnore
    public String getCredentials() {
        return credentials;
    }

    public void setCredentials(String credentials) {
        this.credentials = credentials;
    }

    @XmlTransient
    public int getMessagesCount() {
        return messagesCount;
    }

    public void setMessagesCount(int messagesCount) {
        this.messagesCount = messagesCount;
    }

    @XmlTransient
    @JsonIgnore
    public boolean isAnonymous() {
        return uid == 0;
    }

    @Nonnull
    public List<ExternalToken> getTokens() {
        return tokens;
    }

    public void setTokens(List<ExternalToken> tokens) {
        this.tokens = tokens;
    }

    public List<User> getRead() {
        return read;
    }
    public List<User> getReaders() {
        return readers;
    }

    public void setRead(List<User> read) {
        this.read = read;
    }

    public void setReaders(List<User> readers) {
        this.readers = readers;
    }

    public List<Integer> getUnread() {
        return unread;
    }

    public void setUnread(List<Integer> unread) {
        this.unread = unread;
    }

    @Nonnull
    @XmlTransient
    public URI getUri() {
        if (uri == null) {
            uri = URI.create(StringUtils.EMPTY);
        }
        return uri;
    }

    public void setUri(URI uri) {
        this.uri = uri;
    }

    public Instant getSeen() {
        return seen;
    }

    public void setSeen(Instant seen) {
        this.seen = seen;
    }

    @XmlTransient
    public boolean isVerified() {
        return verified;
    }

    public void setVerified(boolean verified) {
        this.verified = verified;
    }
    @XmlTransient
    public boolean isService() {
        return service;
    }
    public void setService(boolean service) {
        this.service = service;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public List<TagStats> getTagStats() {
        return tagStats;
    }
}