mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-29 02:36:26 +00:00
more aliases, use aliases in commands.sh
This commit is contained in:
parent
097a841961
commit
262bb9e805
@ -104,4 +104,4 @@ Bashbot is not more (in)secure as any other Bot written in any other language, w
|
|||||||
|
|
||||||
If you feel that there's something missing or if you found a bug, feel free to submit a pull request!
|
If you feel that there's something missing or if you found a bug, feel free to submit a pull request!
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
@ -168,5 +168,5 @@ That's it!
|
|||||||
If you feel that there's something missing or if you found a bug, feel
|
If you feel that there's something missing or if you found a bug, feel
|
||||||
free to submit a pull request!
|
free to submit a pull request!
|
||||||
|
|
||||||
latexmath:[\[VERSION\]] v0.70-dev2-17-g92ad9e4
|
latexmath:[\[VERSION\]] v0.70-dev2-18-g097a841
|
||||||
++++++++++++++++++++++++++++++++++++++++++++++
|
++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# description: Start or stop telegram-bash-bot
|
# description: Start or stop telegram-bash-bot
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
# shellcheck disable=SC2009
|
# shellcheck disable=SC2009
|
||||||
# shellcheck disable=SC2181
|
# shellcheck disable=SC2181
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
#
|
#
|
||||||
# Exit Codes:
|
# Exit Codes:
|
||||||
# - 0 sucess (hopefully)
|
# - 0 sucess (hopefully)
|
||||||
@ -666,7 +666,7 @@ if [ "$1" != "source" ]; then
|
|||||||
echo "Sending the broadcast $* to $NUMCOUNT users."
|
echo "Sending the broadcast $* to $NUMCOUNT users."
|
||||||
[ "$NUMCOUNT" -gt "300" ] && sleep="sleep 0.5"
|
[ "$NUMCOUNT" -gt "300" ] && sleep="sleep 0.5"
|
||||||
shift
|
shift
|
||||||
while read -r f; do send_message "${f//COUNT}" "$*"; $sleep; done <"${COUNTFILE}"
|
while read -r f; do send__markdown_message "${f//COUNT}" "$*"; $sleep; done <"${COUNTFILE}"
|
||||||
;;
|
;;
|
||||||
"start")
|
"start")
|
||||||
${CLEAR}
|
${CLEAR}
|
||||||
|
44
commands.sh
44
commands.sh
@ -5,7 +5,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
#
|
#
|
||||||
# shellcheck disable=SC2154
|
# shellcheck disable=SC2154
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034
|
||||||
@ -20,19 +20,16 @@ unset IFS
|
|||||||
# set -f # if you are paranoid use set -f to disable globbing
|
# set -f # if you are paranoid use set -f to disable globbing
|
||||||
|
|
||||||
|
|
||||||
# to change the default info and help messages copy bashbot_info() and bahsbot_help()
|
|
||||||
# to mycommands.sh and edit the messages there.
|
|
||||||
|
|
||||||
if [ "$1" != "source" ]; then
|
if [ "$1" != "source" ]; then
|
||||||
bashbot_info() {
|
# to change the default info message overwrite bashbot_info in mycommands.sh
|
||||||
send_markdown_message "${1}" 'This is bashbot, the Telegram bot written entirely in bash.
|
bashbot_info='This is bashbot, the Telegram bot written entirely in bash.
|
||||||
It features background tasks and interactive chats, and can serve as an interface for CLI programs.
|
It features background tasks and interactive chats, and can serve as an interface for CLI programs.
|
||||||
It currently can send, recieve and forward messages, custom keyboards, photos, audio, voice, documents, locations and video files.
|
It currently can send, recieve and forward messages, custom keyboards, photos, audio, voice, documents, locations and video files.
|
||||||
'
|
'
|
||||||
}
|
|
||||||
|
|
||||||
bashbot_help() {
|
# to change the default help messages overwrite in mycommands.sh
|
||||||
send_markdown_message "${1}" '*Available commands*:
|
bashbot_help='*Available commands*:
|
||||||
*• /start*: _Start bot and get this message_.
|
*• /start*: _Start bot and get this message_.
|
||||||
*• /info*: _Get shorter info message about this bot_.
|
*• /info*: _Get shorter info message about this bot_.
|
||||||
*• /question*: _Start interactive chat_.
|
*• /question*: _Start interactive chat_.
|
||||||
@ -42,11 +39,13 @@ It currently can send, recieve and forward messages, custom keyboards, photos, a
|
|||||||
Written by Drew (@topkecleon), Daniil Gentili (@danogentili) and KayM(@gnadelwartz).
|
Written by Drew (@topkecleon), Daniil Gentili (@danogentili) and KayM(@gnadelwartz).
|
||||||
Get the code in my [GitHub](http://github.com/topkecleon/telegram-bot-bash)
|
Get the code in my [GitHub](http://github.com/topkecleon/telegram-bot-bash)
|
||||||
'
|
'
|
||||||
}
|
|
||||||
|
|
||||||
# load additional modules
|
# load additional modules
|
||||||
[ -r "modules/aliases.sh" ] && source "modules/aliases.sh" # some handy aliases, e.g. _is_admin and _message
|
[ -r "modules/aliases.sh" ] && source "modules/aliases.sh"
|
||||||
# ...
|
[ -r "modules/background.sh" ] && source "modules/background.sh"
|
||||||
|
# ... more modules here ...
|
||||||
|
|
||||||
|
# mycommands is the last "module" to source in
|
||||||
# shellcheck source=./commands.sh
|
# shellcheck source=./commands.sh
|
||||||
[ -r "mycommands.sh" ] && source "mycommands.sh"
|
[ -r "mycommands.sh" ] && source "mycommands.sh"
|
||||||
|
|
||||||
@ -60,6 +59,7 @@ if [ "$1" = "source" ];then
|
|||||||
FILE_REGEX='/home/user/allowed/.*'
|
FILE_REGEX='/home/user/allowed/.*'
|
||||||
else
|
else
|
||||||
if ! tmux ls | grep -v send | grep -q "$copname"; then
|
if ! tmux ls | grep -v send | grep -q "$copname"; then
|
||||||
|
# interactive running?
|
||||||
[ ! -z "${URLS[*]}" ] && {
|
[ ! -z "${URLS[*]}" ] && {
|
||||||
curl -s "${URLS[*]}" -o "$NAME"
|
curl -s "${URLS[*]}" -o "$NAME"
|
||||||
send_file "${CHAT[ID]}" "$NAME" "$CAPTION"
|
send_file "${CHAT[ID]}" "$NAME" "$CAPTION"
|
||||||
@ -91,42 +91,42 @@ else
|
|||||||
if [[ "$iQUERY_MSG" = "web" ]]; then
|
if [[ "$iQUERY_MSG" = "web" ]]; then
|
||||||
answer_inline_query "$iQUERY_ID" "article" "GitHub" "http://github.com/topkecleon/telegram-bot-bash"
|
answer_inline_query "$iQUERY_ID" "article" "GitHub" "http://github.com/topkecleon/telegram-bot-bash"
|
||||||
fi
|
fi
|
||||||
fi &
|
fi & # note the & !
|
||||||
fi
|
fi
|
||||||
case "$MESSAGE" in
|
case "$MESSAGE" in
|
||||||
################################################
|
################################################
|
||||||
# DEFAULT commands start here, edit messages only
|
# DEFAULT commands start here, edit messages only
|
||||||
'/info')
|
'/info')
|
||||||
bashbot_info "${CHAT[ID]}"
|
_markdown_message "${bashbot_info}"
|
||||||
;;
|
;;
|
||||||
'/start')
|
'/start')
|
||||||
send_action "${CHAT[ID]}" "typing"
|
send_action "${CHAT[ID]}" "typing"
|
||||||
_is_botadmin && send_markdown_message "${CHAT[ID]}" "You are *BOTADMIN*."
|
_is_botadmin && _markdown_message "You are *BOTADMIN*."
|
||||||
if _is_allowed "start" ; then
|
if _is_allowed "start" ; then
|
||||||
bot_help "${CHAT[ID]}"
|
_markdown_message "${bot_help}"
|
||||||
else
|
else
|
||||||
send_normal_message "${CHAT[ID]}" "You are not allowed to start Bot."
|
_message "You are not allowed to start Bot."
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'/leavechat') # bot leave chat if user is admin in chat
|
'/leavechat') # bot leave chat if user is admin in chat
|
||||||
if _is_admin ; then
|
if _is_admin ; then
|
||||||
send_markdown_message "${CHAT[ID]}" "*LEAVING CHAT...*"
|
_markdown_message "*LEAVING CHAT...*"
|
||||||
leave_chat "${CHAT[ID]}"
|
_leave
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'/kickme')
|
'/kickme')
|
||||||
kick_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
_kick_user "${USER[ID]}"
|
||||||
unban_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
_unban_user "${USER[ID]}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
'/cancel')
|
'/cancel')
|
||||||
checkprog
|
checkprog
|
||||||
if [ "$res" -eq 0 ] ; then killproc && send_message "${CHAT[ID]}" "Command canceled.";else send_message "${CHAT[ID]}" "No command is currently running.";fi
|
if [ "$res" -eq 0 ] ; then killproc && _message "Command canceled.";else _message "No command is currently running.";fi
|
||||||
;;
|
;;
|
||||||
*) # forward other messages to optional dispatcher
|
*) # forward other messages to optional dispatcher
|
||||||
_is_function startproc && if tmux ls | grep -v send | grep -q "$copname"; then inproc; fi
|
_is_function startproc && if tmux ls | grep -v send | grep -q "$copname"; then inproc; fi # interactive running
|
||||||
_is_function mycommands && mycommands
|
_is_function mycommands && mycommands
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# this has to run once atfer git clone
|
# this has to run once atfer git clone
|
||||||
# and every time we create new hooks
|
# and every time we create new hooks
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# this has to run once atfer git clone
|
# this has to run once atfer git clone
|
||||||
# and every time we create new hooks
|
# and every time we create new hooks
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# list of additional files to check from shellcheck
|
# list of additional files to check from shellcheck
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
bashbot.rc
|
bashbot.rc
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
#
|
#
|
||||||
# Easy Versioning in git:
|
# Easy Versioning in git:
|
||||||
|
@ -61,5 +61,5 @@ group. This step is up to you actually.
|
|||||||
|
|
||||||
#### [Next Getting started](2_usage.md)
|
#### [Next Getting started](2_usage.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -166,5 +166,5 @@ send_action "${CHAT[ID]}" "action"
|
|||||||
#### [Prev Create Bot](1_firstbot.md)
|
#### [Prev Create Bot](1_firstbot.md)
|
||||||
#### [Next Advanced Usage](3_advanced.md)
|
#### [Next Advanced Usage](3_advanced.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -156,5 +156,5 @@ answer_inline_query "$iQUERY_ID" "cached_sticker" "identifier for the sticker"
|
|||||||
#### [Prev Advanced Usage](3_advanced.md)
|
#### [Prev Advanced Usage](3_advanced.md)
|
||||||
#### [Next Expert Use](4_expert.md)
|
#### [Next Expert Use](4_expert.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -104,5 +104,5 @@ An example crontab is provided in ```examples/bashbot.cron```.
|
|||||||
#### [Prev Expert Use](4_expert.md)
|
#### [Prev Expert Use](4_expert.md)
|
||||||
#### [Next Best Practice](5_practice.md)
|
#### [Next Best Practice](5_practice.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -112,5 +112,5 @@ The second warning is about an unused variable, this is true because in our exam
|
|||||||
#### [Prev Best Practice](5_practice.md)
|
#### [Prev Best Practice](5_practice.md)
|
||||||
#### [Next Functions Reference](6_reference.md)
|
#### [Next Functions Reference](6_reference.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -135,17 +135,22 @@ If your Bot is Admin of a chat he can kick and ban a user.
|
|||||||
|
|
||||||
*usage:* kick_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
*usage:* kick_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
||||||
|
|
||||||
|
*alias* _kick_user "${USER[ID]}"
|
||||||
|
|
||||||
##### unban_chat_member
|
##### unban_chat_member
|
||||||
If your Bot is Admin of a chat he can unban a kicked user.
|
If your Bot is Admin of a chat he can unban a kicked user.
|
||||||
|
|
||||||
*usage:* unban_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
*usage:* unban_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
||||||
|
|
||||||
|
*alias* _unban "${USER[ID]}"
|
||||||
|
|
||||||
##### leave_chat
|
##### leave_chat
|
||||||
Bot will leave given chat.
|
Bot will leave given chat.
|
||||||
|
|
||||||
*usage:* leave_chat "${CHAT[ID]}"
|
*usage:* leave_chat "${CHAT[ID]}"
|
||||||
|
|
||||||
|
*alias* _leave
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
if _is_admin ; then
|
if _is_admin ; then
|
||||||
send_markdown_message "${CHAT[ID]}" "*LEAVING CHAT...*"
|
send_markdown_message "${CHAT[ID]}" "*LEAVING CHAT...*"
|
||||||
@ -229,6 +234,26 @@ You must use ```source modules/aliases.sh``` in commands.sh or mycommands.sh to
|
|||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
|
##### kick_chat_member
|
||||||
|
|
||||||
|
*usage:* _kick_user "${USER[ID]}"
|
||||||
|
|
||||||
|
*alias for* kick_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
||||||
|
|
||||||
|
##### unban_chat_member
|
||||||
|
|
||||||
|
*usage:* _unban "${USER[ID]}"
|
||||||
|
|
||||||
|
*alias for* unban_chat_member "${CHAT[ID]}" "${USER[ID]}"
|
||||||
|
|
||||||
|
##### leave_chat
|
||||||
|
|
||||||
|
*usage:* _leave
|
||||||
|
|
||||||
|
*alias for* leave_chat "${CHAT[ID]}"
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
#### _message
|
#### _message
|
||||||
|
|
||||||
*usage:* _message "message"
|
*usage:* _message "message"
|
||||||
@ -420,5 +445,5 @@ Send Input from Telegram to waiting Interactive Chat.
|
|||||||
#### [Prev Best Practice](5_practice.md)
|
#### [Prev Best Practice](5_practice.md)
|
||||||
#### [Next Notes for Developers](7_develop.md)
|
#### [Next Notes for Developers](7_develop.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -71,5 +71,5 @@ fi
|
|||||||
#### [Prev Function Reference](6_function.md)
|
#### [Prev Function Reference](6_function.md)
|
||||||
#### [Next Bashbot Environment](8_custom.md)
|
#### [Next Bashbot Environment](8_custom.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -131,5 +131,5 @@ for every poll until the maximum of BASHBOT_SLEEP ms.
|
|||||||
|
|
||||||
#### [Prev Notes for Developers](7_develop.md)
|
#### [Prev Notes for Developers](7_develop.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
|
||||||
SHELL=/bin/sh
|
SHELL=/bin/sh
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# adjust your language setting here
|
# adjust your language setting here
|
||||||
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# adjust your language setting here
|
# adjust your language setting here
|
||||||
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# adjust your language setting here
|
# adjust your language setting here
|
||||||
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# adjust your language setting here
|
# adjust your language setting here
|
||||||
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# source from commands.sh to use the aliases
|
# source from commands.sh to use the aliases
|
||||||
# some handy aliases for use when processing messages:
|
# some handy aliases for use when processing messages:
|
||||||
@ -21,7 +21,16 @@ _is_creator() {
|
|||||||
_is_allowed() {
|
_is_allowed() {
|
||||||
user_is_allowed "${USER[ID]}" "$1" "${CHAT[ID]}"
|
user_is_allowed "${USER[ID]}" "$1" "${CHAT[ID]}"
|
||||||
}
|
}
|
||||||
# same for easy sending messages of messages
|
_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() {
|
_message() {
|
||||||
send_normal_message "${CHAT[ID]}" "$1"
|
send_normal_message "${CHAT[ID]}" "$1"
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# source from commands.sh if you want ro use interactive or background jobs
|
# source from commands.sh if you want ro use interactive or background jobs
|
||||||
|
|
||||||
|
10
modules/inline.sh
Normal file
10
modules/inline.sh
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#!/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)
|
||||||
|
#
|
||||||
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
|
# source from commands.sh to use the inline functions
|
@ -2,11 +2,19 @@
|
|||||||
# files: mycommands.sh.dist
|
# files: mycommands.sh.dist
|
||||||
# copy to mycommands.sh and add all your commands and functions here ...
|
# copy to mycommands.sh and add all your commands and functions here ...
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
#
|
#
|
||||||
# shellcheck disable=SC2154
|
# shellcheck disable=SC2154
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034
|
||||||
|
|
||||||
|
|
||||||
|
# uncomment the following lines to overwrite info and hel messages
|
||||||
|
# bashbot_info='This is bashbot, the Telegram bot written entirely in bash.`
|
||||||
|
#'
|
||||||
|
# bashbot_help='*Available commands*:
|
||||||
|
#'
|
||||||
|
|
||||||
|
|
||||||
# your additional bahsbot commands
|
# your additional bahsbot commands
|
||||||
mycommands() {
|
mycommands() {
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# ADD a new test skeleton to test dir, but does not activate test
|
# ADD a new test skeleton to test dir, but does not activate test
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# common variables
|
# common variables
|
||||||
export TESTME DIRME TESTDIR LOGFILE REFDIR TESTNAME
|
export TESTME DIRME TESTDIR LOGFILE REFDIR TESTNAME
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# this has to run once atfer git clone
|
# this has to run once atfer git clone
|
||||||
# and every time we create new hooks
|
# and every time we create new hooks
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
../dev/hooks/pre-commit.sh
|
../dev/hooks/pre-commit.sh
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
../dev/hooks/pre-push.sh
|
../dev/hooks/pre-push.sh
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# include common functions and definitions
|
# include common functions and definitions
|
||||||
# shellcheck source=test/ALL-tests.inc.sh
|
# shellcheck source=test/ALL-tests.inc.sh
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# include common functions and definitions
|
# include common functions and definitions
|
||||||
# shellcheck source=test/ALL-tests.inc.sh
|
# shellcheck source=test/ALL-tests.inc.sh
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# include common functions and definitions
|
# include common functions and definitions
|
||||||
# shellcheck source=test/ALL-tests.inc.sh
|
# shellcheck source=test/ALL-tests.inc.sh
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v0.70-dev2-17-g92ad9e4
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
||||||
|
|
||||||
# include common functions and definitions
|
# include common functions and definitions
|
||||||
# shellcheck source=test/ALL-tests.inc.sh
|
# shellcheck source=test/ALL-tests.inc.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user