TDLightTelegramBots/src/main/java/org/telegram/telegrambots/api/methods/send/SendMessage.java

211 lines
6.7 KiB
Java
Raw Normal View History

2016-04-11 02:53:53 +02:00
package org.telegram.telegrambots.api.methods.send;
2016-01-14 01:14:53 +01:00
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.jsontype.TypeSerializer;
2016-02-27 03:17:06 +01:00
2016-01-14 01:14:53 +01:00
import org.json.JSONObject;
2016-04-12 19:53:21 +02:00
import org.telegram.telegrambots.Constants;
2016-04-11 02:53:53 +02:00
import org.telegram.telegrambots.api.methods.BotApiMethod;
import org.telegram.telegrambots.api.methods.ParseMode;
2016-01-14 23:09:19 +01:00
import org.telegram.telegrambots.api.objects.Message;
2016-04-11 02:53:53 +02:00
import org.telegram.telegrambots.api.objects.replykeyboard.ReplyKeyboard;
2016-01-14 01:14:53 +01:00
import java.io.IOException;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief Use this method to send text messages. On success, the sent Message is returned.
* @date 20 of June of 2015
*/
public class SendMessage extends BotApiMethod<Message> {
public static final String PATH = "sendmessage";
2016-04-11 02:53:53 +02:00
private static final String CHATID_FIELD = "chat_id";
private static final String TEXT_FIELD = "text";
private static final String PARSEMODE_FIELD = "parse_mode";
private static final String DISABLEWEBPAGEPREVIEW_FIELD = "disable_web_page_preview";
private static final String DISABLENOTIFICATION_FIELD = "disable_notification";
private static final String REPLYTOMESSAGEID_FIELD = "reply_to_message_id";
private static final String REPLYMARKUP_FIELD = "reply_markup";
2016-01-14 01:14:53 +01:00
private String chatId; ///< Unique identifier for the chat to send the message to (Or username for channels)
private String text; ///< Text of the message to be sent
private String parseMode; ///< Optional. Send Markdown, if you want Telegram apps to show bold, italic and URL text in your bot's message.
private Boolean disableWebPagePreview; ///< Optional. Disables link previews for links in this message
2016-02-27 03:17:06 +01:00
/**
2016-04-11 02:53:53 +02:00
* Optional. Sends the message silently. iOS users will not receive a notification, Android
* users will receive a notification with no sound. Other apps coming soon
2016-02-27 03:17:06 +01:00
*/
private Boolean disableNotification;
2016-01-14 01:14:53 +01:00
private Integer replayToMessageId; ///< Optional. If the message is a reply, ID of the original message
private ReplyKeyboard replayMarkup; ///< Optional. JSON-serialized object for a custom reply keyboard
public SendMessage() {
super();
}
public String getChatId() {
return chatId;
}
public SendMessage setChatId(String chatId) {
2016-01-14 01:14:53 +01:00
this.chatId = chatId;
return this;
2016-01-14 01:14:53 +01:00
}
public String getText() {
return text;
}
public SendMessage setText(String text) {
2016-01-14 01:14:53 +01:00
this.text = text;
return this;
2016-01-14 01:14:53 +01:00
}
public Integer getReplayToMessageId() {
return replayToMessageId;
}
public SendMessage setReplayToMessageId(Integer replayToMessageId) {
2016-01-14 01:14:53 +01:00
this.replayToMessageId = replayToMessageId;
return this;
2016-01-14 01:14:53 +01:00
}
public ReplyKeyboard getReplayMarkup() {
return replayMarkup;
}
public SendMessage setReplayMarkup(ReplyKeyboard replayMarkup) {
2016-01-14 01:14:53 +01:00
this.replayMarkup = replayMarkup;
return this;
2016-01-14 01:14:53 +01:00
}
public Boolean getDisableWebPagePreview() {
return disableWebPagePreview;
}
2016-02-27 03:17:06 +01:00
public Boolean getDisableNotification() {
return disableNotification;
}
public SendMessage disableWebPagePreview() {
2016-04-11 02:53:53 +02:00
disableWebPagePreview = true;
return this;
2016-04-11 02:53:53 +02:00
}
public SendMessage enableWebPagePreview() {
2016-04-11 02:53:53 +02:00
disableWebPagePreview = null;
return this;
2016-04-11 02:53:53 +02:00
}
public SendMessage enableNotification() {
2016-04-11 02:53:53 +02:00
this.disableNotification = null;
return this;
2016-02-27 03:17:06 +01:00
}
public SendMessage disableNotification() {
2016-02-27 03:17:06 +01:00
this.disableNotification = true;
return this;
2016-02-27 03:17:06 +01:00
}
public SendMessage enableMarkdown(boolean enable) {
2016-01-14 01:14:53 +01:00
if (enable) {
2016-04-11 02:53:53 +02:00
this.parseMode = ParseMode.MARKDOWN;
2016-01-14 01:14:53 +01:00
} else {
this.parseMode = null;
2016-01-20 20:19:27 +01:00
}
return this;
2016-01-20 20:19:27 +01:00
}
public SendMessage enableHtml(boolean enable) {
2016-01-20 20:19:27 +01:00
if (enable) {
2016-04-11 02:53:53 +02:00
this.parseMode = ParseMode.HTML;
2016-01-20 20:19:27 +01:00
} else {
this.parseMode = null;
2016-01-14 01:14:53 +01:00
}
return this;
2016-01-14 01:14:53 +01:00
}
@Override
public JSONObject toJson() {
JSONObject jsonObject = new JSONObject();
jsonObject.put(CHATID_FIELD, chatId);
jsonObject.put(TEXT_FIELD, text);
if (parseMode != null) {
jsonObject.put(PARSEMODE_FIELD, parseMode);
}
if (disableWebPagePreview != null) {
jsonObject.put(DISABLEWEBPAGEPREVIEW_FIELD, disableWebPagePreview);
}
2016-02-27 03:17:06 +01:00
if (disableNotification != null) {
jsonObject.put(DISABLENOTIFICATION_FIELD, disableNotification);
}
2016-01-14 01:14:53 +01:00
if (replayToMessageId != null) {
jsonObject.put(REPLYTOMESSAGEID_FIELD, replayToMessageId);
}
if (replayMarkup != null) {
jsonObject.put(REPLYMARKUP_FIELD, replayMarkup.toJson());
}
return jsonObject;
}
@Override
public String getPath() {
return PATH;
}
@Override
public Message deserializeResponse(JSONObject answer) {
2016-04-12 19:53:21 +02:00
if (answer.getBoolean(Constants.RESPONSEFIELDOK)) {
return new Message(answer.getJSONObject(Constants.RESPONSEFIELDRESULT));
2016-01-14 01:14:53 +01:00
}
return null;
}
@Override
public void serialize(JsonGenerator gen, SerializerProvider serializers) throws IOException {
gen.writeStartObject();
gen.writeStringField(METHOD_FIELD, PATH);
gen.writeStringField(CHATID_FIELD, chatId);
gen.writeStringField(TEXT_FIELD, text);
if (parseMode != null) {
gen.writeStringField(PARSEMODE_FIELD, parseMode);
}
if (disableWebPagePreview != null) {
gen.writeBooleanField(DISABLEWEBPAGEPREVIEW_FIELD, disableWebPagePreview);
}
2016-02-27 03:17:06 +01:00
if (disableNotification != null) {
gen.writeBooleanField(DISABLENOTIFICATION_FIELD, disableNotification);
}
2016-01-14 01:14:53 +01:00
if (replayToMessageId != null) {
gen.writeNumberField(REPLYTOMESSAGEID_FIELD, replayToMessageId);
}
if (replayMarkup != null) {
gen.writeObjectField(REPLYMARKUP_FIELD, replayMarkup);
}
gen.writeEndObject();
gen.flush();
}
@Override
public void serializeWithType(JsonGenerator gen, SerializerProvider serializers, TypeSerializer typeSer) throws IOException {
serialize(gen, serializers);
}
@Override
public String toString() {
return "SendMessage{" +
"chatId='" + chatId + '\'' +
", text='" + text + '\'' +
", parseMode='" + parseMode + '\'' +
", disableWebPagePreview=" + disableWebPagePreview +
", replayToMessageId=" + replayToMessageId +
", replayMarkup=" + replayMarkup +
'}';
}
2016-01-14 01:14:53 +01:00
}