aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/java/com/juick/www/controllers/User.java
blob: 443f7b08ec57f6b5bf24c4d4441354bc31931118 (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
/*
 * 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.www.controllers;

import com.juick.server.util.HttpForbiddenException;
import com.juick.server.util.HttpNotFoundException;
import com.juick.service.MessagesService;
import com.juick.service.TagService;
import com.juick.service.UserService;
import com.juick.server.util.UserUtils;
import com.juick.www.Utils;
import com.juick.www.WebApp;
import org.apache.commons.codec.CharEncoding;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.text.StringEscapeUtils;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.CookieValue;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.support.ServletUriComponentsBuilder;
import org.springframework.web.util.UriComponents;
import ru.sape.Sape;

import javax.inject.Inject;
import java.io.IOException;
import java.net.URLEncoder;
import java.util.List;
import java.util.stream.Collectors;

/**
 *
 * @author Ugnich Anton
 */
@Controller
public class User {
    @Inject
    WebApp webApp;
    @Inject
    UserService userService;
    @Inject
    TagService tagService;
    @Inject
    MessagesService messagesService;
    @Inject
    PageTemplates templates;
    @Inject
    private Sape sape;

    @GetMapping("/{uname}/")
    protected String doGetBlog(
            @RequestParam(required = false, name = "show") String paramShow,
            @RequestParam(required = false, name = "tag") String paramTagStr,
            @RequestParam(required = false, name = "search") String paramSearch,
            @PathVariable String uname,
            @RequestParam(required = false, defaultValue = "0") Integer before,
            @CookieValue(name = "sape_cookie", required = false, defaultValue = StringUtils.EMPTY) String sapeCookie,
            ModelMap model) throws IOException {
        com.juick.User user = userService.getUserByName(uname);
        com.juick.User visitor = UserUtils.getCurrentUser();
        if (user.isBanned()) {
            throw new HttpNotFoundException();
        }

        List<Integer> mids;

        com.juick.Tag paramTag = null;
        if (paramTagStr != null) {
            if (paramTagStr.length() < 64) {
                paramTag = tagService.getTag(paramTagStr, false);
            }
            if (paramTag == null) {
                throw new HttpNotFoundException();
            } else if (!paramTag.getName().equals(paramTagStr)) {
                String url = user.getName() + "/?tag=" + URLEncoder.encode(paramTag.getName(), CharEncoding.UTF_8);
                return "redirect:/" + url;
            }
        }
        if (paramSearch != null && paramSearch.length() > 64) {
            paramSearch = null;
        }

        int privacy = 0;
        if (visitor.getUid() > 0) {
            if (user.getUid() == visitor.getUid() || visitor.getUid() == 1) {
                privacy = -3;
            } else if (userService.isInWL(user.getUid(), visitor.getUid())) {
                privacy = -2;
            }
        }

        String title;
        if (paramShow == null) {
            if (paramTag != null) {
                title = "Блог " + user.getName() + ": *" + StringEscapeUtils.escapeHtml4(paramTag.getName());
                mids = messagesService.getUserTag(user.getUid(), paramTag.TID, privacy, before);
            } else if (paramSearch != null) {
                title = "Блог " + user.getName() + ": " + StringEscapeUtils.escapeHtml4(paramSearch);
                mids = messagesService.getUserSearch(user.getUid(), Utils.encodeSphinx(paramSearch), privacy, before);
            } else {
                title = "Блог " + user.getName();
                mids = messagesService.getUserBlog(user.getUid(), privacy, before);
            }
        } else if (paramShow.equals("recomm")) {
            title = "Рекомендации " + user.getName();
            mids = messagesService.getUserRecommendations(user.getUid(), before);
        } else if (paramShow.equals("photos")) {
            title = "Фотографии " + user.getName();
            mids = messagesService.getUserPhotos(user.getUid(), privacy, before);
        } else {
            throw new HttpNotFoundException();
        }

        String head = "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"@" +
                user.getName() + "\" href=\"//rss.juick.com/" + user.getName() + "/blog\"/>";
        if (paramTag != null && tagService.getTagNoIndex(paramTag.TID)) {
            head += "<meta name=\"robots\" content=\"noindex,nofollow\"/>";
        } else if (before > 0 || paramShow != null) {
            head += "<meta name=\"robots\" content=\"noindex\"/>";
        }
        model.addAttribute("title", title);
        model.addAttribute("headers", head);
        model.addAttribute("visitor", visitor);
        model.addAttribute("user", user);
        model.addAttribute("noindex", paramShow == null && before == 0);
        model.addAttribute("isSubscribed", userService.isSubscribed(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBL", userService.isInBL(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBLAny", userService.isInBLAny(user.getUid(), visitor.getUid()));
        model.addAttribute("statsIRead", userService.getStatsIRead(user.getUid()));
        model.addAttribute("statsMyReaders", userService.getStatsMyReaders(user.getUid()));
        model.addAttribute("statsMessages", userService.getStatsMessages(user.getUid()));
        model.addAttribute("statsReplies", userService.getStatsReplies(user.getUid()));
        model.addAttribute("iread", userService.getUserReadLeastPopular(user.getUid(), 8));
        model.addAttribute("tagStats", tagService.getUserTagStats(user.getUid())
                .stream().sorted((e1, e2) -> Integer.compare(e2.getUsageCount(), e1.getUsageCount())).limit(20).map(t -> t.getTag().getName()).collect(Collectors.toList()));
        model.addAttribute("paramTag", paramTag);
        List<com.juick.Message> msgs = messagesService.getMessages(mids);

        if (visitor.getUid() != 0) {
            List<Integer> blUIDs = userService.checkBL(visitor.getUid(),
                    msgs.stream().map(m -> m.getUser().getUid()).collect(Collectors.toList()));
            msgs.forEach(m -> m.ReadOnly |= blUIDs.contains(m.getUser().getUid()));
        }
        model.addAttribute("msgs", msgs);
        model.addAttribute("headers", head);
        model.addAttribute("showAdv",
                paramShow == null && before == 0 && paramSearch == null && visitor.getUid() == 0);
        if (mids.size() >= 20) {
            String nextpage = "?before=" + mids.get(mids.size() - 1);
            if (paramShow != null) {
                nextpage += "&amp;show=" + paramShow;
            }
            if (paramSearch != null) {
                nextpage += "&amp;search=" + URLEncoder.encode(paramSearch, CharEncoding.UTF_8);
            }

            if (paramTag != null) {
                nextpage += "&amp;tag=" + URLEncoder.encode(paramTag.getName(), CharEncoding.UTF_8);
            }

            String next = "<p class=\"page\"><a href=\"" + nextpage + "\" rel=\"prev\">Читать дальше →</a></p>";
            model.addAttribute("next", next);
        }
        UriComponents builder = ServletUriComponentsBuilder.fromCurrentRequestUri().build();
        String queryString = builder.getQuery();
        String requestURI = builder.toUri().getPath();
        if (sape != null && visitor.getUid() == 0 && queryString == null) {
            String links = sape.getPageLinks(requestURI, sapeCookie).render();
            model.addAttribute("links", links);
        }
        model.addAttribute("isModerator", visitor.getUid() == 3694);
        return "views/blog";
    }

    @GetMapping("/{uname}/tags")
    protected String doGetTags(@PathVariable String uname, ModelMap model) throws IOException {
        com.juick.User user = userService.getUserByName(uname);
        com.juick.User visitor = UserUtils.getCurrentUser();
        if (visitor.isBanned()) {
            throw new HttpNotFoundException();
        }

        model.addAttribute("title", "Теги " + user.getName());
        model.addAttribute("headers", "<meta name=\"robots\" content=\"noindex,nofollow\"/>");
        model.addAttribute("visitor", visitor);
        model.addAttribute("user", user);
        model.addAttribute("isSubscribed", userService.isSubscribed(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBL", userService.isInBL(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBLAny", userService.isInBLAny(user.getUid(), visitor.getUid()));
        model.addAttribute("statsIRead", userService.getStatsIRead(user.getUid()));
        model.addAttribute("statsMyReaders", userService.getStatsMyReaders(user.getUid()));
        model.addAttribute("statsMessages", userService.getStatsMessages(user.getUid()));
        model.addAttribute("statsReplies", userService.getStatsReplies(user.getUid()));
        model.addAttribute("iread", userService.getUserReadLeastPopular(user.getUid(), 8));
        model.addAttribute("tagStats", tagService.getUserTagStats(user.getUid())
                .stream().sorted((e1, e2) -> Integer.compare(e2.getUsageCount(), e1.getUsageCount())).limit(20).map(t -> t.getTag().getName()).collect(Collectors.toList()));
        model.addAttribute("tags", tagService.getUserTagStats(user.getUid()).stream()
                .sorted((e1, e2) -> Integer.compare(e2.getUsageCount(), e1.getUsageCount())).map(t -> t.getTag().getName()).collect(Collectors.toList()));

        return "views/blog_tags";
    }

    @GetMapping("/{uname}/friends")
    protected String doGetFriends(@PathVariable String uname, ModelMap model) throws IOException {
        com.juick.User user = userService.getUserByName(uname);
        com.juick.User visitor = UserUtils.getCurrentUser();
        if (visitor.isBanned()) {
            throw new HttpNotFoundException();
        }
        model.addAttribute("title", "Подписки " + user.getName());
        model.addAttribute("headers", "<meta name=\"robots\" content=\"noindex\"/>");
        model.addAttribute("visitor", visitor);
        model.addAttribute("user", user);
        model.addAttribute("isSubscribed", userService.isSubscribed(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBL", userService.isInBL(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBLAny", userService.isInBLAny(user.getUid(), visitor.getUid()));
        model.addAttribute("statsIRead", userService.getStatsIRead(user.getUid()));
        model.addAttribute("statsMyReaders", userService.getStatsMyReaders(user.getUid()));
        model.addAttribute("statsMessages", userService.getStatsMessages(user.getUid()));
        model.addAttribute("statsReplies", userService.getStatsReplies(user.getUid()));
        model.addAttribute("iread", userService.getUserReadLeastPopular(user.getUid(), 8));
        model.addAttribute("tagStats", tagService.getUserTagStats(user.getUid())
                .stream().sorted((e1, e2) -> Integer.compare(e2.getUsageCount(), e1.getUsageCount())).limit(20).map(t -> t.getTag().getName()).collect(Collectors.toList()));
        model.addAttribute("users", userService.getUserFriends(user.getUid()));

        return "views/users";
    }

    @GetMapping("/{uname}/readers")
    protected String doGetReaders(@PathVariable String uname, ModelMap model) throws IOException {
        com.juick.User user = userService.getUserByName(uname);
        com.juick.User visitor = UserUtils.getCurrentUser();
        if (visitor.isBanned()) {
            throw new HttpForbiddenException();
        }
        model.addAttribute("title", "Читатели " + user.getName());
        model.addAttribute("headers", "<meta name=\"robots\" content=\"noindex\"/>");
        model.addAttribute("visitor", visitor);
        model.addAttribute("user", user);
        model.addAttribute("isSubscribed", userService.isSubscribed(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBL", userService.isInBL(visitor.getUid(), user.getUid()));
        model.addAttribute("isInBLAny", userService.isInBLAny(user.getUid(), visitor.getUid()));
        model.addAttribute("statsIRead", userService.getStatsIRead(user.getUid()));
        model.addAttribute("statsMyReaders", userService.getStatsMyReaders(user.getUid()));
        model.addAttribute("statsMessages", userService.getStatsMessages(user.getUid()));
        model.addAttribute("statsReplies", userService.getStatsReplies(user.getUid()));
        model.addAttribute("iread", userService.getUserReadLeastPopular(user.getUid(), 8));
        model.addAttribute("tagStats", tagService.getUserTagStats(user.getUid())
                .stream().sorted((e1, e2) -> Integer.compare(e2.getUsageCount(), e1.getUsageCount())).limit(20).map(t -> t.getTag().getName()).collect(Collectors.toList()));
        model.addAttribute("users", userService.getUserReaders(user.getUid()));

        return "views/users";
    }
}