TDLightTelegramBots/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/api/objects/inlinequery/result/InlineQueryResultContact.java

175 lines
5.8 KiB
Java

package org.telegram.telegrambots.meta.api.objects.inlinequery.result;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Tolerate;
import org.telegram.telegrambots.meta.api.objects.inlinequery.inputmessagecontent.InputMessageContent;
import org.telegram.telegrambots.meta.api.objects.replykeyboard.InlineKeyboardMarkup;
import org.telegram.telegrambots.meta.exceptions.TelegramApiValidationException;
/**
* @author Ruben Bermudez
* @version 1.0
* Represents a contact with a phone number. By default, this contact will be sent by the
* user. Alternatively, you can use input_message_content to send a message with the specified
* content instead of the contact.
* @apiNote This will only work in Telegram versions released after 9 April, 2016. Older clients will
* ignore them.
*/
@JsonDeserialize
@EqualsAndHashCode(callSuper = false)
@Getter
@Setter
@ToString
@RequiredArgsConstructor
@NoArgsConstructor(force = true)
@AllArgsConstructor
@Builder
public class InlineQueryResultContact implements InlineQueryResult {
private static final String TYPE_FIELD = "type";
private static final String ID_FIELD = "id";
private static final String PHONE_NUMBER_FIELD = "phone_number";
private static final String FIRST_NAME_FIELD = "first_name";
private static final String LAST_NAME_FIELD = "last_name";
private static final String REPLY_MARKUP_FIELD = "reply_markup";
private static final String INPUTMESSAGECONTENT_FIELD = "input_message_content";
private static final String THUMBNAIL_URL_FIELD = "thumbnail_url";
private static final String THUMBNAIL_WIDTH_FIELD = "thumbnail_width";
private static final String THUMBNAUK_HEIGHT_FIELD = "thumbnail_height";
private static final String VCARD_FIELD = "vcard";
@JsonProperty(TYPE_FIELD)
private final String type = "contact"; ///< Type of the result, must be "contact"
@JsonProperty(ID_FIELD)
@NonNull
private String id; ///< Unique identifier of this result, 1-64 bytes
@JsonProperty(PHONE_NUMBER_FIELD)
@NonNull
private String phoneNumber; ///< Contact's phone number
@JsonProperty(FIRST_NAME_FIELD)
@NonNull
private String firstName; ///< Contact's first name
@JsonProperty(LAST_NAME_FIELD)
private String lastName; ///< Optional. Contact's last name
@JsonProperty(REPLY_MARKUP_FIELD)
private InlineKeyboardMarkup replyMarkup; ///< Optional. Inline keyboard attached to the message
@JsonProperty(INPUTMESSAGECONTENT_FIELD)
private InputMessageContent inputMessageContent; ///< Optional. Content of the message to be sent
@JsonProperty(THUMBNAIL_URL_FIELD)
private String thumbnailUrl; ///< Optional. URL of the thumbnail (jpeg only) for the file
@JsonProperty(THUMBNAIL_WIDTH_FIELD)
private Integer thumbnailWidth; ///< Optional. Thumbnail width
@JsonProperty(THUMBNAUK_HEIGHT_FIELD)
private Integer thumbnailHeight; ///< Optional. Thumbnail height
@JsonProperty(VCARD_FIELD)
private String vCard; ///< Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes
@Override
public void validate() throws TelegramApiValidationException {
if (id.isEmpty()) {
throw new TelegramApiValidationException("ID parameter can't be empty", this);
}
if (phoneNumber.isEmpty()) {
throw new TelegramApiValidationException("PhoneNumber parameter can't be empty", this);
}
if (firstName.isEmpty()) {
throw new TelegramApiValidationException("FirstName parameter can't be empty", this);
}
if (inputMessageContent != null) {
inputMessageContent.validate();
}
if (replyMarkup != null) {
replyMarkup.validate();
}
}
/**
* @deprecated Use {{@link #getThumbnailUrl()}}
*/
@JsonIgnore
@Deprecated
public String getThumbUrl() {
return thumbnailUrl;
}
/**
* @deprecated Use {{@link #setThumbnailUrl(String)}}
*/
@JsonIgnore
@Deprecated
public void setThumbUrl(String thumbUrl) {
this.thumbnailUrl = thumbUrl;
}
/**
* @deprecated Use {{@link #getThumbnailWidth()}}
*/
@JsonIgnore
@Deprecated
public Integer getThumbWidth() {
return thumbnailWidth;
}
/**
* @deprecated Use {{@link #setThumbnailWidth(Integer)}}
*/
@JsonIgnore
@Deprecated
public void setThumbWidth(Integer thumbWidth) {
this.thumbnailWidth = thumbWidth;
}
/**
* @deprecated Use {{@link #getThumbnailHeight()}}
*/
@JsonIgnore
@Deprecated
public Integer getThumbHeight() {
return thumbnailHeight;
}
/**
* @deprecated Use {{@link #setThumbnailHeight(Integer)}}
*/
@JsonIgnore
@Deprecated
public void setThumbHeight(Integer thumbHeight) {
this.thumbnailHeight = thumbHeight;
}
public static class InlineQueryResultContactBuilder {
@Tolerate
@Deprecated
public InlineQueryResultContactBuilder thumbUrl(String thumbUrl) {
this.thumbnailUrl = thumbUrl;
return this;
}
@Tolerate
@Deprecated
public InlineQueryResultContactBuilder thumbHeight(Integer thumbHeight) {
this.thumbnailHeight = thumbHeight;
return this;
}
@Tolerate
@Deprecated
public InlineQueryResultContactBuilder thumbWidth(Integer thumbWidth) {
this.thumbnailWidth = thumbWidth;
return this;
}
}
}