2019-05-12 15:51:52 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# file: modules/inline.sh
|
|
|
|
# do not edit, this file will be overwritten on update
|
|
|
|
|
|
|
|
# This file is public domain in the USA and all free countries.
|
|
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
|
|
|
#
|
2021-01-20 18:50:19 +00:00
|
|
|
#### $$VERSION$$ v1.31-dev-13-g127cc85
|
2019-05-12 15:51:52 +00:00
|
|
|
|
2020-06-14 18:56:46 +00:00
|
|
|
# will be automatically sourced from bashbot
|
2019-05-12 15:51:52 +00:00
|
|
|
|
2020-05-14 17:47:37 +00:00
|
|
|
# source once magic, function named like file
|
|
|
|
eval "$(basename "${BASH_SOURCE[0]}")(){ :; }"
|
|
|
|
|
2019-05-12 15:51:52 +00:00
|
|
|
|
|
|
|
answer_inline_query() {
|
2021-01-05 15:17:34 +00:00
|
|
|
answer_inline_multi "$1" "$(shift; inline_query_compose "${RANDOM}" "$@")"
|
2019-05-12 15:51:52 +00:00
|
|
|
}
|
|
|
|
answer_inline_multi() {
|
2021-01-10 22:17:35 +00:00
|
|
|
sendJson "" '"inline_query_id": '"$1"', "results": ['"$2"']' "${URL}/answerInlineQuery"
|
2019-05-12 15:51:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# $1 unique ID for answer
|
|
|
|
# $2 type of answer
|
|
|
|
# remaining arguments are the "must have" arguments in the order as in telegram doc
|
|
|
|
# followed by the optional arguments: https://core.telegram.org/bots/api#inlinequeryresult
|
|
|
|
inline_query_compose(){
|
|
|
|
local JSON="{}"
|
2021-01-05 15:17:34 +00:00
|
|
|
local ID="$1"
|
2019-05-12 15:51:52 +00:00
|
|
|
local fours last
|
|
|
|
# title2Json title caption description markup inlinekeyboard
|
2021-01-05 15:17:34 +00:00
|
|
|
case "$2" in
|
2019-05-12 15:51:52 +00:00
|
|
|
# user provided media
|
2021-01-20 18:50:19 +00:00
|
|
|
"article"|"message") # article ID title message (markup description)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"article","id":"'${ID}'","input_message_content": {"message_text":"'$4'"} '$(title2Json "$3" "" "$5" "$6" "$7")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"photo") # photo ID photoURL (thumbURL title description caption)
|
2020-05-14 18:33:30 +00:00
|
|
|
[ -z "$4" ] && tumb="$3"
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"photo","id":"'${ID}'","photo_url":"'$3'","thumb_url":"'$4${tumb}'"'$(title2Json "$5" "$7" "$6" "$7" "$8")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"gif") # gif ID photoURL (thumbURL title caption)
|
2020-05-14 18:33:30 +00:00
|
|
|
[ -z "$4" ] && tumb="$3"
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"gif","id":"'${ID}'","gif_url":"'$3'", "thumb_url":"'$4${tumb}'"'$(title2Json "$5" "$6" "$7" "$8" "$9")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"mpeg4_gif") # mpeg4_gif ID mpegURL (thumbURL title caption)
|
2020-05-14 18:33:30 +00:00
|
|
|
[ -n "$4" ] && tumb='","thumb_url":"'$4'"'
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"mpeg4_gif","id":"'${ID}'","mpeg4_url":"'$3'"'${tumb}$(title2Json "$5" "$6" "" "$7" "$8")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"video") # video ID videoURL mime thumbURL title (caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"video","id":"'${ID}'","video_url":"'$3'","mime_type":"'$4'","thumb_url":"'$5'"'$(title2Json "$6" "$7" "$8" "$9" "${10}")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"audio") # audio ID audioURL title (caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"audio","id":"'${ID}'","audio_url":"'$3'"'$(title2Json "$4" "$5" "" "" "$6")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"voice") # voice ID voiceURL title (caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"voice","id":"'${ID}'","voice_url":"'$3'"'$(title2Json "$4" "$5" "" "" "$6")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"document") # document ID title documentURL mimetype (caption description)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"document","id":"'${ID}'","document_url":"'$4'","mime_type":"'$5'"'$(title2Json "$3" "$6" "$7" "$8" "$9")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"location") # location ID lat long title
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"location","id":"'${ID}'","latitude":"'$3'","longitude":"'$4'","title":"'$5'"}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"venue") # venue ID lat long title (address forsquare)
|
2020-05-14 18:33:30 +00:00
|
|
|
[ -z "$6" ] && addr="$5"
|
|
|
|
[ -n "$7" ] && fours=',"foursquare_id":"'$7'"'
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"venue","id":"'${ID}'","latitude":"'$3'","longitude":"'$4'","title":"'$5'","address":"'$6${addr}'"'${fours}'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"contact") # contact ID phone first (last thumb)
|
2020-05-14 18:33:30 +00:00
|
|
|
[ -n "$5" ] && last=',"last_name":"'$5'"'
|
|
|
|
[ -n "$6" ] && tumb='","thumb_url":"'$6'"'
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"contact","id":"'${ID}'","phone_number":"'$3'","first_name":"'$4'"'${last}'"}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
|
|
|
# title2Json title caption description markup inlinekeyboard
|
|
|
|
# Cached media stored in Telegram server
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_photo") # photo ID file (title description caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"photo","id":"'${ID}'","photo_file_id":"'$3'"'$(title2Json "$4" "$6" "$5" "$7" "$8")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_gif") # gif ID file (title caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"gif","id":"'${ID}'","gif_file_id":"'$3'"'$(title2Json "$4" "$5" "$6" "$7" "$8" )'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_mpeg4_gif") # mpeg ID file (title caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"mpeg4_gif","id":"'${ID}'","mpeg4_file_id":"'$3'"'$(title2Json "$4" "$5" "" "$6" "$7")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_sticker") # sticker ID file
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"sticker","id":"'${ID}'","sticker_file_id":"'$3'"}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_document") # document ID title file (description caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"document","id":"'${ID}'","document_file_id":"'$4'"'$(title2Json "$3" "$6" "$5" "$6" "$7")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_video") # video ID file title (description caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"video","id":"'${ID}'","video_file_id":"'$3'"'$(title2Json "$4" "$6" "$5" "$7" "$8")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_voice") # voice ID file title (caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"voice","id":"'${ID}'","voice_file_id":"'$3'"'$(title2Json "$4" "$5" "" "" "$6")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
2021-01-20 18:50:19 +00:00
|
|
|
"cached_audio") # audio ID file title (caption)
|
2021-01-04 22:08:09 +00:00
|
|
|
JSON='{"type":"audio","id":"'${ID}'","audio_file_id":"'$3'"'$(title2Json "$4" "$5" "" "" "$6")'}'
|
2019-05-12 15:51:52 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2019-05-20 08:50:51 +00:00
|
|
|
printf '%s\n' "${JSON}"
|
2019-05-12 15:51:52 +00:00
|
|
|
}
|
|
|
|
|