blob: 53dd19e4ed41813b1012e05fd9f47bce290339db (
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
|
package com.juick.command;
import com.juick.User;
import com.juick.formatters.PlainTextFormatter;
import com.juick.service.MessagesService;
import com.juick.service.UserService;
import lombok.Getter;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
/**
* @author ma1uta
*/
@Component
@Getter
public class ShowUserInfo extends MultiArgsCommand {
private static final Pattern PATTERN = Pattern.compile("^@([^\\s\\n+]+)(\\+?)$", Pattern.CASE_INSENSITIVE);
private final UserService userService;
private final MessagesService messagesService;
public ShowUserInfo(UserService userService, MessagesService messagesService) {
this.userService = userService;
this.messagesService = messagesService;
}
@Override
public Pattern pattern() {
return PATTERN;
}
@Override
public String help() {
return "@username+ - Show user's info and last 10 messages (@username++ - second page, ..)";
}
@Override
protected String execute(User sender, MessageListener protocolListener, String... arguments) {
User blogUser = getUserService().getUserByName(arguments[0]);
int page = arguments[1].length();
if (blogUser.getUid() > 0) {
List<Integer> mids = getMessagesService().getUserBlog(blogUser.getUid(), 0, page);
List<com.juick.Message> messages = getMessagesService().getMessages(mids);
return String.format("Last messages from @%s:\n%s", arguments[0],
String.join("\n", messages.stream()
.map(PlainTextFormatter::formatPost).collect(Collectors.toList())));
}
return "User not found";
}
}
|