83 lines
2.6 KiB
JavaScript
83 lines
2.6 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.InputMediaBuilder = void 0;
|
|
/**
|
|
* Holds a number of helper methods for building `InputMedia*` objects. They are
|
|
* useful when sending media groups and when editing media messages.
|
|
*
|
|
* For example, media groups can be sent like this.
|
|
*
|
|
* ```ts
|
|
* const paths = [
|
|
* '/tmp/pic0.jpg',
|
|
* '/tmp/pic1.jpg',
|
|
* '/tmp/pic2.jpg',
|
|
* ]
|
|
* const files = paths.map((path) => new InputFile(path))
|
|
* const media = files.map((file) => InputMediaBuilder.photo(file))
|
|
* await bot.api.sendMediaGroup(chatId, media)
|
|
* ```
|
|
*
|
|
* Media can be edited like this.
|
|
*
|
|
* ```ts
|
|
* const file = new InputFile('/tmp/pic0.jpg')
|
|
* const media = InputMediaBuilder.photo(file, {
|
|
* caption: 'new caption'
|
|
* })
|
|
* await bot.api.editMessageMedia(chatId, messageId, media)
|
|
* ```
|
|
*/
|
|
exports.InputMediaBuilder = {
|
|
/**
|
|
* Creates a new `InputMediaPhoto` object as specified by
|
|
* https://core.telegram.org/bots/api#inputmediaphoto.
|
|
*
|
|
* @param media An `InputFile` instance or a file identifier
|
|
* @param options Remaining optional options
|
|
*/
|
|
photo(media, options = {}) {
|
|
return { type: "photo", media, ...options };
|
|
},
|
|
/**
|
|
* Creates a new `InputMediaVideo` object as specified by
|
|
* https://core.telegram.org/bots/api#inputmediavideo.
|
|
*
|
|
* @param media An `InputFile` instance or a file identifier
|
|
* @param options Remaining optional options
|
|
*/
|
|
video(media, options = {}) {
|
|
return { type: "video", media, ...options };
|
|
},
|
|
/**
|
|
* Creates a new `InputMediaAnimation` object as specified by
|
|
* https://core.telegram.org/bots/api#inputmediaanimation.
|
|
*
|
|
* @param media An `InputFile` instance or a file identifier
|
|
* @param options Remaining optional options
|
|
*/
|
|
animation(media, options = {}) {
|
|
return { type: "animation", media, ...options };
|
|
},
|
|
/**
|
|
* Creates a new `InputMediaAudio` object as specified by
|
|
* https://core.telegram.org/bots/api#inputmediaaudio.
|
|
*
|
|
* @param media An `InputFile` instance or a file identifier
|
|
* @param options Remaining optional options
|
|
*/
|
|
audio(media, options = {}) {
|
|
return { type: "audio", media, ...options };
|
|
},
|
|
/**
|
|
* Creates a new `InputMediaDocument` object as specified by
|
|
* https://core.telegram.org/bots/api#inputmediadocument.
|
|
*
|
|
* @param media An `InputFile` instance or a file identifier
|
|
* @param options Remaining optional options
|
|
*/
|
|
document(media, options = {}) {
|
|
return { type: "document", media, ...options };
|
|
},
|
|
};
|