aboutsummaryrefslogtreecommitdiff
path: root/juick-server/src/main/java/com/juick/server/protocol/JuickProtocol.java
blob: eb57971222665656ca6ad06d23e44e333253b18b (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
package com.juick.server.protocol;

import com.juick.Message;
import com.juick.Tag;
import com.juick.User;
import com.juick.formatters.PlainTextFormatter;
import com.juick.json.MessageSerializer;
import com.juick.server.*;
import com.juick.server.protocol.annotation.UserCommand;
import com.juick.util.TagUtils;
import org.springframework.jdbc.core.JdbcTemplate;

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;

/**
 * Created by oxpa on 22.03.16.
 */

public class JuickProtocol {
    MessageSerializer json = new MessageSerializer();
    JdbcTemplate sql;
    String baseUri;

    public JuickProtocol(JdbcTemplate sql, String baseUri) {
        this.sql = sql;
        this.baseUri = baseUri;
    }

    /**
     * find command by pattern and invoke
     * @param user who send command
     * @param userInput given by user
     * @return command result
     * @throws InvocationTargetException
     * @throws IllegalAccessException
     * @throws NoSuchMethodException
     */
    public ProtocolReply getReply(User user, String userInput) throws InvocationTargetException,
            IllegalAccessException, NoSuchMethodException {
        Optional<Method> cmd =  Arrays.stream(getClass().getDeclaredMethods())
                .filter(m -> m.isAnnotationPresent(UserCommand.class))
                .filter(m -> Pattern.compile(m.getAnnotation(UserCommand.class).pattern(),
                        m.getAnnotation(UserCommand.class).patternFlags()).matcher(userInput).matches())
                .findFirst();
        if (!cmd.isPresent()) {
            // default command - post as new message
            return postMessage(user, userInput);
        } else {
            Matcher matcher = Pattern.compile(cmd.get().getAnnotation(UserCommand.class).pattern(),
                    cmd.get().getAnnotation(UserCommand.class).patternFlags()).matcher(userInput);
            List<String> groups = new ArrayList<>();
            while (matcher.find()) {
                for (int i = 1; i <= matcher.groupCount(); i++) {
                    groups.add(matcher.group(i));
                }
            }
            return (ProtocolReply) getClass().getMethod(cmd.get().getName(), User.class, String[].class)
                    .invoke(this, user, groups.toArray(new String[groups.size()]));
        }
    }

    public ProtocolReply postMessage(User user, String input) {
        List<Tag> tags = TagQueries.fromString(sql, input, false);
        String body = input.substring(TagUtils.toString(tags).length());
        int mid = MessagesQueries.createMessage(sql, user.getUid(), body, null, tags);
        SubscriptionsQueries.subscribeMessage(sql, mid, user.getUid());
        //app.events().publishEvent(new JuickMessageEvent(app.messages().getMessage(mid)));
        return new ProtocolReply("New message posted.\n#" + mid + " " + baseUri + mid,
                Optional.of(json.serializeList(Collections.singletonList(MessagesQueries.getMessage(sql, mid)))));
    }

    @UserCommand(pattern = "^#(\\++)$", help = "#+ - Show last Juick messages (#++ - second page, ...)")
    public ProtocolReply commandLast(User user, String... arguments) {
        // number of + is the page count
        int page = arguments[0].length() - 1;
        List<Integer> mids = MessagesQueries.getAll(sql, user.getUid(), page);
        List<Message> messages = MessagesQueries.getMessages(sql, mids);
        return new ProtocolReply("Last messages: \n" + String.join("\n", messages.stream().map(PlainTextFormatter::formatPost)
                .collect(Collectors.toList())), Optional.of(json.serializeList(messages)));
    }

    @UserCommand(pattern = "^\\s*bl\\s*$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "BL - Show your blacklist")
    public ProtocolReply commandBL(User user_from, String... arguments) {
        List<User> blusers;
        List<String> bltags;

        blusers = UserQueries.getUserBLUsers(sql, user_from.getUid());
        bltags = TagQueries.getUserBLTags(sql, user_from.getUid());


        String txt = "";
        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 new ProtocolReply(txt, Optional.empty());
    }

    @UserCommand(pattern = "^bl\\s+@([^\\s\\n\\+]+)", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "BL @username - add @username to your blacklist")
    public ProtocolReply blacklistUser(User from, String... arguments) {
        User blUser = UserQueries.getUserByName(sql, arguments[0]);
        if (blUser != null) {
            PrivacyQueries.PrivacyResult result = PrivacyQueries.blacklistUser(sql, from, blUser);
            if (result == PrivacyQueries.PrivacyResult.Added) {
                return new ProtocolReply("User added to your blacklist", Optional.empty());
            } else {
                return new ProtocolReply("User removed from your blacklist", Optional.empty());
            }
        }
        return new ProtocolReply("User not found", Optional.empty());
    }

    @UserCommand(pattern = "^bl\\s\\*(\\S+)$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "BL *tag - add *tag to your blacklist")
    public ProtocolReply blacklistTag(User from, String... arguments) {
        User blUser = UserQueries.getUserByName(sql, arguments[0]);
        if (blUser != null) {
            Tag tag = TagQueries.getTag(sql, arguments[0], false);
            if (tag != null) {
                PrivacyQueries.PrivacyResult result = PrivacyQueries.blacklistTag(sql, from, tag);
                if (result == PrivacyQueries.PrivacyResult.Added) {
                    return new ProtocolReply("Tag added to your blacklist", Optional.empty());
                } else {
                    return new ProtocolReply("Tag removed from your blacklist", Optional.empty());
                }
            }
        }
        return new ProtocolReply("Tag not found", Optional.empty());
    }

    @UserCommand(pattern = "@", help = "@ - Show recommendations and popular personal blogs")
    public ProtocolReply commandUsers(User currentUser, String... args) {
        StringBuilder msg = new StringBuilder();
        msg.append("Recommended blogs");
        List<String> recommendedUsers = ShowQueries.getRecommendedUsers(sql, currentUser);
        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 = ShowQueries.getTopUsers(sql);
        if (topUsers.size() > 0) {
            for (String user : topUsers) {
                msg.append("\n@").append(user);
            }
        } else {
            msg.append("\nNo top users. Empty DB? ;)");
        }
        return new ProtocolReply(msg.toString(), Optional.empty());
    }

    @UserCommand(pattern = "\\*", help = "* - Show your tags")
    public ProtocolReply commandTags(User currentUser, String... args) {
        List<Tag> tags = TagQueries.getUserTagsAll(sql, currentUser.getUid());
        String msg = "Your tags: (tag - messages)\n" +
                tags.stream()
                        .map(t -> String.format("\n*%s - %d", t.getName(), t.UsageCnt)).collect(Collectors.joining());
        return new ProtocolReply(msg, Optional.empty());
    }

    @UserCommand(pattern = "!", help = "! - Show your favorite messages")
    public ProtocolReply commandFavorites(User currentUser, String... args) {
        List<Integer> mids = MessagesQueries.getUserRecommendations(sql, currentUser.getUid(), 0);
        if (mids.size() > 0) {
            List<Message> messages = MessagesQueries.getMessages(sql, mids);
            return new ProtocolReply("Favorite messages: \n" + String.join("\n", messages.stream().map(PlainTextFormatter::formatPost)
                    .collect(Collectors.toList())), Optional.of(json.serializeList(messages)));
        }
        return new ProtocolReply("No favorite messages, try to \"like\" something ;)", Optional.empty());
    }

    @UserCommand(pattern = "^\\@([^\\s\\n\\+]+)(\\+?)$",
            help = "@username+ - Show user's info and last 10 messages (@username++ - second page, ..)")
    public ProtocolReply commandUser(User user, String... arguments) {
        User blogUser = UserQueries.getUserByName(sql, arguments[0]);
        int page = arguments[1].length();
        if (blogUser != null) {
            List<Integer> mids = MessagesQueries.getUserBlog(sql, blogUser.getUid(), 0, page);
            List<Message> messages = MessagesQueries.getMessages(sql, mids);
            return new ProtocolReply(String.format("Last messages from @%s:\n%s", arguments[0],
                    String.join("\n", messages.stream()
                            .map(Object::toString).collect(Collectors.toList()))),
                    Optional.of(json.serializeList(messages)));
        }
        return new ProtocolReply("User not found", Optional.empty());
    }

    @UserCommand(pattern = "^\\s*d\\s*\\#([0-9]+)\\s*$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "D #12345 - delete the message")
    public ProtocolReply commandDel(User user, String... args) {
        try {
            int mid = Integer.parseInt(args[0]);
            if (MessagesQueries.deleteMessage(sql, user.getUid(), mid)) {
                return new ProtocolReply(String.format("Message %s deleted", mid), Optional.empty());
            }
        } catch (NumberFormatException e) {
            return new ProtocolReply("Error", Optional.empty());
        }
        return new ProtocolReply("Error", Optional.empty());
    }

    @UserCommand(pattern = "^\\s*login\\s*$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "LOGIN - log in to Juick website")
    public ProtocolReply commandLogin(User user, String... arguments) {
        return new ProtocolReply(baseUri + "?" + UserQueries.getHashByUID(sql, user.getUid()),
                Optional.empty());
    }

    @UserCommand(pattern = "^(#+)$", help = "# - Show last messages from your feed (## - second page, ...)")
    public ProtocolReply commandMyFeed(User user, String... arguments) {
        // number of # is the page count
        int page = arguments[0].length() - 1;
        List<Integer> mids = MessagesQueries.getMyFeed(sql, user.getUid(), page);
        List<Message> messages = MessagesQueries.getMessages(sql, mids);
        // TODO: add instructions for empty feed
        return new ProtocolReply("Your feed: \n" + String.join("\n",
                messages.stream().map(PlainTextFormatter::formatPost).collect(Collectors.toList())),
                Optional.of(json.serializeList(messages)));
    }

    @UserCommand(pattern = "^\\s*(on|off)\\s*$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "ON/OFF - Enable/disable subscriptions delivery")
    public ProtocolReply commandOnOff(User user, String[] input) {
        UserQueries.ActiveStatus newStatus;
        String retValUpdated;
        if (input[0].toLowerCase().equals("on")) {
            newStatus = UserQueries.ActiveStatus.Active;
            retValUpdated = "Notifications are activated for " + user.getJid();
        } else {
            newStatus = UserQueries.ActiveStatus.Inactive;
            retValUpdated = "Notifications are disabled for " + user.getJid();
        }

        if (UserQueries.setActiveStatusForJID(sql, user.getJid(), newStatus)) {
            return new ProtocolReply(retValUpdated, Optional.empty());
        } else {
            return new ProtocolReply(String.format("Subscriptions status for %s was not changed", user.getJid()),
                    Optional.empty());
        }
    }

    @UserCommand(pattern = "^\\s*ping\\s*$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "PING - returns you a PONG")
    public ProtocolReply commandPing(User user, String[] input) {
        return new ProtocolReply("PONG", Optional.empty());
    }

    @UserCommand(pattern = "^\\@(\\S+)\\s+([\\s\\S]+)$", help = "@username message - send PM to username")
    public ProtocolReply commandPM(User user_from, String... arguments) {
        String user_to = arguments[0];
        String body = arguments[1];
        int ret = 0;

        int uid_to = 0;
        String jid_to = null;
        boolean haveInRoster = false;

        if (user_to.indexOf('@') > 0) {
            uid_to = UserQueries.getUIDbyJID(sql, user_to);
        } else {
            uid_to = UserQueries.getUIDbyName(sql, user_to);
        }

        if (uid_to > 0) {
            if (!UserQueries.isInBLAny(sql, uid_to, user_from.getUid())) {
                if (PMQueries.createPM(sql, user_from.getUid(), uid_to, body)) {
                    //jid_to = UserQueries.getJIDsbyUID(sql, uid_to);
                    if (jid_to != null) {
                        haveInRoster = PMQueries.havePMinRoster(sql, user_from.getUid(), jid_to);
                    }
                    ret = 200;
                } else {
                    ret = 500;
                }
            } else {
                ret = 403;
            }
        } else {
            ret = 404;
        }


        if (ret == 200) {
            Message jmsg = new Message();
            jmsg.setUser(user_from);
            jmsg.setText(body);
            // TODO: add PM payload
            //app.events().publishEvent(new JuickMessageEvent(jmsg));
            /* TODO: move to XMPP component
            if (jid_to != null) {
                Message mm = new Message();
                mm.to = new JID(jid_to);
                mm.type = Message.Type.chat;
                if (haveInRoster) {
                    mm.from = new JID(user_from.getName(), getDomain(), "Juick");
                    mm.body = body;
                } else {
                    mm.from = new JID("juick", getDomain(), "Juick");
                    mm.body = "Private message from @" + user_from.getName() + ":\n" + body;
                }
                return Collections.singletonList(mm);
            }
            */
        }
        if (ret == 200) {
            return new ProtocolReply("Private message sent", Optional.empty());
        } else {
            return new ProtocolReply("Error " + ret, Optional.empty());
        }
    }

    @UserCommand(pattern = "^#(\\d+)(\\+?)$", help = "#1234 - Show message (#1234+ - message with replies)")
    public ProtocolReply commandShow(User user, String... arguments) {
        boolean showReplies = arguments[1].length() > 0;
        int mid;
        try {
            mid = Integer.parseInt(arguments[0]);
        } catch (NumberFormatException e) {
            return new ProtocolReply("Error", Optional.empty());
        }
        Message msg = MessagesQueries.getMessage(sql, mid);
        if (msg != null) {
            if (showReplies) {
                List<Message> replies = MessagesQueries.getReplies(sql, mid);
                replies.add(0, msg);
                return new ProtocolReply(String.join("\n",
                        replies.stream().map(PlainTextFormatter::formatPost).collect(Collectors.toList())),
                        Optional.of(json.serializeList(replies)));
            }
            return new ProtocolReply(PlainTextFormatter.formatPost(msg), Optional.of(json.serializeList(Collections.singletonList(msg))));
        }
        return new ProtocolReply("Message not found", Optional.empty());
    }
    @UserCommand(pattern = "^(#|\\.)(\\d+)((\\.|\\-|\\/)(\\d+))?\\s([\\s\\S]+)",
    help = "#1234 *tag *tag2 - edit tags\n#1234 text - reply to message")
    public ProtocolReply EditOrReply(User user, String... args) {
        int mid;
        try {
            mid = Integer.parseInt(args[1]);
        } catch (NumberFormatException e) {
            return new ProtocolReply("Error", Optional.empty());
        }
        int rid;
        try {
            rid = Integer.parseInt(args[4]);
        } catch (NumberFormatException e) {
            rid = 0;
        }
        String txt = args[5];
        List<Tag> messageTags = TagQueries.fromString(sql, txt, true);
        if (messageTags.size() > 0) {
            if (user.getUid() != MessagesQueries.getMessageAuthor(sql, mid).getUid()) {
                return new ProtocolReply("It is not your message", Optional.empty());
            }
            TagQueries.updateTags(sql, mid, messageTags);
            return new ProtocolReply("Tags are updated", Optional.empty());
        } else {
            int newrid = MessagesQueries.createReply(sql, mid, rid, user.getUid(), txt, null);
            return new ProtocolReply("Reply posted.\n#" + mid + "/" + newrid + " "
                    + baseUri + mid + "/" + newrid,
                    Optional.of(json.serializeList(Collections.singletonList(MessagesQueries.getReply(sql, mid, newrid)))));
        }
    }

    @UserCommand(pattern = "^(s|u)\\s+#(\\d+)$", help = "S #1234 - subscribe to comments",
            patternFlags = Pattern.CASE_INSENSITIVE)
    public ProtocolReply commandSubscribeMessage(User user, String... args) {
        boolean subscribe = args[0].equalsIgnoreCase("s");
        int mid;
        try {
            mid = Integer.parseInt(args[1]);
        } catch (NumberFormatException e) {
            return new ProtocolReply("Error", Optional.empty());
        }
        if (subscribe) {
            if (SubscriptionsQueries.subscribeMessage(sql, mid, user.getUid())) {
                return new ProtocolReply("Subscribed", Optional.empty());
            }
        } else {
            if (SubscriptionsQueries.unSubscribeMessage(sql, mid, user.getUid())) {
                return new ProtocolReply("Unsubscribed from #" + mid, Optional.empty());
            }
            return new ProtocolReply("You was not subscribed to #" + mid, Optional.empty());
        }
        return new ProtocolReply("Error", Optional.empty());
    }
    @UserCommand(pattern = "^(s|u)\\s+\\@(\\S+)$", help = "S @user - subscribe to user's posts",
            patternFlags = Pattern.CASE_INSENSITIVE)
    public ProtocolReply commandSubscribeUser(User user, String... args) {
        boolean subscribe = args[0].equalsIgnoreCase("s");
        User toUser = UserQueries.getUserByName(sql, args[1]);
        if (toUser.getUid() > 0) {
            if (subscribe) {
                if (SubscriptionsQueries.subscribeUser(sql, user, toUser)) {
                    return new ProtocolReply("Subscribed", Optional.empty());
                    // TODO: notification
                    // TODO: already subscribed case
                }
            } else {
                if (SubscriptionsQueries.unSubscribeUser(sql, user, toUser)) {
                    return new ProtocolReply("Unsubscribed from @" + toUser.getName(), Optional.empty());
                }
                return new ProtocolReply("You was not subscribed to @" + toUser.getName(), Optional.empty());
            }
        }
        return new ProtocolReply("Error", Optional.empty());
    }
    @UserCommand(pattern = "^(s|u)\\s+\\*(\\S+)$", help = "S *tag - subscribe to tag" +
            "\nU *tag - unsubscribe from tag", patternFlags = Pattern.CASE_INSENSITIVE)
    public ProtocolReply commandSubscribeTag(User user, String... args) {
        boolean subscribe = args[0].equalsIgnoreCase("s");
        Tag tag = TagQueries.getTag(sql, args[1], true);
        if (subscribe) {
            if (SubscriptionsQueries.subscribeTag(sql, user, tag)) {
                return new ProtocolReply("Subscribed", Optional.empty());
            }
        } else {
            if (SubscriptionsQueries.unSubscribeTag(sql, user, tag)) {
                return new ProtocolReply("Unsubscribed from " + tag.getName(), Optional.empty());
            }
            return new ProtocolReply("You was not subscribed to " + tag.getName(), Optional.empty());
        }
        return new ProtocolReply("Error", Optional.empty());
    }

    @UserCommand(pattern = "^\\s*help\\s*$", patternFlags = Pattern.CASE_INSENSITIVE,
            help = "HELP - returns this help message")
    public ProtocolReply commandHelp(User user, String[] input) {
        List<String> commandsHelp = Arrays.stream(getClass().getDeclaredMethods())
                .filter(m -> m.isAnnotationPresent(UserCommand.class))
                .map(m -> m.getAnnotation(UserCommand.class).help())
                .collect(Collectors.toList());
        return new ProtocolReply(String.join("\n", commandsHelp), Optional.empty());
    }
}