agirbot/src/main/java/fr/imirhil/april/hebdobot/Meeting.java

114 lines
3.3 KiB
Java
Raw Normal View History

2011-09-02 19:09:09 +02:00
package fr.imirhil.april.hebdobot;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.apache.commons.lang.StringUtils;
2011-09-03 16:29:09 +02:00
import fr.imirhil.april.hebdobot.xml.UserService;
2011-09-02 19:09:09 +02:00
public class Meeting {
2011-09-03 16:29:09 +02:00
private static final UserService USER_SERVICE = new UserService();
private static final int LENGTH = 74;
2011-09-02 19:09:09 +02:00
private final Set<String> participants = new HashSet<String>();
private final List<IndividualTopic> individualTopics =
new LinkedList<IndividualTopic>();
private final List<CollectiveTopic> collectiveTopics =
new LinkedList<CollectiveTopic>();
private final List<Message> messages = new LinkedList<Message>();
public void add(final Topic topic) {
if (topic instanceof IndividualTopic) {
this.individualTopics.add((IndividualTopic) topic);
} else if (topic instanceof CollectiveTopic) {
this.collectiveTopics.add((CollectiveTopic) topic);
}
}
public void add(final Message message) {
this.messages.add(message);
this.participants.add(message.getAuthor());
}
@Override
public String toString() {
final StringBuffer buffer = new StringBuffer();
2011-09-03 16:29:09 +02:00
addBox(buffer, "Revue de la semaine en cours", '#');
2011-09-02 19:09:09 +02:00
buffer.append("\n");
2011-09-03 16:29:09 +02:00
buffer.append("\n");
addBox(buffer, "Participants", '=');
buffer.append("\n");
2011-09-02 19:09:09 +02:00
for (final String participant : this.participants) {
2011-09-03 16:29:09 +02:00
buffer.append("* " + Meeting.USER_SERVICE.getRealName(participant)
+ "\n");
2011-09-02 19:09:09 +02:00
}
buffer.append("\n");
2011-09-03 16:29:09 +02:00
if (!this.individualTopics.isEmpty()) {
2011-09-02 19:09:09 +02:00
buffer.append("\n");
2011-09-03 16:29:09 +02:00
addBox(buffer, "Sujets individuels", '=');
for (final String participant : this.participants) {
2011-09-02 19:09:09 +02:00
buffer.append("\n");
2011-09-03 16:29:09 +02:00
buffer.append(getLine(
Meeting.USER_SERVICE.getRealName(participant), '-'));
for (final IndividualTopic topic : this.individualTopics) {
buffer.append("\n");
buffer.append(getTopic(topic));
buffer.append("\n");
for (final Message message : topic.getMessages(participant)) {
buffer.append("* " + message.getContent() + "\n");
}
2011-09-02 19:09:09 +02:00
}
}
buffer.append("\n");
}
2011-09-03 16:29:09 +02:00
if (!this.collectiveTopics.isEmpty()) {
2011-09-02 19:09:09 +02:00
buffer.append("\n");
2011-09-03 16:29:09 +02:00
addBox(buffer, "Sujets collectifs", '=');
for (final CollectiveTopic topic : this.collectiveTopics) {
buffer.append("\n");
addBox(buffer, topic.getTitle(), '-');
for (final Message message : topic.getMessages()) {
buffer.append("* " + message.getAuthor() + " : "
+ message.getContent() + "\n");
}
2011-09-02 19:09:09 +02:00
}
2011-09-03 16:29:09 +02:00
buffer.append("\n");
2011-09-02 19:09:09 +02:00
}
buffer.append("\n");
2011-09-03 16:29:09 +02:00
addBox(buffer, "Log complet", '=');
buffer.append("\n");
2011-09-02 19:09:09 +02:00
for (final Message message : this.messages) {
buffer.append("* " + message.getAuthor() + " : "
+ message.getContent() + "\n");
}
return buffer.toString();
}
2011-09-03 16:29:09 +02:00
private static String getLine(final Character c) {
return StringUtils.repeat(c.toString(), LENGTH) + "\n";
}
2011-09-02 19:09:09 +02:00
private static String getLine(final String content, final Character c) {
2011-09-03 16:29:09 +02:00
return StringUtils.center(" " + content + " ", LENGTH, c) + "\n";
2011-09-02 19:09:09 +02:00
}
private static String getTopic(final Topic topic) {
2011-09-03 16:29:09 +02:00
return "=== " + topic.getTitle() + " ===";
}
private static void addBox(final StringBuffer buffer, final String title,
final Character c) {
buffer.append(getLine(c));
buffer.append(getLine(title, ' '));
buffer.append(getLine(c));
2011-09-02 19:09:09 +02:00
}
}