MasterGroosha / telegram-report-bot

A simple bot to handle reports from users in your chat
MIT License
110 stars 24 forks source link
aiogram aiogram3 moderation python telegram telegram-bot

Report bot for Telegram

This repository contains source code of a small yet rather powerful bot for Telegram, which handles reports from users and passes them to admins. Uses aiogram framework.
The main goal is to build a bot with no external database needed. Thus, it may lack some features, but hey, it's open source!

Screenshot

Left - main group. Right - group for admins only. If you don't see this image, please check GitHub repo

Features

Requirements

Installation

  1. Go to @BotFather, create a new bot, write down its token, add it to your existing group and make bot an admin. You also need to give it "Delete messages" permission.
  2. Create a separate group where report messages will be sent and add all group admins there. Remember: anyone who is in that group may perform actions like "Delete", "Ban" and so on, so be careful.
  3. Use some bot like @my_id_bot to get IDs of these two groups;
  4. Clone this repo and cd into it;
  5. Copy env_dist to .env (with dot). Warning: files starting with dot may be hidden in Linux, so don't worry if you stop seeing this file, it's still here!
  6. Replace default values with your own;
  7. Now choose installation method: systemd or Docker
systemd
  1. Create a venv (virtual environment): python3.9 -m venv venv (or any other Python 3.7+ version);
  2. source venv/bin/activate && pip install -r requirements.txt;
  3. Rename reportbot.service.example to reportbot.service and move it to /etc/systemd/system;
  4. Open that file and change values for WorkingDirectory, ExecStart and EnvironmentFile providing the correct path values;
  5. Start your bot and enable its autostart: sudo systemctl enable reportbot.service --now;
    6.Check your bot's status and logs: systemctl status reportbot.service.
Docker
  1. Build and run your container: docker-compose up -d.

Alternatively, check docker-compose.yml file from this repo.