![JAR search and dependency download from the Maven repository](/logo.png)
co.aurasphere.botmill.fb.actionframe.ActionFrame Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2016 BotMill.io
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package co.aurasphere.botmill.fb.actionframe;
import co.aurasphere.botmill.fb.autoreply.AutoReply;
import co.aurasphere.botmill.fb.event.FbBotMillEvent;
import co.aurasphere.botmill.fb.model.incoming.MessageEnvelope;
/**
* Class that represents a {@link FbBotMillEvent} and the {@link AutoReply} to
* it.
*
* @author Donato Rimenti
*
*/
public class ActionFrame {
/**
* The event of this frame that will trigger the reply.
*/
private FbBotMillEvent event;
/**
* The reply of this frame to send if the event is triggered.
*/
private AutoReply reply;
/**
* The replies of this frame to send if the event is triggered.
*/
private AutoReply[] replies;
/**
* Gets the reply.
*
* @return the reply
*/
public AutoReply getReply() {
return reply;
}
/**
* Gets the replies.
*
* @return the replies
*/
public AutoReply[] getReplies() {
return replies;
}
/**
* Instantiates a new action frame.
*
* @param event
* the {@link #event}.
* @param reply
* the {@link #reply}.
*/
public ActionFrame(FbBotMillEvent event, AutoReply reply) {
this.event = event;
this.reply = reply;
}
/**
* Instantiates a new action frame with multiple / collection replies.
*
* @param event
* the {@link #event}.
* @param replies
* the {@link #replies}.
*/
public ActionFrame(FbBotMillEvent event, AutoReply... replies) {
this.event = event;
this.replies = replies;
}
/**
* Executes the reply if the event is triggered.
*
* @param envelope
* the incoming message.
* @return true, if the event has been triggered.
*/
public boolean process(MessageEnvelope envelope) {
if (this.event == null) {
return false;
}
boolean triggered = this.event.verifyEventCondition(envelope);
if (triggered) {
beforeReply(envelope);
if (this.reply != null) {
this.reply.reply(envelope);
}
afterReply(envelope);
}
return triggered;
}
/**
* Executes multiple replies when multiple autoreply is set.
*
* @param envelope
* the incoming message.
* @return true, if the event has been triggered.
*/
public boolean processMultipleReply(MessageEnvelope envelope) {
if (this.event == null) {
return false;
}
boolean triggered = this.event.verifyEventCondition(envelope);
if (triggered) {
beforeReply(envelope);
if (this.replies != null) {
for (AutoReply reply : replies) {
reply.reply(envelope);
}
}
afterReply(envelope);
}
return triggered;
}
/**
* Convenience method executed before the reply is sent to the user. Default
* implementation does nothing, but you can override it with your desired
* behavior.
*
* @param envelope
* the incoming message.
*/
public void beforeReply(MessageEnvelope envelope) {
};
/**
* Convenience method executed after the reply is sent to the user. Default
* implementation does nothing, but you can override it with your desired
* behavior.
*
* @param envelope
* the incoming message.
*/
public void afterReply(MessageEnvelope envelope) {
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((event == null) ? 0 : event.hashCode());
result = prime * result + ((reply == null) ? 0 : reply.hashCode());
return result;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ActionFrame other = (ActionFrame) obj;
if (event == null) {
if (other.event != null)
return false;
} else if (!event.equals(other.event))
return false;
if (reply == null) {
if (other.reply != null)
return false;
} else if (!reply.equals(other.reply))
return false;
return true;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "ActionFrame [event=" + event + ", reply=" + reply + "]";
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy