aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/juick/service/SubscriptionServiceImpl.java
blob: 4aa5b5ac8c62ebf0ce759efe97971ee69fb7b19b (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
/*
 * Copyright (C) 2008-2023, 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.service;

import com.juick.model.Message;
import com.juick.model.Tag;
import com.juick.model.User;
import com.juick.util.MessageUtils;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.IteratorUtils;
import org.apache.commons.collections4.ListUtils;
import org.springframework.dao.DataIntegrityViolationException;
import org.springframework.dao.DuplicateKeyException;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

import javax.annotation.Nonnull;
import javax.inject.Inject;
import java.util.Collections;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * Created by aalexeev on 11/13/16.
 */
@Repository
public class SubscriptionServiceImpl extends BaseJdbcService implements SubscriptionService {
    @Inject
    private UserService userService;
    @Inject
    private MessagesService messagesService;
    @Inject
    private TagService tagService;

    @Transactional(readOnly = true)
    @Override
    public List<User> getSubscribedUsers(final int uid, final Message msg) {
        int mid = msg.getMid();
        User author = msg.getUser();

        List<User> subscribers = userService.getUserReaders(uid);
        List<User> mentionedUsers = userService.getUsersByName(MessageUtils.getMentions(msg).stream()
                .map(u -> u.substring(1))
                .toList()).stream()
                .filter(u -> !userService.isInBL(u.getUid(), msg.getUser().getUid()))
                .toList();
        List<User> users = ListUtils.union(subscribers, mentionedUsers);
        var tags = tagService.getMessageTags(mid);
        List<String> tagsStr = tags.stream().map(t -> t.getTag().getName())
                .toList();

        Set<Integer> set = users.stream()
                .filter(u -> !u.isBanned())
                .map(User::getUid)
                .filter(u -> Collections.disjoint(tagService.getUserBLTags(u), tagsStr))
                .collect(Collectors.toSet());

        if (!tags.isEmpty()) {
            List<Integer> tagUsers = getNamedParameterJdbcTemplate().queryForList(
                    "SELECT st.suser_id FROM subscr_tags st " +
                            "WHERE st.tag_id IN (:ids) AND st.suser_id != :uid " +
                            " AND NOT EXISTS (SELECT 1 FROM bl_users bu WHERE bu.bl_user_id = :authorUid and st.suser_id = bu.user_id)"
                            +
                            " AND NOT EXISTS (SELECT 1 FROM bl_tags bt WHERE bt.tag_id IN (:ids) and st.suser_id = bt.user_id)",
                    new MapSqlParameterSource()
                            .addValue("ids", tags.stream().map(t -> t.getTag().getId()).collect(Collectors.toList()))
                            .addValue("uid", uid)
                            .addValue("authorUid", author.getUid()),
                    Integer.class);
            set.addAll(tagUsers);
        }
        return userService.getUsersByID(set);
    }

    @Override
    public List<User> getUsersSubscribedToComments(@Nonnull final Message msg, @Nonnull final Message reply) {
        return getUsersSubscribedToComments(msg, reply, false);
    }

    @Transactional(readOnly = true)
    @Override
    public List<User> getUsersSubscribedToComments(@Nonnull final Message msg, @Nonnull final Message reply,
            boolean blacklisted) {
        List<User> subscribers = userService.getUsersByID(getJdbcTemplate().queryForList(
                "SELECT suser_id FROM subscr_messages WHERE message_id=? AND suser_id!=?",
                Integer.class,
                msg.getMid(), reply.getUser().getUid()));
        List<User> mentionedUsers = userService.getUsersByName(MessageUtils.getMentions(reply).stream()
                .map(u -> u.substring(1)).toList());
        List<User> users = IteratorUtils.toList(CollectionUtils.union(subscribers, mentionedUsers).iterator());
        if (!users.isEmpty()) {
            return users.stream()
                    .filter(u -> blacklisted || !u.isBanned() && !userService.isReplyToBL(u, reply))
                    .toList();
        }
        return Collections.emptyList();
    }

    @Override
    public List<User> getUsersSubscribedToUserRecommendations(final int uid, final Message msg) {
        List<String> msgTags = tagService.getMessageTags(msg.getMid()).stream().map(t -> t.getTag().getName())
                .toList();
        if (msg.getLikes() == 1) {
            return userService.getUserReaders(uid).stream()
                    .filter(u -> !u.equals(msg.getUser()))
                    .filter(u -> !userService.isInBLAny(u.getUid(), msg.getUser().getUid()))
                    .filter(u -> Collections.disjoint(tagService.getUserBLTags(u.getUid()),
                            msgTags))
                    .toList();
        }
        return Collections.emptyList();
    }

    @Transactional
    @Override
    public boolean subscribeMessage(final Message message, final User user) {
        try {
            boolean result = getJdbcTemplate().update(
                    "INSERT INTO subscr_messages(suser_id, message_id) VALUES (?, ?)",
                    user.getUid(), message.getMid()) == 1;
            messagesService.setLastReadComment(user, message.getMid(), message.getReplies());
            return result;
        } catch (DataIntegrityViolationException e) {
            return false;
        }
    }

    @Transactional
    @Override
    public boolean unSubscribeMessage(final int mid, final int vuid) {
        return getJdbcTemplate().update(
                "DELETE FROM subscr_messages WHERE message_id=? AND suser_id=?", mid, vuid) > 0;
    }

    @Transactional
    @Override
    public boolean subscribeUser(final User user, final User toUser) {
        try {
            return getJdbcTemplate().update(
                    "INSERT INTO subscr_users(user_id,suser_id) VALUES (?,?)", toUser.getUid(),
                    user.getUid()) == 1;
        } catch (DuplicateKeyException e) {
            return true;
        }
    }

    @Transactional
    @Override
    public boolean unSubscribeUser(final User user, final User fromUser) {
        return getJdbcTemplate().update(
                "DELETE FROM subscr_users WHERE suser_id=? AND user_id=?", user.getUid(),
                fromUser.getUid()) > 0;
    }

    @Transactional
    @Override
    public boolean subscribeTag(final User user, final Tag toTag) {
        try {

            return getJdbcTemplate().update(
                    "INSERT INTO subscr_tags(tag_id,suser_id) VALUES (?,?)", toTag.getId(),
                    user.getUid()) == 1;
        } catch (DuplicateKeyException e) {
            return true;
        }
    }

    @Transactional
    @Override
    public boolean unSubscribeTag(final User user, final Tag toTag) {
        return getJdbcTemplate().update(
                "DELETE FROM subscr_tags WHERE tag_id=? AND suser_id=?", toTag.getId(), user.getUid()) > 0;
    }

    @Transactional(readOnly = true)
    @Override
    public List<String> getSubscribedTags(User user) {
        return getJdbcTemplate().queryForList("SELECT tags.name FROM subscr_tags INNER JOIN tags " +
                "ON(tags.tag_id = subscr_tags.tag_id) " +
                "WHERE subscr_tags.suser_id=? ORDER BY tags.name", String.class, user.getUid());
    }
}