agirbot/src/org/april/hebdobot/model/Hebdobot.java

665 lines
24 KiB
Java
Raw Normal View History

2017-12-14 15:33:27 +01:00
/**
* Copyright (C) 2011-2013,2017 Nicolas Vinot <aeris@imirhil.fr>
* Copyright (C) 2017 Christian Pierre MOMON <cmomon@april.org>
*
* This file is part of (April) Hebdobot.
*
* Hebdobot 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.
*
* Hebdobot 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 Hebdobot. If not, see <http://www.gnu.org/licenses/>
*/
package org.april.hebdobot.model;
2011-09-30 00:35:49 +02:00
2017-12-15 01:07:05 +01:00
import java.io.File;
import java.io.IOException;
2018-01-03 02:51:35 +01:00
import java.nio.charset.StandardCharsets;
2011-09-30 00:35:49 +02:00
import java.util.Collection;
import org.apache.commons.collections.CollectionUtils;
2017-12-15 01:07:05 +01:00
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.april.hebdobot.HebdobotException;
2017-12-28 04:21:54 +01:00
import org.april.hebdobot.cron.CronManager;
import org.april.hebdobot.cron.CronSettings;
import org.april.hebdobot.identica.IdenticaSettings;
import org.april.hebdobot.pastebin.PastebinClient;
import org.april.hebdobot.pastebin.PastebinSettings;
2017-12-15 01:07:05 +01:00
import org.april.hebdobot.pastebin.Private;
import org.april.hebdobot.review.CollectiveTopic;
import org.april.hebdobot.review.IndividualTopic;
import org.april.hebdobot.review.Message;
import org.april.hebdobot.review.Review;
import org.april.hebdobot.review.Topic;
import org.april.hebdobot.twitter.TwitterClient;
import org.april.hebdobot.twitter.TwitterSettings;
import org.april.hebdobot.util.BuildInformation;
import org.jibble.pircbot.IrcException;
import org.jibble.pircbot.NickAlreadyInUseException;
2011-09-30 00:35:49 +02:00
import org.jibble.pircbot.PircBot;
2017-12-15 01:07:05 +01:00
import org.joda.time.DateTime;
import org.joda.time.format.ISODateTimeFormat;
2017-12-28 04:21:54 +01:00
import org.quartz.SchedulerException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2011-09-30 00:35:49 +02:00
import fr.devinsy.util.strings.StringsUtils;
import twitter4j.TwitterException;
2017-12-14 16:58:45 +01:00
/**
* The Class Hebdobot.
2017-12-14 16:58:45 +01:00
*/
public class Hebdobot extends PircBot
{
private static final Logger logger = LoggerFactory.getLogger(Hebdobot.class);
private File homeDirectory;
private String host;
private int port;
private String channel;
private File reviewDirectory;
private String reviewFileSuffix;
private Review review;
private IdenticaSettings identicaSettings;
private PastebinSettings pastebinSettings;
private TwitterSettings twitterSettings;
2017-12-28 04:21:54 +01:00
private CronSettings cronSettings;
2017-12-25 00:29:57 +01:00
private UserAliases aliases;
2017-12-28 04:21:54 +01:00
private CronManager cronManager;
2017-12-14 16:58:45 +01:00
/**
2018-01-04 23:28:30 +01:00
* Instantiates a new hebdobot.
2017-12-14 16:58:45 +01:00
*
* @param host
* the host
* @param port
* the port
* @param name
* the name
* @param channel
* the channel
2018-01-04 23:28:30 +01:00
* @param homeDirectory
* the home directory
2018-01-10 02:00:56 +01:00
* @param reviewDirectory
* the review directory
2018-01-04 23:28:30 +01:00
* @param reviewFileSuffix
* the review file suffix
2017-12-14 16:58:45 +01:00
*/
public Hebdobot(final String host, final int port, final String name, final String channel, final File homeDirectory, final File reviewDirectory,
final String reviewFileSuffix)
{
this.homeDirectory = homeDirectory;
this.host = host;
this.port = port;
this.channel = channel;
this.setName(name);
this.reviewDirectory = reviewDirectory;
this.reviewFileSuffix = reviewFileSuffix;
this.review = null;
this.identicaSettings = new IdenticaSettings();
this.pastebinSettings = new PastebinSettings();
this.twitterSettings = new TwitterSettings();
2017-12-28 04:21:54 +01:00
this.cronSettings = new CronSettings();
2017-12-25 00:29:57 +01:00
this.aliases = new UserAliases();
2017-12-28 04:21:54 +01:00
this.cronManager = null;
}
2017-12-14 16:58:45 +01:00
/**
* Close.
*/
public void close()
{
this.disconnect();
this.dispose();
}
/**
* Gets the aliases.
*
* @return the aliases
*/
2017-12-25 00:29:57 +01:00
public UserAliases getAliases()
{
return this.aliases;
}
/**
* Gets the cron settings.
*
* @return the cron settings
*/
2017-12-28 04:21:54 +01:00
public CronSettings getCronSettings()
{
return this.cronSettings;
}
/**
* Gets the home directory.
*
* @return the home directory
*/
public File getHomeDirectory()
{
return this.homeDirectory;
}
/**
* Gets the identica settings.
*
* @return the identica settings
*/
public IdenticaSettings getIdenticaSettings()
{
return this.identicaSettings;
}
/**
* Gets the pastebin settings.
*
* @return the pastebin settings
*/
public PastebinSettings getPastebinSettings()
{
return this.pastebinSettings;
}
/**
* Gets the twitter settings.
*
* @return the twitter settings
*/
public TwitterSettings getTwitterSettings()
{
return this.twitterSettings;
}
2017-12-14 16:58:45 +01:00
/**
2018-01-04 23:28:30 +01:00
* Notify irc.
2017-12-14 16:58:45 +01:00
*
2018-01-04 23:28:30 +01:00
* @param message
* the message
2017-12-14 16:58:45 +01:00
*/
2017-12-28 04:21:54 +01:00
public void notifyIrc(final String message)
{
2017-12-28 04:21:54 +01:00
sendMessage(message);
}
2017-12-28 04:21:54 +01:00
/**
* Notify twitter.
*
* @param message
* the message
*/
public void notifyTwitter(final String message)
{
if (this.twitterSettings.isValid())
{
try
{
TwitterClient twitter = new TwitterClient(this.twitterSettings.getConsumerKey(), this.twitterSettings.getConsumerSecret(),
this.twitterSettings.getAccessToken(), this.twitterSettings.getAccessTokenSecret());
twitter.tweet(message);
}
catch (TwitterException exception)
{
logger.error("Error in tweet", exception);
sendMessage("(pour information, la notification par Tweet a échoué : " + exception.getErrorMessage() + ")");
}
}
}
2017-12-14 16:58:45 +01:00
/* (non-Javadoc)
* @see org.jibble.pircbot.PircBot#onMessage(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
*/
@Override
2017-12-14 22:54:06 +01:00
protected void onMessage(final String channel, final String sender, final String login, final String hostname, final String message)
{
2017-12-14 16:58:45 +01:00
logger.debug("Message received - channel : {}, sender : {}, message : {}", channel, sender, message);
2017-12-14 16:58:45 +01:00
if (channel.equalsIgnoreCase(this.channel))
{
2017-12-14 22:54:06 +01:00
String text = message.trim();
2018-01-12 02:23:26 +01:00
if (this.review != null)
{
this.review.addRaw(new Message(sender, text));
}
if ((StringUtils.equalsIgnoreCase(text, "!aide")) || (StringUtils.equalsIgnoreCase(text, "!help")))
{
2017-12-25 00:29:57 +01:00
logger.info("!help caught.");
2017-12-14 22:54:06 +01:00
// Help.
sendMessage(sender, "Bienvenue " + sender);
sendMessage(sender, "Je suis " + getName() + ", le robot de gestion des revues hebdomadaires de l'APRIL.");
2017-12-24 11:25:45 +01:00
sendMessage(sender, "Voici les commandes que je comprends :");
2017-12-14 22:54:06 +01:00
sendMessage(sender, " ");
2018-01-12 02:23:26 +01:00
sendMessage(sender, " !aide  : afficher cette aide");
2018-01-08 19:03:11 +01:00
sendMessage(sender, " !debut : commencer une nouvelle revue");
sendMessage(sender, " # titre  : démarrer un sujet individuel");
sendMessage(sender, " ## titre  : démarrer un sujet collectif");
sendMessage(sender, " % message  : traiter comme un commentaire");
sendMessage(sender, " !courant : afficher le sujet en cours");
sendMessage(sender, " !manquants : afficher les participants qui n'ont pas répondu sur le dernier sujet");
sendMessage(sender, " !fin : terminer la revue en cours");
sendMessage(sender, " !stop  : abandonner la revue en cours");
2018-01-12 02:23:26 +01:00
sendMessage(sender, " !licence   : afficher la licence du logiciel Hebdobot et le lien vers ses sources");
sendMessage(sender, " !version   : afficher la version d'Hebdobot");
}
2017-12-14 22:54:06 +01:00
else if (StringUtils.equalsIgnoreCase(text, "!stop"))
{
2017-12-25 00:29:57 +01:00
logger.info("!stop caught.");
// Stop.
2017-12-14 22:54:06 +01:00
if (this.review == null)
{
sendMessage("Aucune revue en cours, abandon impossible.");
2017-12-14 16:58:45 +01:00
}
else
{
sendMessage("Abandon de la revue en cours.");
this.review = null;
}
}
else if (StringsUtils.equalsAnyIgnoreCase(text, "!debut", "!début"))
{
2017-12-25 00:29:57 +01:00
logger.info("!debut caught.");
2017-12-14 22:54:06 +01:00
// Start.
2017-12-28 04:21:54 +01:00
if (this.cronManager != null)
{
try
{
this.cronManager.shutdown();
}
catch (SchedulerException exception)
{
logger.warn("Scheduler shutdown failed.", exception);
}
}
2017-12-25 00:29:57 +01:00
this.review = new Review(sender, this.aliases);
2017-12-31 13:11:28 +01:00
sendMessage(sender, "Bonjour " + sender + ", vous êtes le conducteur de réunion.");
2017-12-14 22:54:06 +01:00
sendMessage(sender, "Pour terminer la réunion, tapez \"!fin\"");
sendMessage("% Début de la réunion hebdomadaire");
sendMessage("% rappel : toute ligne commençant par % sera considérée comme un commentaire et non prise en compte dans la synthèse");
sendMessage("% pour connaître le point courant, taper !courant");
}
2017-12-14 22:54:06 +01:00
else if (StringUtils.equalsIgnoreCase(text, "!fin"))
{
2017-12-25 00:29:57 +01:00
logger.info("!fin caught.");
2017-12-14 22:54:06 +01:00
// Stop.
if (this.review == null)
{
2017-12-14 22:54:06 +01:00
sendMessage(sender + ", pas de revue en cours.");
2017-12-14 16:58:45 +01:00
}
2017-12-14 22:54:06 +01:00
else if (!this.review.isOwner(sender))
2017-12-14 16:58:45 +01:00
{
2017-12-14 22:54:06 +01:00
sendMessage(sender + ", vous n'êtes pas le conducteur de la réunion");
}
2017-12-14 16:58:45 +01:00
else
{
2017-12-14 16:58:45 +01:00
{
String date = ISODateTimeFormat.basicDate().print(new DateTime());
String textReview = this.review.toString();
2017-12-26 02:16:40 +01:00
2017-12-25 00:29:57 +01:00
if (this.pastebinSettings.isValid())
2017-12-15 01:07:05 +01:00
{
logger.info("Pastebin the review.");
2017-12-25 00:29:57 +01:00
try
{
PastebinClient pastebinClient = new PastebinClient(this.pastebinSettings.getApiKey());
2017-12-25 00:29:57 +01:00
String returnValue = pastebinClient.paste(textReview, "Revue APRIL " + date, Private.UNLISTED);
2017-12-25 00:29:57 +01:00
sendMessage("% Compte-rendu de la revue : " + returnValue);
}
catch (final Exception exception)
{
logger.error("Error during Pastebin submit.", exception);
}
2017-12-15 01:07:05 +01:00
}
if (this.reviewFileSuffix != null)
2017-12-15 01:07:05 +01:00
{
logger.info("Write review file.");
2017-12-15 01:07:05 +01:00
try
{
if (!this.reviewDirectory.exists())
{
logger.info("Create review directory: " + this.reviewDirectory.getAbsolutePath());
this.reviewDirectory.mkdirs();
}
File file = new File(this.reviewDirectory, date + "_" + this.reviewFileSuffix);
2018-01-03 02:51:35 +01:00
FileUtils.writeStringToFile(file, textReview, StandardCharsets.UTF_8);
sendMessage("% Compte-rendu de la revue : " + file.getName());
2017-12-15 01:07:05 +01:00
}
catch (final Exception exception)
{
logger.error("Error during file generation", exception);
}
}
2017-12-14 16:58:45 +01:00
}
2017-12-14 22:54:06 +01:00
sendMessage("% " + this.review.getOwner()
+ ", ne pas oublier d'ajouter le compte-rendu de la revue sur https://agir.april.org/issues/135");
String participants = StringUtils.join(this.review.getParticipants(), " ");
sendMessage("% " + participants + ", pensez à noter votre bénévalo : http://www.april.org/my?action=benevalo");
sendMessage("% Fin de la revue hebdomadaire");
sendMessage(this.review.getOwner(), "Revue finie.");
2017-12-14 22:54:06 +01:00
this.review = null;
}
}
2017-12-14 22:54:06 +01:00
else if (text.matches("\\s*##.*"))
{
2017-12-25 00:29:57 +01:00
logger.info("\\s*##.* caught.");
2017-12-14 22:54:06 +01:00
// Collective topic, must be before individual topic.
if (this.review != null)
{
2017-12-14 22:54:06 +01:00
if (this.review.isOwner(sender))
2017-12-14 16:58:45 +01:00
{
2017-12-14 22:54:06 +01:00
CollectiveTopic topic = new CollectiveTopic(text.replaceFirst("##", "").trim());
if (!this.review.isEmpty())
2017-12-14 16:58:45 +01:00
{
String participants = StringUtils.join(this.review.getParticipants(), " ");
sendMessage(String.format("%% %s, on va passer à la suite : %s", participants, topic.getTitle()));
2017-12-14 16:58:45 +01:00
}
this.review.begin(topic);
sendMessage("Sujet collectif : " + topic.getTitle());
sendMessage("% 1 minute max");
2018-01-12 01:06:02 +01:00
sendMessage("% si rien à signaler vous pouvez écrire % ras");
sendMessage("% quand vous avez fini vous le dites par % fini");
2017-12-14 16:58:45 +01:00
}
else
{
2017-12-14 22:54:06 +01:00
sendMessage(sender + ", vous n'êtes pas le conducteur de la réunion");
2017-12-14 16:58:45 +01:00
}
}
}
2017-12-14 22:54:06 +01:00
else if (text.matches("\\s*#[^#].*"))
{
2017-12-25 00:29:57 +01:00
logger.info("\\s*#[^#].* caught.");
2017-12-14 22:54:06 +01:00
// Individual topic.
if (this.review != null)
{
2017-12-14 22:54:06 +01:00
if (this.review.isOwner(sender))
2017-12-14 16:58:45 +01:00
{
2017-12-14 22:54:06 +01:00
IndividualTopic topic = new IndividualTopic(text.replaceFirst("#", "").trim());
if (!this.review.isEmpty())
{
String participants = StringUtils.join(this.review.getParticipants(), " ");
sendMessage(String.format("%% %s, on va passer à la suite : %s", participants, topic.getTitle()));
}
2017-12-14 22:54:06 +01:00
this.review.begin(topic);
sendMessage("Sujet individuel : " + topic.getTitle());
2018-01-12 01:06:02 +01:00
sendMessage("% si rien à signaler vous pouvez écrire % ras");
2017-12-14 22:54:06 +01:00
sendMessage("% quand vous avez fini vous le dites par % fini");
2017-12-14 16:58:45 +01:00
}
else
{
sendMessage(sender + ", vous n'êtes pas le conducteur de la réunion");
}
}
2017-12-25 00:29:57 +01:00
}
else if (StringUtils.equalsIgnoreCase(text, "!manquants"))
{
logger.info("!manquants caught.");
// Missing.
if (this.review == null)
{
sendMessage("Pas de revue en cours.");
}
else
{
2017-12-25 00:29:57 +01:00
Topic topic = this.review.getCurrentTopic();
if (topic == null)
2017-12-14 16:58:45 +01:00
{
2017-12-25 00:29:57 +01:00
sendMessage("Aucun sujet traité");
2017-12-14 16:58:45 +01:00
}
else
{
2017-12-25 00:29:57 +01:00
Collection<String> participants = this.review.getParticipants();
Collection<String> currentParticipants = topic.getParticipants();
Collection<String> missing = CollectionUtils.subtract(participants, currentParticipants);
if (missing.isEmpty())
2017-12-14 16:58:45 +01:00
{
2017-12-25 00:29:57 +01:00
sendMessage("Aucun participant manquant \\o/");
2017-12-14 16:58:45 +01:00
}
else
{
2017-12-25 00:29:57 +01:00
sendMessage(String.format("Les participants suivants sont manquants : %1s", StringUtils.join(missing, ", ")));
2017-12-14 16:58:45 +01:00
}
}
}
2017-12-25 00:29:57 +01:00
}
else if (StringUtils.equalsIgnoreCase(text, "!courant"))
{
logger.info("!courant caught.");
// Current.
if (this.review == null)
{
2017-12-25 00:29:57 +01:00
sendMessage("Pas de revue en cours.");
}
2017-12-25 00:29:57 +01:00
else
2017-12-14 16:58:45 +01:00
{
2017-12-25 00:29:57 +01:00
Topic current = this.review.getCurrentTopic();
if (current == null)
2017-12-14 22:54:06 +01:00
{
2017-12-25 00:29:57 +01:00
sendMessage("% Pas de sujet en cours");
2017-12-14 22:54:06 +01:00
}
2017-12-25 00:29:57 +01:00
else if (current instanceof IndividualTopic)
2017-12-14 22:54:06 +01:00
{
2017-12-25 00:29:57 +01:00
sendMessage("% Sujet individuel en cours : " + current.getTitle());
2017-12-14 22:54:06 +01:00
}
2017-12-25 00:29:57 +01:00
else if (current instanceof CollectiveTopic)
{
sendMessage("% Sujet collectif en cours : " + current.getTitle());
}
}
}
else if (StringUtils.equalsIgnoreCase(text, "!statut"))
{
logger.info("!status caught.");
sendMessage(sender, sender + ", voici l'état d'Hebdobot :");
sendMessage(sender, " revue en cours : " + (this.review != null));
if (this.review == null)
{
sendMessage(sender, " animateur revue : none");
}
else
{
sendMessage(sender, " animateur revue : " + this.review.getOwner());
}
sendMessage(sender, " Alias settings : " + (this.aliases.size()));
sendMessage(sender, " Identica settings : " + (this.identicaSettings.isValid()));
sendMessage(sender, " Pastebin settings : " + (this.pastebinSettings.isValid()));
sendMessage(sender, " Twitter settings : " + (this.twitterSettings.isValid()));
sendMessage(sender, " Cron settings : " + (this.cronSettings.size()));
}
2017-12-28 14:17:38 +01:00
else if (StringsUtils.equalsAnyIgnoreCase(text, "!licence", "!license"))
{
logger.info("!licence caught.");
sendMessage(sender
+ ", Hebdobot est un logiciel libre de l'April sous licence GNU AGPL (sources : https://agir.april.org/projects/hebdobot/repository).");
}
else if (StringsUtils.equalsAnyIgnoreCase(text, "!version"))
{
logger.info("!version caught.");
sendMessage(new BuildInformation().toString());
}
2017-12-25 00:29:57 +01:00
else if (text.startsWith("%"))
{
logger.info("% caught.");
2018-01-12 02:23:26 +01:00
// Ignore.
2017-12-26 02:16:40 +01:00
}
else if (StringsUtils.equalsAnyIgnoreCase(text, "!salut", "!bonjour", "!hello"))
{
logger.info("!salut caught.");
2018-01-12 02:23:26 +01:00
// Salutation command.
sendMessage(sender + ", bonjour \\o/");
}
2017-12-26 02:16:40 +01:00
else if (text.startsWith("!"))
{
logger.info("!??? caught.");
// Command unknown.
// Do not answer because it can be a command to another bot.
2017-12-26 02:16:40 +01:00
}
else
{
logger.info("All the other caught.");
2017-12-26 02:16:40 +01:00
2017-12-25 00:29:57 +01:00
// Topic message.
if (this.review == null)
{
if ((StringsUtils.containsAnyIgnoreCase(text, "bonjour", "salut", "hello")) && (StringUtils.containsIgnoreCase(text, "hebdobot")))
{
sendMessage(sender + ", bonjour \\o/");
}
}
2017-12-14 16:58:45 +01:00
else
{
2017-12-25 00:29:57 +01:00
this.review.add(new Message(sender, text));
}
}
2017-12-14 22:54:06 +01:00
}
}
2018-01-04 09:39:47 +01:00
/* (non-Javadoc)
* @see org.jibble.pircbot.PircBot#onPrivateMessage(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
*/
@Override
protected void onPrivateMessage(final String sender, final String login, final String hostname, final String message)
{
logger.debug("Private message received - sender : {}, message : {}", sender, message);
String text = message.trim();
if (StringUtils.equalsIgnoreCase(text, "!vaten"))
{
logger.info("!die caught.");
// Die.
if (this.review == null)
{
try
{
sendMessage(sender + ", ok bye.");
sendMessage(sender, "ok bye.");
2018-01-04 09:39:47 +01:00
Thread.sleep(1000);
System.exit(0);
}
catch (InterruptedException exception)
{
logger.warn("Pause abort: " + exception.getMessage());
}
}
else
{
sendMessage("% Une revue est en cours, abandon impossible.");
}
}
else if (text.startsWith("!"))
{
logger.info("!??? caught.");
// Command unknown.
sendMessage(sender + ", command unknown: " + text);
}
else
{
// Nothing to say.
}
}
/**
2018-01-04 23:28:30 +01:00
* Run.
*
* @throws HebdobotException
2018-01-04 23:28:30 +01:00
* the hebdobot exception
*/
public void run() throws HebdobotException
{
try
{
2017-12-28 04:21:54 +01:00
logger.info("Cron initializing.");
{
this.cronManager = new CronManager(this, this.cronSettings);
this.cronManager.start();
}
logger.info("Cron initialized.");
2017-12-25 00:29:57 +01:00
logger.info("Bot connection.");
this.connect(this.host, this.port);
2017-12-28 04:21:54 +01:00
logger.info("Bot connected.");
2017-12-25 00:29:57 +01:00
logger.info("Bot joining channel ({}).", this.channel);
this.joinChannel(this.channel);
2017-12-25 00:29:57 +01:00
logger.info("Bot ready.");
}
catch (NickAlreadyInUseException exception)
{
throw new HebdobotException(exception);
}
catch (IOException exception)
{
throw new HebdobotException(exception);
}
catch (IrcException exception)
{
throw new HebdobotException(exception);
}
2017-12-28 04:21:54 +01:00
catch (SchedulerException exception)
{
throw new HebdobotException("Error in cron settings.", exception);
}
}
2017-12-14 16:58:45 +01:00
/**
* Send message.
*
* @param message
* the message
*/
public void sendMessage(final String message)
{
2017-12-14 16:58:45 +01:00
logger.debug("Send message : {}", message);
this.sendMessage(this.channel, message);
2018-01-12 02:23:26 +01:00
if (this.review != null)
{
this.review.addRaw(new Message("Hebdobot", message));
}
}
/**
* Sets the home directory.
*
* @param homeDirectory
* the new home directory
*/
public void setHomeDirectory(final File homeDirectory)
{
this.homeDirectory = homeDirectory;
}
2011-09-30 00:35:49 +02:00
}