co.aurasphere.botmill.fb.model.outcoming.factory.ButtonTemplateBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fb-botmill Show documentation
Show all versions of fb-botmill Show documentation
Event-driven framework for Facebook Messenger's bots
/*
* 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.model.outcoming.factory;
import co.aurasphere.botmill.fb.model.base.AttachmentType;
import co.aurasphere.botmill.fb.model.incoming.MessageEnvelope;
import co.aurasphere.botmill.fb.model.outcoming.FbBotMillResponse;
import co.aurasphere.botmill.fb.model.outcoming.payload.template.ButtonTemplatePayload;
import co.aurasphere.botmill.fb.model.outcoming.template.button.Button;
/**
* A builder for a Button Template.
*
* @see Facebook's Messenger Platform Button Template Documentation
* @author Donato Rimenti
*
*/
public class ButtonTemplateBuilder extends TemplateBaseBuilder {
/**
* The payload of the current builder.
*/
private ButtonTemplatePayload payload;
/**
* Default constructor. Creates a builder for a Button Template.
*
* @param text
* the Button Template main text.
* @see Facebook's Messenger Platform Button Template Documentation
*
*/
ButtonTemplateBuilder(String text) {
this.payload = new ButtonTemplatePayload(text);
this.messageBuilder = new AttachmentMessageBuilder(
AttachmentType.TEMPLATE, this.payload);
}
/**
* Adds a button which redirects to an URL when clicked to the current
* template. There can be at most 3 buttons.
*
* @param title
* the button label.
* @param url
* the URL to whom redirect when clicked.
* @return this builder.
*/
public ButtonTemplateBuilder addUrlButton(String title, String url) {
Button button = ButtonFactory.createUrlButton(title, url);
this.payload.addButton(button);
return this;
}
/**
* Adds a button with a phone number to the current template. There can be
* at most 3 buttons.
*
* @param title
* the button label.
* @param phoneNumber
* a phone number.
* @return this builder.
*/
public ButtonTemplateBuilder addPhoneNumberButton(String title,
String phoneNumber) {
Button button = ButtonFactory.createPhoneNumberButton(title,
phoneNumber);
this.payload.addButton(button);
return this;
}
/**
* Adds a button which sends a payload back when clicked to the current
* template. There can be at most 3 buttons.
*
* @param title
* the button label.
* @param payload
* the payload to send back when clicked.
* @return this builder.
*/
public ButtonTemplateBuilder addPostbackButton(String title, String payload) {
Button button = ButtonFactory.createPostbackButton(title, payload);
this.payload.addButton(button);
return this;
}
/**
* Adds a button to the current template. There can be at most 3 buttons per
* element.
*
* @param button
* the button to add.
* @return this builder.
*/
public ButtonTemplateBuilder addButton(Button button) {
this.payload.addButton(button);
return this;
}
/**
* {@inheritDoc} Creates a response that contains a Button Template.
*/
public FbBotMillResponse build(MessageEnvelope envelope) {
return this.messageBuilder.build(envelope);
}
/*
* (non-Javadoc)
*
* @see co.aurasphere.botmill.fb.bean.FbBotMillBean#toString()
*/
@Override
public String toString() {
return "ButtonTemplateBuilder [payload=" + payload
+ ", messageBuilder=" + messageBuilder + "]";
}
}