Telegram bot for managing payments
Project description
Telegram Payments Bot
Telegram bot for handling payments in groups based on pyrogram library.
Payments data can be loaded either from an xls/xlsx file or from a Google Sheet (in this way, it can be shared with other admins).
It is also possible to extend this to load payments data from other sources (e.g. a remote database) by inheriting and implementing the PaymentsLoaderBase class, but I didn't need to do it so far.
Payments data can be updated either manually by the admins or, better, automatically (e.g. by the website where the payment is made, via a webhook). It depends on the infrastructure you have.
Setup
Create Telegram app
In order to use the bot, in addition to the bot token you also need an APP ID and hash.
To get them, create an app using the following website: https://my.telegram.org/apps.
Installation
The package requires Python 3, it is not compatible with Python 2.
To install it:
-
Using setuptools:
python setup.py install
-
Using pip:
pip install telegram_payment_bot
To run the bot, edit the configuration file by specifying the API ID/hash and bot token. Then, move to the app folder and run the bot.py script:
cd app
python bot.py
When run with no parameter, conf/config.ini will be the default configuration file (in this way it can be used for different groups).
To specify a different configuration file:
python bot.py -c another_conf.ini
python bot.py --config another_conf.ini
Of course, the app folder can be moved elsewhere if needed.
Configuration
An example of configuration file is provided in the app/conf folder.
The list of all possible fields that can be set is shown below.
Name | Description |
---|---|
[pyrogram] | Configuration for pyrogram |
session_name | Session name of your choice |
api_id | API ID from https://my.telegram.org/apps |
api_hash | API hash from https://my.telegram.org/apps |
bot_token | Bot token from BotFather |
[app] | Configuration for app |
app_is_test_mode | True to activate test mode false otherwise |
app_lang_file | Language file in XML format (default: English) |
[users] | Configuration for users |
authorized_users | List of Telegram usernames that are authorized to use the bot, comma separated |
[support] | Configuration for support |
support_email | Email for getting support or send payments receipts (default: empty) |
support_telegram | Telegram username for getting support or send payments receipts (default: empty) |
[payment] | Configuration for payment |
payment_website | Website for payment (default: empty) |
payment_check_on_join | Flag to check the payment of new members as soon as they join the group (default: true) |
payment_check_period_min | Period in minutes for periodical check. 1 is the minimum value (any value less than 1 will disable the periodical check, default: -1). |
payment_check_chat_ids | IDs of groups to be periodical checked, comma separated (default: empty). This assumes that all groups are linked to the same payments. |
payment_type | Input for payment data: EXCEL_FILE for using xls/xlsx file, GOOGLE_SHEET for using a Google Sheet |
payment_excel_file | Name of the Excel file used for payment data, valid only if payment_type is EXCEL_FILE |
payment_google_sheet_id | ID of the Google Sheet used for payment data, valid only if payment_type is GOOGLE_SHEET |
payment_google_cred | Name of the json file for the OAuth credentials (default: credentials.json), valid only if payment_type is GOOGLE_SHEET |
payment_google_pickle | Name of pickle file used for Google login (default: token.pickle), valid only if payment_type is GOOGLE_SHEET |
payment_email_col | Index of the table column containing the email used for paying (default: 0, maximum: 25) |
payment_username_col | Index of the table column containing the username (default: 1, maximum: 25) |
payment_expiration_col | Index of the table column containing the payment expiration date (default: 2, maximum: 25) |
payment_date_format | Date format in payments data (default: %d/%m/%Y) |
[email] | Configuration for email that reminds users to pay |
email_enabled | Email enable flag (default: false). If false, all the next fields will be skipped. |
email_from | Email sender |
email_reply_to | Email reply-to |
email_host | Host for sending email |
email_user | Username for logging to host |
email_password | Password for logging to host |
email_subject | Email subject |
email_alt_body | File containing email alternate body (text) |
email_html_body | File containing email HTML body |
[logging] | Configuration for logging |
log_level | Log level, same of python logging (DEBUG, INFO, WARNING, ERROR, CRITICAL). Default: INFO. |
log_console_enabled | True to enable logging to console, false otherwise (default: true) |
log_file_enabled | True to enable logging to file, false otherwise (default: false). If false, all the next fields will be skipped. |
log_file_name | Log file name |
log_file_use_rotating | True for using a rotating log file, false otherwise |
log_file_max_bytes | Maximum size in bytes for a log file. When reached, a new log file is created up to log_file_backup_cnt.. Valid only if log_file_use_rotating is true. |
log_file_backup_cnt | Maximum number of log files. Valid only if log_file_use_rotating is true. |
log_file_append | True to append to log file, false to start from a new file each time. Valid only if log_file_use_rotating is false. |
Supported Commands
List of supported commands:
- /help: show help message
- /alive: show if bot is active
- /set_test_mode true/false: enable/disable test mode (overwrite app_is_test_mode configuration field)
- /is_test_mode: show if test mode is enabled
- /auth_users: show the list of authorized users that can use the bot
- /chat_info: show the chat information (can be run only in group)
- /users_list: show the users list (can be run only in group)
- /invite_link: generate a new invite link (can be run only in group)
- /check_no_username [<HOURS_LEFT>]: show the list of chat members without a username (can be run only in group)
- HOURS_LEFT (optional): hours left to set the username before being removed (only for printing the message). Hours are automatically converted to days if greater than 47. If less than 1, it'll print "as soon as possible". Default value: 0.
- /remove_no_username: remove all the chat members without a username (can be run only in group)
- /set_check_payment_on_join true/false: enable/disable payment check when a new member joins
- /is_check_payment_on_join: show if payment check when a new member joins is enabled
- /check_payments_data : check payments data for errors (e.g. invalid dates, duplicated usernames) and show them
- /email_no_payment [<DAYS_LEFT>]: send a reminder email to chat members whose payment is expiring in the specified number of days
- DAYS_LEFT (optional): number of days within which the payment expires. Less than 1 means expiring today. Default value: 0.
- /check_no_payment [<DAYS_LEFT>] [<LAST_DAY>]: show the list of chat members whose payment is expiring in the specified number of days (can be run only in group)
- DAYS_LEFT (optional): number of days within which the payment expires. Less than 1 means expiring today. Default value: 0.
- LAST_DAY (optional): last day to complete the payment before being removed (only for printing the message). If less than 1 or greater than 31, it'll print "within few days". Default value: 0.
- /remove_no_payment: remove the chat members whose payment has expired (can be run only in group)
- /payment_task_start PERIOD_HOURS: start payment check task with the specified period
- PERIOD_HOURS: task period in hours
- /payment_task_stop: stop payment check task
- /payment_task_info: show payment check task information
- /payment_task_add_chat: add the current chat to the payment check task
- /payment_task_remove_chat: remove the current chat from the payment check task
- /payment_task_remove_all_chats: remove all chats from the payment check task
Add quiet or q as last parameter to send the bot response in a private chat instead of the group chat.
Users removed from the group are just kicked and not banned, so they can re-join later via invite links if necessary.
When users are removed from the group (either because they had no username or they didn't pay), a new invite link is generated and sent to all authorized users in a private chat.
This automatically revokes the old invite link and prevents those users to join again using it.
When checking for payments, a user is removed from the group if:
- He has no Telegram username
- His Telegram username is not found in the payments data
- His payment is expired
Payment Check Task
It's possible to run a background task to check for payments periodically. It can be started/stopped with the payment_task_start/payment_task_stop commands.
The task can check multiple groups in one time (sharing the same payments data, of course). The groups can be added/removed with the payment_task_add_chat/payment_task_remove_chat commands (either while the task is running or stopped).
If no group was added, the task will simply run without checking any group.
The period of the task always starts from midnight (if you use a VPS, be sure to set the correct time), for example:
- A task period of 8 hours will display chart/price information at 00:00, 08:00 and 16:00
- A task period of 6 hours will display chart/price information at 00:00, 06:00, 12:00 and 18:00
Run the Bot
The bot shall be an administrator of the group.
If you just need to run bot once in a while (e.g. once a week), you can do it manually using the check_no_payment and remove_no_payment commands. In this case, it's sufficient to run the bot locally on the PC when needed.
If you prefer to let the bot check for payment periodically, it'll be better to run it 24h/24h on a VPS.
Payment File
The payment file can be either a xls/xlsx file (xlrd library is used) or a Google Sheet.
In case a Google Sheet is used:
- Create a project on Google Cloud Console
- Go to APIs & Services, then Credentials and select Configure Consent Screen
- Create a new app and publish it, it doesn't need to be verified (but you can verify it, of course)
- Go back to the Credentials page and create the credentials for OAuth client ID by selecting Create Credentials
- Select Desktop app, choose a name and download the json file with the credentials
- Go to the Library page, search for Google Sheet and enable Google Sheet APIs
- Rename the json file to the name specified in the configuration file (payment_google_cred) and place it in the app folder
- The first time the bot loads your Google Sheet, you'll be asked to login into your Google account and allow the bot to access the sheet. After this, a pickle file with the name you configured (payment_google_pickle) will be automatically created.
- This pickle file allows the bot to access the sheet next times, so you don't need to allow it again
- If you move the bot to another PC or server, just keep the json and pickle files to grant the bot access to the sheet without repeating the whole procedure
For more information: create project, create credentials
In both cases (Google Sheet or Excel file), the file shall contain the following columns starting from the second row (the first row is used as header):
- Email address used for paying (for convenience, since an email address is usually required in payment platforms)
- Telegram username
- Expiration date of the payment in the format specified by payment_date_format
The indexes of these columns are set in the configuration file. It is possible to add other columns beside these if necessary, they are simply ignored by the bot.
Test Mode
Test mode can be used to test the bot without any effect to the users of the group. When active:
- Users are not kicked from the group if they don't have a username or don't have paid, both when running a command and during periodical checks
- Emails are not sent to the users that haven't paid yet
Moreover, the payment task period will be applied in minutes instead of hours. This allows to quickly check if it is working.
Translation
The messages sent by the bot on Telegram can be translated into different languages (the default language is English) by providing a custom XML file.
The XML file path is specified in the configuration file (app_lang_file field).
An example XML file in italian is provided in the folder app/lang.
License
This software is available under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for telegram_payment_bot-0.3.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83e1d85e27e015bf4b2ef819f58ed857a5ab42e7ec1945d1220dfa860b1f2f16 |
|
MD5 | 005f455cc0d2724e6ba44b536f7114a0 |
|
BLAKE2b-256 | f07923b0b56dc41ec0000125d269c47305ba8952f29457394e975d0a138aa278 |