mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-29 18:53:52 +00:00
46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
#!/bin/bash
|
|
# file: modules/alaises.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)
|
|
#
|
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
|
|
|
# source from commands.sh to use the aliases
|
|
# some handy aliases for use when processing messages:
|
|
_is_botadmin() {
|
|
user_is_botadmin "${USER[ID]}"
|
|
}
|
|
_is_admin() {
|
|
user_is_admin "${CHAT[ID]}" "${USER[ID]}"
|
|
}
|
|
_is_creator() {
|
|
user_is_creator "${CHAT[ID]}" "${USER[ID]}"
|
|
}
|
|
_is_allowed() {
|
|
user_is_allowed "${USER[ID]}" "$1" "${CHAT[ID]}"
|
|
}
|
|
_leave() {
|
|
leave_chat "${CHAT[ID]}"
|
|
}
|
|
_kick_user() {
|
|
kick_chat_member "${CHAT[ID]}" "${1}"
|
|
}
|
|
_unban_user() {
|
|
unban_chat_member "${CHAT[ID]}" "${1}"
|
|
}
|
|
# easy sending of messages of messages
|
|
_message() {
|
|
send_normal_message "${CHAT[ID]}" "$1"
|
|
}
|
|
_normal_message() {
|
|
send_normal_message "${CHAT[ID]}" "$1"
|
|
}
|
|
_html_message() {
|
|
send_html_message "${CHAT[ID]}" "$1"
|
|
}
|
|
_markdown_message() {
|
|
send_markdown_message "${CHAT[ID]}" "$1"
|
|
}
|