The tgnotifier
is a tool to send a notification messages
via the Telegram API.
To install the latest release of the tgnotifier
,
download the archive with the binary for your OS and unpack it somewhere inside the PATH.
- Ubuntu/Debian: tgnotifier_v0.4.4_ubuntu-latest
- Windows: tgnotifier_v0.4.4_windows-latest
Installation on Ubuntu example:
wget https://github.com/kukymbr/tgnotifier/releases/download/v0.4.4/tgnotifier_v0.4.4_ubuntu-latest.zip
unzip tgnotifier_v0.4.4_ubuntu-latest.zip -d /usr/local/bin/
tgnotifier --version
The
--version
flag is supported since the v0.3.2 version.
To install tgnotifier
from the source, use the go install
command:
go install github.com/kukymbr/tgnotifier/cmd/tgnotifier@v0.4.4
Usage:
tgnotifier [flags]
Flags:
--bot string Bot name to send message from (defined in config); if not set, the default_bot directive or the bot from the TGNOTIFIER_DEFAULT_BOT env var will be used
--chat string Chat name to send message to (defined in config); if not set, the default_chat directive or the chat ID from the TGNOTIFIER_DEFAULT_CHAT env var will be used
--config string Path to a config file
--debug Enable the debug mode
--disable-notification Disable message sound notification
-h, --help help for tgnotifier
--parse-mode message parse mode Parse mode (MarkdownV2|HTML)
--protect-content Protect message content from copying and forwarding
--text string Message text
-v, --version version for tgnotifier
The tgnotifier
could have a configuration file to use multiple bots and chats.
See the .tgnotifier.example.yml for an available values.
Defining the bots, who can send messages via the tgnotifier
:
bots:
first_bot: "12345:FIRST_BOT_TOKEN"
second_bot: "bot54321:SECOND_BOT_TOKEN"
Defining the chat IDs, where tgnotifier
can send messages to:
chats:
main_chat: "-12345"
secondary_chat: "@my_test_channel"
To use a program without a bot
or a chat
argument,
define a default_bot
and default_chat
values in the config file:
default_bot: "first_bot"
default_chat: "main_chat"
Defining the schedule when messages are sent without a sound notification:
silence_schedule:
- from: 22:00
to: 9:00
Defining substrings to replace in the message texts:
replaces:
"@test": "[Test](tg://user?id=123456789)"
"FYI": "for your information"
To run tgnotifier
without the config file at all,
define the env vars with default bot credentials and chat ID:
export TGNOTIFIER_DEFAULT_BOT="bot12345:bot-token"
export TGNOTIFIER_DEFAULT_CHAT="-12345"
Send a "Hello, World!" message from the default bot to the default chat:
export TGNOTIFIER_DEFAULT_BOT="bot12345:bot-token"
export TGNOTIFIER_DEFAULT_CHAT="-12345"
tgnotifier --text="Hello, World!"
Send a "Hello, World!" message from the first_bot
to the main_chat
, mentioning the JohnDoe
user:
tgnotifier --bot=first_bot --chat=main_chat --text="Hello, World and @JohnDoe!"
Send a "Hello, World!" message from the second_bot
to the main_chat
with no sound notification:
tgnotifier --bot=second_bot --chat=main_chat --text="Hello, World!" --disable-notification=true
Send a "Hello, World!" message from the another_bot
to the another_chat
using the non-default config file:
tgnotifier --config="/path/to/another_config.yaml" --bot=another_bot --chat=another_chat --text="Hello, World!"
- Optional user's config file in the home dir.
- Docker configuration.
- Predefined messages with templates and i18n.
- Replace map in config.
- Define default bot & chat in config file.
- Silence schedule in config.