aboutsummaryrefslogtreecommitdiff
path: root/juick-server/src/main/java/com/juick/server/CommandsManager.java
blob: 6b6b3e536c6c9543da4424744842d5bd90a251e8 (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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/*
 * 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.server;

import com.juick.Tag;
import com.juick.User;
import com.juick.formatters.PlainTextFormatter;
import com.juick.server.component.LikeEvent;
import com.juick.server.component.MessageEvent;
import com.juick.server.component.PingEvent;
import com.juick.server.component.SubscribeEvent;
import com.juick.server.helpers.TagStats;
import com.juick.server.xmpp.helpers.annotation.UserCommand;
import com.juick.service.*;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.math.NumberUtils;
import org.apache.commons.lang3.reflect.MethodUtils;
import org.ocpsoft.prettytime.PrettyTime;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.stereotype.Component;
import rocks.xmpp.addr.Jid;

import javax.annotation.PostConstruct;
import javax.inject.Inject;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Collectors;

/**
 *
 * @author ugnich
 */
@Component
public class CommandsManager {
    private PrettyTime pt;
    @Inject
    private MessagesService messagesService;
    @Inject
    private UserService userService;
    @Inject
    private TagService tagService;
    @Inject
    private PMQueriesService pmQueriesService;
    @Inject
    private ShowQueriesService showQueriesService;
    @Inject
    private PrivacyQueriesService privacyQueriesService;
    @Inject
    private SubscriptionService subscriptionService;
    @Inject
    private ApplicationEventPublisher applicationEventPublisher;

    @PostConstruct
    public void init() {
        pt = new PrettyTime(new Locale("ru"));
    }


    public Optional<String> processCommand(User user, Jid from, String input) throws InvocationTargetException,
            IllegalAccessException, NoSuchMethodException {
        Optional<Method> cmd = MethodUtils.getMethodsListWithAnnotation(getClass(), UserCommand.class).stream()
                .filter(m -> Pattern.compile(m.getAnnotation(UserCommand.class).pattern(),
                        m.getAnnotation(UserCommand.class).patternFlags()).matcher(input).matches())
                .findFirst();
        if (cmd.isPresent()) {
            Matcher matcher = Pattern.compile(cmd.get().getAnnotation(UserCommand.class).pattern(),
                    cmd.get().getAnnotation(UserCommand.class).patternFlags()).matcher(input);
            List<String> groups = new ArrayList<>();
            while (matcher.find()) {
                for (int i = 1; i <= matcher.groupCount(); i++) {
                    groups.add(matcher.group(i));
                }
            }
            return Optional.of((String) getClass().getMethod(cmd.get().getName(), User.class, Jid.class, String[].class)
                    .invoke(this, user, from, groups.toArray(new String[groups.size()])));
        }
        return Optional.empty();
    }

    @UserCommand(pattern = "^ping$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "PING - returns you a PONG")
    public String commandPing(User user, Jid from, String[] input) {
        applicationEventPublisher.publishEvent(new PingEvent(this, user));
        return "PONG";
    }

    @UserCommand(pattern = "^help$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "HELP - returns this help message")
    public String commandHelp(User user, Jid from, String[] input) {
        return Arrays.stream(getClass().getDeclaredMethods())
                .filter(m -> m.isAnnotationPresent(UserCommand.class))
                .map(m -> m.getAnnotation(UserCommand.class).help())
                .collect(Collectors.joining("\n"));
    }

    @UserCommand(pattern = "^login$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "LOGIN - log in to Juick website")
    public String commandLogin(User user_from, Jid from, String[] input) {
        return "http://juick.com/login?hash=" + userService.getHashByUID(user_from.getUid());
    }
    @UserCommand(pattern = "^\\@(\\S+)\\s+([\\s\\S]+)$", help = "@username message - send PM to username")
    public String commandPM(User user_from, Jid from, String... arguments) {
        String body = arguments[1];

        User user_to = userService.getUserByName(arguments[0]);

        if (user_to.getUid() > 0) {
            if (!userService.isInBLAny(user_to.getUid(), user_from.getUid())) {
                if (pmQueriesService.createPM(user_from.getUid(), user_to.getUid(), body)) {
                    com.juick.Message jmsg = new com.juick.Message();
                    jmsg.setUser(user_from);
                    jmsg.setTo(user_to);
                    jmsg.setText(body);
                    applicationEventPublisher.publishEvent(new MessageEvent(this, jmsg));
                    return "Private message sent";
                }
            }
        }
        return "Error";
    }
    @UserCommand(pattern = "^bl$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "BL - Show your blacklist")
    public String commandBLShow(User user_from, Jid from, String... arguments) {
        List<User> blusers = userService.getUserBLUsers(user_from.getUid());
        List<String> bltags = tagService.getUserBLTags(user_from.getUid());

        String txt = StringUtils.EMPTY;
        if (bltags.size() > 0) {
            for (String bltag : bltags) {
                txt += "*" + bltag + "\n";
            }

            if (blusers.size() > 0) {
                txt += "\n";
            }
        }
        if (blusers.size() > 0) {
            for (User bluser : blusers) {
                txt += "@" + bluser.getName() + "\n";
            }
        }
        if (txt.isEmpty()) {
            txt = "You don't have any users or tags in your blacklist.";
        }

        return txt;
    }

    @UserCommand(pattern = "^#\\+$", help = "#+ - Show last Juick messages")
    public String commandLast(User user_from, Jid from, String... arguments) {
        return "Last messages:\n"
                + printMessages(messagesService.getAll(user_from.getUid(), 0), true);
    }

    @UserCommand(pattern = "@", help = "@ - Show recommendations and popular personal blogs")
    public String commandUsers(User user_from, Jid from, String... arguments) {
        StringBuilder msg = new StringBuilder();
        msg.append("Recommended blogs");
        List<String> recommendedUsers = showQueriesService.getRecommendedUsers(user_from);
        if (recommendedUsers.size() > 0) {
            for (String user : recommendedUsers) {
                msg.append("\n@").append(user);
            }
        } else {
            msg.append("\nNo recommendations now. Subscribe to more blogs. ;)");
        }
        msg.append("\n\nTop 10 personal blogs:");
        List<String> topUsers = showQueriesService.getTopUsers();
        if (topUsers.size() > 0) {
            for (String user : topUsers) {
                msg.append("\n@").append(user);
            }
        } else {
            msg.append("\nNo top users. Empty DB? ;)");
        }
        return msg.toString();
    }
    @UserCommand(pattern = "^bl\\s+@([^\\s\\n\\+]+)", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "BL @username - add @username to your blacklist")
    public String blacklistUser(User user_from, Jid from, String... arguments) {
        User blUser = userService.getUserByName(arguments[0]);
        if (blUser != null) {
            PrivacyQueriesService.PrivacyResult result = privacyQueriesService.blacklistUser(user_from, blUser);
            if (result == PrivacyQueriesService.PrivacyResult.Added) {
                return "User added to your blacklist";
            } else {
                return "User removed from your blacklist";
            }
        }
        return "User not found";
    }
    @UserCommand(pattern = "^bl\\s\\*(\\S+)$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "BL *tag - add *tag to your blacklist")
    public String blacklistTag(User user_from, Jid from, String... arguments) {
        User blUser = userService.getUserByName(arguments[0]);
        if (blUser != null) {
            Tag tag = tagService.getTag(arguments[0], false);
            if (tag != null) {
                PrivacyQueriesService.PrivacyResult result = privacyQueriesService.blacklistTag(user_from, tag);
                if (result == PrivacyQueriesService.PrivacyResult.Added) {
                    return "Tag added to your blacklist";
                } else {
                    return "Tag removed from your blacklist";
                }
            }
        }
        return "Tag not found";
    }
    @UserCommand(pattern = "\\*", help = "* - Show your tags")
    public String commandTags(User currentUser, Jid from, String... args) {
        List<TagStats> tags = tagService.getUserTagStats(currentUser.getUid());
        String msg = "Your tags: (tag - messages)\n" +
                tags.stream()
                        .map(t -> String.format("\n*%s - %d", t.getTag().getName(), t.getUsageCount())).collect(Collectors.joining());
        return msg;
    }
    @UserCommand(pattern = "S", help = "S - Show your subscriptions")
    public String commandSubscriptions(User currentUser, Jid from, String... args) {
        List<User> friends = userService.getUserFriends(currentUser.getUid());
        List<String> tags = subscriptionService.getSubscribedTags(currentUser);
        String msg = friends.size() > 0 ? "You are subscribed to users:" + friends.stream().map(u -> "\n@" + u.getName())
                .collect(Collectors.joining())
                : "You are not subscribed to any user.";
        msg += tags.size() > 0 ? "\nYou are subscribed to tags:" + tags.stream().map(t -> "\n*" + t)
                .collect(Collectors.joining())
                : "\nYou are not subscribed to any tag.";
        return msg;
    }
    @UserCommand(pattern = "!", help = "! - Show your favorite messages")
    public String commandFavorites(User currentUser, Jid from, String... args) {
        List<Integer> mids = messagesService.getUserRecommendations(currentUser.getUid(), 0);
        if (mids.size() > 0) {
            return "Favorite messages: \n" + printMessages(mids, false);
        }
        return "No favorite messages, try to \"like\" something ;)";
    }
    @UserCommand(pattern = "^\\!\\s+#(\\d+)", help = "! #12345 - recommend message")
    public String commandRecommend(User user, Jid from, String... arguments) {
        int mid = NumberUtils.toInt(arguments[0], 0);
        if (mid > 0) {
            com.juick.Message msg = messagesService.getMessage(mid);
            if (msg != null) {
                if (msg.getUser() == user) {
                    return "You can't recommend your own messages.";
                }
                MessagesService.RecommendStatus status = messagesService.recommendMessage(mid, user.getUid());
                switch (status) {
                    case Added:
                        applicationEventPublisher.publishEvent(new LikeEvent(this, user, msg));
                        return "Message is added to your recommendations";
                    case Deleted:
                        return "Message deleted from your recommendations.";
                }
            }
            return "Message not found";
        }
        return "Message not found";
    }
    // TODO: target notification
    @UserCommand(pattern = "^(s|u)\\s+\\@(\\S+)$", help = "S @username - subscribe to user" +
            "\nU @username - unsubscribe from user", patternFlags = Pattern.CASE_INSENSITIVE)
    public String commandSubscribeUser(User user, Jid from, String... args) {
        boolean subscribe = args[0].equalsIgnoreCase("s");
        User toUser = userService.getUserByName(args[1]);
        if (subscribe) {
            if (subscriptionService.subscribeUser(user, toUser)) {
                // TODO: already subscribed case
                applicationEventPublisher.publishEvent(new SubscribeEvent(this, user, toUser));
                return "Subscribed to @" + toUser.getName();
            }
        } else {
            if (subscriptionService.unSubscribeUser(user, toUser)) {
                return "Unsubscribed from @" + toUser.getName();
            }
            return "You was not subscribed to @" + toUser.getName();
        }
        return "Error";
    }
    @UserCommand(pattern = "^(s|u)\\s+\\*(\\S+)$", help = "S *tag - subscribe to tag" +
            "\nU *tag - unsubscribe from tag", patternFlags = Pattern.CASE_INSENSITIVE)
    public String commandSubscribeTag(User user, Jid from, String... args) {
        boolean subscribe = args[0].equalsIgnoreCase("s");
        Tag tag = tagService.getTag(args[1], true);
        if (subscribe) {
            if (subscriptionService.subscribeTag(user, tag)) {
                return "Subscribed";
            }
        } else {
            if (subscriptionService.unSubscribeTag(user, tag)) {
                return "Unsubscribed from " + tag.getName();
            }
            return "You was not subscribed to " + tag.getName();
        }
        return "Error";
    }
    @UserCommand(pattern = "^(s|u)\\s+#(\\d+)$", help = "S #1234 - subscribe to comments" +
            "\nU #1234 - unsubscribe from comments", patternFlags = Pattern.CASE_INSENSITIVE)
    public String commandSubscribeMessage(User user, Jid from, String... args) {
        boolean subscribe = args[0].equalsIgnoreCase("s");
        int mid = NumberUtils.toInt(args[1], 0);
        if (messagesService.getMessage(mid) != null) {
            if (subscribe) {
                if (subscriptionService.subscribeMessage(mid, user.getUid())) {
                    return "Subscribed";
                }
            } else {
                if (subscriptionService.unSubscribeMessage(mid, user.getUid())) {
                    return "Unsubscribed from #" + mid;
                }
                return "You was not subscribed to #" + mid;
            }
        }
        return "Error";
    }
    @UserCommand(pattern = "^(on|off)$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "ON/OFF - Enable/disable subscriptions delivery")
    public String commandOnOff(User user, Jid from, String[] input) {
        UserService.ActiveStatus newStatus;
        String retValUpdated;
        if (input[0].toLowerCase().equals("on")) {
            newStatus = UserService.ActiveStatus.Active;
            retValUpdated = "Notifications are activated for " + from.asBareJid().toEscapedString();
        } else {
            newStatus = UserService.ActiveStatus.Inactive;
            retValUpdated = "Notifications are disabled for " + from.asBareJid().toEscapedString();
        }

        if (userService.setActiveStatusForJID(from.asBareJid().toEscapedString(), newStatus)) {
            return retValUpdated;
        } else {
            return String.format("Subscriptions status for %s was not changed", from.toEscapedString());
        }
    }
    @UserCommand(pattern = "^\\@([^\\s\\n\\+]+)(\\+?)$",
            help = "@username+ - Show user's info and last 20 messages")
    public String commandUser(User user, Jid from, String... arguments) {
        User blogUser = userService.getUserByName(arguments[0]);
        int page = arguments[1].length();
        if (blogUser.getUid() > 0) {
            List<Integer> mids = messagesService.getUserBlog(blogUser.getUid(), 0, 0);
            return String.format("Last messages from @%s:\n%s", arguments[0],
                    printMessages(mids, false));
        }
        return "User not found";
    }
    @UserCommand(pattern = "^#(\\d+)(\\+?)$", help = "#1234 - Show message (#1234+ - message with replies)")
    public String commandShow(User user, Jid from, String... arguments) {
        boolean showReplies = arguments[1].length() > 0;
        int mid = NumberUtils.toInt(arguments[0], 0);
        if (mid == 0) {
            return "Error";
        }
        com.juick.Message msg = messagesService.getMessage(mid);
        if (msg != null) {
            if (showReplies) {
                List<com.juick.Message> replies = messagesService.getReplies(mid);
                replies.add(0, msg);
                return String.join("\n",
                        replies.stream().map(PlainTextFormatter::formatPostSummary).collect(Collectors.toList()));
            }
            return PlainTextFormatter.formatPost(msg);
        }
        return "Message not found";
    }
    @UserCommand(pattern = "^#(\\d+)\\/(\\d+)$", help = "#1234/5 - Show reply")
    public String commandShowReply(User user, Jid from, String... arguments) {
        int mid = NumberUtils.toInt(arguments[0], 0);
        int rid = NumberUtils.toInt(arguments[1], 0);
        com.juick.Message reply = messagesService.getReply(mid, rid);
        if (reply != null) {
            return PlainTextFormatter.formatPost(reply);
        }
        return "Reply not found";
    }
    @UserCommand(pattern = "^\\*(\\S+)(\\+?)$", help = "*tag - Show last messages with tag")
    public String commandShowTag(User user, Jid from, String... arguments) {
        Tag tag = tagService.getTag(arguments[0], false);
        if (tag != null) {
            // TODO: synonims
            List<Integer> mids = messagesService.getTag(tag.TID, user.getUid(), 0, 10);
            return "Last messages with *" + tag.getName() + ":\n" + printMessages(mids, true);
        }
        return "Tag not found";
    }
    @UserCommand(pattern = "^D #(\\d+)$", help = "D #1234 - Delete post", patternFlags = Pattern.CASE_INSENSITIVE)
    public String commandDeletePost(User user, Jid from, String... args) {
        int mid = Integer.valueOf(args[0]);
        if (messagesService.deleteMessage(user.getUid(), mid)) {
            return "Message deleted";
        }
        return "This is not your message";
    }
    @UserCommand(pattern = "^D #(\\d+)(\\.|\\-|\\/)(\\d+)$", help = "D #1234/5 - Delete comment", patternFlags = Pattern.CASE_INSENSITIVE)
    public String commandDeleteReply(User user, Jid from, String... args) {
        int mid = Integer.valueOf(args[0]);
        int rid = Integer.valueOf(args[2]);
        if (messagesService.deleteReply(user.getUid(), mid, rid)) {
            return "Reply deleted";
        } else {
            return "This is not your reply";
        }
    }
    @UserCommand(pattern = "^(D L|DL|D LAST)$", help = "D L - Delete last message", patternFlags = Pattern.CASE_INSENSITIVE)
    public String commandDeleteLast(User user, Jid from, String... args) {
        return "Temporarily unavailable";
    }
    @UserCommand(pattern = "^\\?\\s+\\@([a-zA-Z0-9\\-\\.\\@]+)\\s+([\\s\\S]+)$", help = "? @user string - search in user messages")
    public String commandSearch(User user, Jid from, String... args) {
        return "Temporarily unavailable";
    }
    @UserCommand(pattern = "^\\?\\s+([\\s\\S]+)$", help = "? string - search in all messages")
    public String commandSearchAll(User user, Jid from, String... args) {
        return "Temporarily unavailable";
    }
    @UserCommand(pattern = "^(#+)$", help = "# - Show last messages from your feed (## - second page, ...)")
    public String commandMyFeed(User user, Jid from, String... arguments) {
        // number of # is the page count
        int page = arguments[0].length() - 1;
        List<Integer> mids = messagesService.getMyFeed(user.getUid(), page, false);
        if (mids.size() > 0) {
            return "Your feed: \n" + printMessages(mids, true);
        }
        return "Your feed is empty";
    }
    @UserCommand(pattern = "^(#|\\.)(\\d+)((\\.|\\-|\\/)(\\d+))?\\s([\\s\\S]+)",
            help = "#1234 *tag *tag2 - edit tags\n#1234 text - reply to message")
    public String EditOrReply(User user, Jid from, String... args) {
        int mid = NumberUtils.toInt(args[1]);
        int rid = NumberUtils.toInt(args[4], 0);
        String txt = args[5];
        List<Tag> messageTags = tagService.fromString(txt, true);
        if (messageTags.size() > 0) {
            if (user.getUid() != messagesService.getMessageAuthor(mid).getUid()) {
                return "It is not your message";
            }
            tagService.updateTags(mid, messageTags);
            return "Tags are updated";
        } else {
            int newrid = messagesService.createReply(mid, rid, user.getUid(), txt, null);
            applicationEventPublisher.publishEvent(new MessageEvent(this, messagesService.getReply(mid, newrid)));
            return "Reply posted.\n#" + mid + "/" + newrid + " "
                    + "https://juick.com/" + mid + "#" + newrid;
        }
    }

    String printMessages(List<Integer> mids, boolean crop) {
        return messagesService.getMessages(mids).stream()
                .sorted(Collections.reverseOrder())
                .map(PlainTextFormatter::formatPostSummary).collect(Collectors.joining("\n\n"));
    }
}