Skip to content

Commit a1b18ad

Browse files
authored
Merge pull request #417 from pengrad/v8.3
Bot API v8.3
2 parents 013406a + c446c8a commit a1b18ad

36 files changed

+1132
-339
lines changed

library/src/main/java/com/pengrad/telegrambot/model/ChatFullInfo.java

+8-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public enum Type {
7070
private String custom_emoji_sticker_set_name;
7171
private Long linked_chat_id;
7272
private ChatLocation location;
73+
private Boolean can_send_gift;
7374

7475
public Long id() {
7576
return id;
@@ -262,6 +263,10 @@ public ChatLocation location() {
262263
return location;
263264
}
264265

266+
public Boolean canSendGift() {
267+
return can_send_gift;
268+
}
269+
265270
@Override
266271
public boolean equals(Object o) {
267272
if (this == o) return true;
@@ -310,7 +315,8 @@ public boolean equals(Object o) {
310315
Objects.equals(can_set_sticker_set, chat.can_set_sticker_set) &&
311316
Objects.equals(custom_emoji_sticker_set_name, chat.custom_emoji_sticker_set_name) &&
312317
Objects.equals(linked_chat_id, chat.linked_chat_id) &&
313-
Objects.equals(location, chat.location);
318+
Objects.equals(location, chat.location) &&
319+
Objects.equals(can_send_gift, chat.can_send_gift);
314320
}
315321

316322
@Override
@@ -365,6 +371,7 @@ public String toString() {
365371
", custom_emoji_sticker_set_name=" + custom_emoji_sticker_set_name +
366372
", linked_chat_id=" + linked_chat_id +
367373
", location=" + location +
374+
", can_send_gift=" + can_send_gift +
368375
'}';
369376
}
370377
}

library/src/main/java/com/pengrad/telegrambot/model/Video.java

-103
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
package com.pengrad.telegrambot.model
2+
3+
data class Video(
4+
@get:JvmName("fileId") val fileId: String,
5+
@get:JvmName("fileUniqueId") val fileUniqueId: String,
6+
7+
@JvmSynthetic val width: Int,
8+
@JvmSynthetic val height: Int,
9+
@JvmSynthetic val duration: Int,
10+
11+
@get:JvmName("thumbnail") val thumbnail: PhotoSize? = null,
12+
@get:JvmName("cover") val cover: List<PhotoSize>? = null,
13+
14+
@get:JvmName("start_timestamp") val startTimestamp: Int? = null,
15+
16+
@get:JvmName("fileName") val fileName: String? = null,
17+
@get:JvmName("mimeType") val mimeType: String? = null,
18+
@get:JvmName("fileSize") val fileSize: Long? = null,
19+
20+
) {
21+
22+
/**
23+
* Backwards compatability for Java code because of Kotlin optimization
24+
*/
25+
@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
26+
fun width() = width as Integer
27+
28+
/**
29+
* Backwards compatability for Java code because of Kotlin optimization
30+
*/
31+
@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
32+
fun height() = height as Integer
33+
34+
/**
35+
* Backwards compatability for Java code because of Kotlin optimization
36+
*/
37+
@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
38+
fun duration() = duration as Integer
39+
40+
@Deprecated("Use thumbnail instead", ReplaceWith("thumbnail"))
41+
fun thumb(): PhotoSize? = thumbnail
42+
43+
}

library/src/main/java/com/pengrad/telegrambot/model/gift/Gift.kt

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ data class Gift(
66
@get:JvmName("id") val id: String,
77
@get:JvmName("sticker") val sticker: Sticker,
88
@get:JvmName("starCount") val starCount: Int,
9-
@get:JvmName("totalCount") val totalCount: Int,
10-
@get:JvmName("remainingCount") val remainingCount: Int
9+
@get:JvmName("upgradeStarCount") val upgradeStarCount: Int? = null,
10+
@get:JvmName("totalCount") val totalCount: Int? = null,
11+
@get:JvmName("remainingCount") val remainingCount: Int? = null
1112
)

library/src/main/java/com/pengrad/telegrambot/model/request/InlineQueryResultArticle.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,12 @@ public InlineQueryResultArticle url(String url) {
3434
return this;
3535
}
3636

37+
/**
38+
* @deprecated hideUrl method is removed since <a href="https://core.telegram.org/bots/api#january-1-2025">Bot API 8.2</a>. This method removes url parameter to emulate hideUrl parameter behavior. It may break your code logic. Pass an empty string as url instead.
39+
*/
40+
@Deprecated
3741
public InlineQueryResultArticle hideUrl(Boolean hideUrl) {
38-
this.hide_url = hideUrl;
42+
this.url = null;
3943
return this;
4044
}
4145

library/src/main/java/com/pengrad/telegrambot/model/request/InlineQueryResultVideo.java

+13-1
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,29 @@ public class InlineQueryResultVideo extends InlineQueryResult<InlineQueryResultV
2424
private Integer video_duration;
2525
private String description;
2626

27+
/**
28+
* @deprecated use a constructor without messageText and inputMessageContent(new InputTextMessageContent(messageText)) instead
29+
*/
30+
@Deprecated
2731
public InlineQueryResultVideo(String id, String videoUrl, String mimeType, String messageText, String thumbUrl, String title) {
2832
this(id, videoUrl, mimeType, new InputTextMessageContent(messageText), thumbUrl, title);
2933
}
3034

35+
/**
36+
* @deprecated use a constructor without inputMessageContent and inputMessageContent(inputMessageContent) instead
37+
*/
38+
@Deprecated
3139
public InlineQueryResultVideo(String id, String videoUrl, String mimeType, InputMessageContent inputMessageContent, String thumbnailUrl, String title) {
40+
this(id, videoUrl, mimeType, thumbnailUrl, title);
41+
inputMessageContent(inputMessageContent);
42+
}
43+
44+
public InlineQueryResultVideo(String id, String videoUrl, String mimeType, String thumbnailUrl, String title) {
3245
super("video", id);
3346
this.video_url = videoUrl;
3447
this.mime_type = mimeType;
3548
this.thumbnail_url = thumbnailUrl;
3649
this.title = title;
37-
inputMessageContent(inputMessageContent);
3850
}
3951

4052
public InlineQueryResultVideo caption(String caption) {

library/src/main/java/com/pengrad/telegrambot/model/request/InputMedia.java

+10-12
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ public Map<String, Object> getAttachments() {
5454
return attachments;
5555
}
5656

57+
protected String addAttachment(Object attachment) {
58+
String attachName = AttachName.next();
59+
attachments.put(attachName, attachment);
60+
return "attach://" + attachName;
61+
}
62+
5763
public InputFile inputFile() {
5864
return inputFile;
5965
}
@@ -67,9 +73,7 @@ public String getInputFileId() {
6773
*/
6874
@Deprecated
6975
public T thumb(File thumb) {
70-
String attachName = AttachName.next();
71-
attachments.put(attachName, thumb);
72-
this.thumbnail = "attach://" + attachName;
76+
this.thumbnail = addAttachment(thumb);
7377
return thisAsT;
7478
}
7579

@@ -83,23 +87,17 @@ public T showCaptionAboveMedia(Boolean showCaptionAboveMedia) {
8387
*/
8488
@Deprecated
8589
public T thumb(byte[] thumb) {
86-
String attachName = AttachName.next();
87-
attachments.put(attachName, thumb);
88-
this.thumbnail = "attach://" + attachName;
90+
this.thumbnail = addAttachment(thumb);
8991
return thisAsT;
9092
}
9193

9294
public T thumbnail(File thumbnail) {
93-
String attachName = AttachName.next();
94-
attachments.put(attachName, thumbnail);
95-
this.thumbnail = "attach://" + attachName;
95+
this.thumbnail = addAttachment(thumbnail);
9696
return thisAsT;
9797
}
9898

9999
public T thumbnail(byte[] thumbnail) {
100-
String attachName = AttachName.next();
101-
attachments.put(attachName, thumbnail);
102-
this.thumbnail = "attach://" + attachName;
100+
this.thumbnail = addAttachment(thumbnail);
103101
return thisAsT;
104102
}
105103

library/src/main/java/com/pengrad/telegrambot/model/request/InputMediaVideo.java

+17
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ public class InputMediaVideo extends InputMedia<InputMediaVideo> implements Seri
1515
private Integer width, height, duration;
1616
private Boolean supports_streaming;
1717
private Boolean has_spoiler;
18+
private String cover;
19+
private Integer start_timestamp;
1820

1921
public InputMediaVideo(String media) {
2022
super("video", media);
@@ -43,6 +45,21 @@ public InputMediaVideo duration(Integer duration) {
4345
return this;
4446
}
4547

48+
public InputMediaVideo cover(File cover) {
49+
this.cover = addAttachment(cover);
50+
return this;
51+
}
52+
53+
public InputMediaVideo cover(byte[] cover) {
54+
this.cover = addAttachment(cover);
55+
return this;
56+
}
57+
58+
public InputMediaVideo startTimestamp(Integer startTimestamp) {
59+
this.start_timestamp = startTimestamp;
60+
return this;
61+
}
62+
4663
public InputMediaVideo supportsStreaming(boolean supportsStreaming) {
4764
this.supports_streaming = supportsStreaming;
4865
return this;

library/src/main/java/com/pengrad/telegrambot/model/request/InputPaidMedia.java

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ public Map<String, Object> getAttachments() {
3939
return attachments;
4040
}
4141

42+
protected String addAttachment(Object attachment) {
43+
String attachName = AttachName.next();
44+
attachments.put(attachName, attachment);
45+
return "attach://" + attachName;
46+
}
47+
4248
public InputFile inputFile() {
4349
return inputFile;
4450
}

library/src/main/java/com/pengrad/telegrambot/model/request/InputPaidMediaVideo.java

+19-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
package com.pengrad.telegrambot.model.request;
22

3-
import com.pengrad.telegrambot.AttachName;
43
import com.pengrad.telegrambot.request.ContentTypes;
54

65
import java.io.File;
76
import java.io.Serializable;
8-
import java.util.Map;
97

108
public class InputPaidMediaVideo extends InputPaidMedia implements Serializable {
119

@@ -14,6 +12,8 @@ public class InputPaidMediaVideo extends InputPaidMedia implements Serializable
1412
private Integer width, height, duration;
1513
private Boolean supports_streaming;
1614
private String thumbnail;
15+
private String cover;
16+
private Integer start_timestamp;
1717

1818
public InputPaidMediaVideo(String media) {
1919
super("video", media);
@@ -48,16 +48,27 @@ public InputPaidMediaVideo supportsStreaming(boolean supportsStreaming) {
4848
}
4949

5050
public InputPaidMediaVideo thumbnail(File thumbnail) {
51-
String attachName = AttachName.next();
52-
attachments.put(attachName, thumbnail);
53-
this.thumbnail = "attach://" + attachName;
51+
this.thumbnail = addAttachment(thumbnail);
5452
return this;
5553
}
5654

5755
public InputPaidMediaVideo thumbnail(byte[] thumbnail) {
58-
String attachName = AttachName.next();
59-
attachments.put(attachName, thumbnail);
60-
this.thumbnail = "attach://" + attachName;
56+
this.thumbnail = addAttachment(thumbnail);
57+
return this;
58+
}
59+
60+
public InputPaidMediaVideo cover(File cover) {
61+
this.cover = addAttachment(cover);
62+
return this;
63+
}
64+
65+
public InputPaidMediaVideo cover(byte[] cover) {
66+
this.cover = addAttachment(cover);
67+
return this;
68+
}
69+
70+
public InputPaidMediaVideo startTimestamp(Integer startTimestamp) {
71+
this.start_timestamp = startTimestamp;
6172
return this;
6273
}
6374

0 commit comments

Comments
 (0)