aboutsummaryrefslogtreecommitdiff
path: root/juick-commands/src/main/java/com/juick/command/Recommendations.java
blob: c7f3800327ede0b1e41fe38bbd9678309ecd0831 (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
package com.juick.command;

import com.juick.User;
import com.juick.server.protocol.ProtocolListener;
import com.juick.service.ShowQueriesService;
import lombok.Getter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.List;
import java.util.regex.Pattern;

/**
 * @author ma1uta
 */
@Component
@Getter
public class Recommendations implements Command {

    private static final Pattern PATTERN = Pattern.compile("@", Pattern.CASE_INSENSITIVE);

    private final ShowQueriesService showQueriesService;

    @Autowired
    public Recommendations(ShowQueriesService showQueriesService) {
        this.showQueriesService = showQueriesService;
    }

    @Override
    public Pattern pattern() {
        return PATTERN;
    }

    @Override
    public String help() {
        return "@ - Show recommendations and popular personal blogs";
    }

    @Override
    public String execute(User sender, ProtocolListener protocolListener, String command) {
        StringBuilder msg = new StringBuilder();
        msg.append("Recommended blogs");
        List<String> recommendedUsers = getShowQueriesService().getRecommendedUsers(sender);
        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 = getShowQueriesService().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();
    }
}