use of won.bot.framework.eventbot.EventListenerContext in project webofneeds by researchstudio-sat.
the class MailCommandAction method doRun.
@Override
protected void doRun(Event event, EventListener executingListener) throws Exception {
EventListenerContext ctx = getEventListenerContext();
if (event instanceof MailCommandEvent && ctx.getBotContextWrapper() instanceof MailBotContextWrapper) {
MailBotContextWrapper botContextWrapper = (MailBotContextWrapper) ctx.getBotContextWrapper();
MimeMessage message = ((MailCommandEvent) event).getMessage();
String referenceId = MailContentExtractor.getMailReference(message);
WonURI wonUri = botContextWrapper.getWonURIForMailId(referenceId);
// determine if the mail is referring to some other mail/need/connection or not
if (wonUri != null) {
processReferenceMailCommands(message, wonUri);
} else {
processNonReferenceMailCommand(message);
}
}
}
use of won.bot.framework.eventbot.EventListenerContext in project webofneeds by researchstudio-sat.
the class MailParserAction method processCreateNeedMail.
private void processCreateNeedMail(MimeMessage message) throws MessagingException, IOException {
EventListenerContext ctx = getEventListenerContext();
EventBus bus = ctx.getEventBus();
String senderMailAddress = MailContentExtractor.getMailSender(message);
MailBotContextWrapper botContextWrapper = ((MailBotContextWrapper) ctx.getBotContextWrapper());
SubscribeStatus subscribeStatus = botContextWrapper.getSubscribeStatusForMailAddress(senderMailAddress);
// published as needs, discarded or cached
if (SubscribeStatus.SUBSCRIBED.equals(subscribeStatus)) {
logger.info("received a create mail from subscribed user '{}' with subject '{}' so publish as need", senderMailAddress, message.getSubject());
bus.publish(new CreateNeedFromMailEvent(message));
} else if (SubscribeStatus.UNSUBSCRIBED.equals(subscribeStatus)) {
logger.info("received mail from unsubscribed user '{}' so discard mail with subject '{}'", senderMailAddress, message.getSubject());
} else {
logger.info("received a create mail from new user '{}' with subject '{}' so cache it and send welcome mail", senderMailAddress, message.getSubject());
botContextWrapper.addCachedMailsForMailAddress(message);
bus.publish(new WelcomeMailEvent(message));
}
}
use of won.bot.framework.eventbot.EventListenerContext in project webofneeds by researchstudio-sat.
the class SubscribeUnsubscribeAction method doRun.
@Override
protected void doRun(final Event event, EventListener executingListener) throws Exception {
EventListenerContext ctx = getEventListenerContext();
if (event instanceof SubscribeUnsubscribeEvent && ctx.getBotContextWrapper() instanceof MailBotContextWrapper) {
MailBotContextWrapper botContextWrapper = (MailBotContextWrapper) ctx.getBotContextWrapper();
// save the new subscription status of the user to the bot context
SubscribeUnsubscribeEvent subscribeEvent = (SubscribeUnsubscribeEvent) event;
SubscribeStatus subscribeStatus = subscribeEvent.getSubscribeStatus();
String senderMailAddress = MailContentExtractor.getMailSender(subscribeEvent.getMessage());
botContextWrapper.setSubscribeStatusForMailAddress(senderMailAddress, subscribeStatus);
// depending on the new subscribe status of the user publish his cached mails as needs or delete the cache
if (SubscribeStatus.SUBSCRIBED.equals(subscribeStatus)) {
EventBus bus = getEventListenerContext().getEventBus();
Collection<MimeMessage> cachedMessages = botContextWrapper.loadCachedMailsForMailAddress(senderMailAddress);
cachedMessages.stream().forEach(message -> bus.publish(new CreateNeedFromMailEvent(message)));
} else if (SubscribeStatus.UNSUBSCRIBED.equals(subscribeStatus)) {
botContextWrapper.removeCachedMailsForMailAddress(senderMailAddress);
}
}
}
use of won.bot.framework.eventbot.EventListenerContext in project webofneeds by researchstudio-sat.
the class Connect2MailParserAction method doRun.
@Override
protected void doRun(Event event, EventListener executingListener) throws Exception {
EventListenerContext ctx = getEventListenerContext();
if (event instanceof ConnectFromOtherNeedEvent && ctx.getBotContextWrapper() instanceof MailBotContextWrapper) {
MailBotContextWrapper botContextWrapper = (MailBotContextWrapper) ctx.getBotContextWrapper();
Connection con = ((ConnectFromOtherNeedEvent) event).getCon();
URI responseTo = con.getNeedURI();
URI remoteNeedUri = con.getRemoteNeedURI();
MimeMessage originalMail = botContextWrapper.getMimeMessageForURI(responseTo);
logger.debug("Someone issued a connect for URI: " + responseTo + " sending a mail to the creator: " + MailContentExtractor.getFromAddressString(originalMail));
WonMimeMessage answerMessage = mailGenerator.createConnectMail(originalMail, remoteNeedUri);
botContextWrapper.addMailIdWonURIRelation(answerMessage.getMessageID(), new WonURI(con.getConnectionURI(), UriType.CONNECTION));
sendChannel.send(new GenericMessage<>(answerMessage));
}
}
use of won.bot.framework.eventbot.EventListenerContext in project webofneeds by researchstudio-sat.
the class Hint2MailParserAction method doRun.
@Override
protected void doRun(Event event, EventListener executingListener) throws Exception {
EventListenerContext ctx = getEventListenerContext();
if (event instanceof HintFromMatcherEvent && ctx.getBotContextWrapper() instanceof MailBotContextWrapper) {
MailBotContextWrapper botContextWrapper = (MailBotContextWrapper) ctx.getBotContextWrapper();
Match match = ((HintFromMatcherEvent) event).getMatch();
WonMessage message = ((HintFromMatcherEvent) event).getWonMessage();
URI responseTo = match.getFromNeed();
URI remoteNeedUri = match.getToNeed();
MimeMessage originalMail = botContextWrapper.getMimeMessageForURI(responseTo);
logger.debug("Found a hint for URI: " + responseTo + " sending a mail to the creator: " + MailContentExtractor.getFromAddressString(originalMail));
WonMimeMessage answerMessage = mailGenerator.createHintMail(originalMail, remoteNeedUri);
botContextWrapper.addMailIdWonURIRelation(answerMessage.getMessageID(), new WonURI(message.getReceiverURI(), UriType.CONNECTION));
sendChannel.send(new GenericMessage<>(answerMessage));
}
}
Aggregations