Skip to content

markusressel/keel-telegram-bot

Repository files navigation

keel-telegram-bot Build Status Code Climate PyPI version

keel-telegram-bot is a telegram bot for Keel.

Features

  • Receive notifications (via Webhook)
  • List approvals
  • Approve pending approvals
  • Reject pending approvals
  • Delete archived approvals
  • Permission handling based on telegram usernames
  • Filter visible approvals on a per-chat basis

How it works

This bot uses the REST api provided by Keel to interact with it and relies on the Webhook functionality to receive and forward notifications to telegram chats. On one hand keel-telegram-bot acts like the web interface, on the other hand it acts like a proxy, both combined into a single package.

To get the commands working simply provide all the necessary details of the configuration file.

To get notifications working you will have to provide the address of keel-telegram-bot to Keel using the WEBHOOK_ENDPOINT env variable. The simplest way to achieve this is by running both Keel and keel-telegram-bot on the same host and specifying http://localhost:5000/.

How to use

Configure the docker image using either environment variables, or mount the configuration file from your host system to /app/keel-telegram-bot.yaml.

Configuration

keel-telegram-bot uses container-app-conf to provide configuration via a YAML file as well as ENV variables. Have a look at the documentation about it.

See keel-telegram-bot_example.yaml for an example in this repo.

Run

To run keel-telegram-bot using docker you can use the ghcr.io/markusressel/keel-telegram-bot image:

sudo docker run -t \
    ghcr.io/markusressel/keel-telegram-bot:latest

Contributing

GitHub is for social coding: if you want to write code, I encourage contributions through pull requests from forks of this repository. Create GitHub tickets for bugs and new features and comment on the ones that you are interested in.

License

keel-telegram-bot by Markus Ressel
Copyright (C) 2020  Markus Ressel

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.