Crates.io | telegram-raf |
lib.rs | telegram-raf |
version | |
source | src |
created_at | 2021-12-03 10:49:00.419642+00 |
updated_at | 2025-03-22 13:42:28.533541+00 |
description | RaF (Refer a Friend): bot for creating referral-based contests for your Telegram channels, groups and supergroups |
homepage | |
repository | https://github.com/galeone/raf |
max_upload_size | |
id | 491671 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
RaF is a bot for creating referral-based contests for your Telegram channels, groups and supergroups.
Create contests, let your users share their link to your channel/group, increase your audience, and give prizes to the winners!
The software is written in rust. Raf depends on a fork of telexide, a rust library for making telegram bots. The fork makes the original library work and solves some issues.
The storage used is SQLite: RaF creates a raf.db
file in its run path where it saves all the relationships between:
For the development version:
cargo install --path .
For the production version:
cargo install telegram-raf
mkdir $HOME/.raf
echo 'BOT_NAME="<your bot name>"' > $HOME/.raf/raf.env
echo 'TOKEN="<your bot token>"' >> $HOME/.raf/raf.env
sudo cp misc/systemd/raf@.service /lib/systemd/system/
sudo systemctl start raf@$USER.service
sudo systemctl enable raf@$USER.service
The raf.db
(to backup or inspect) is in $HOME/.raf/
.
The bot supports a broadcast feature that allows the bot owner to send messages to all users and channels. To use this feature:
Create a broadcast.md
file in the bot's run directory ($HOME/.raf/
) with the message you want to broadcast. The message supports Markdown formatting.
If the bot is currently running, stop it. It requires a separate instance. Now start the bot with the --broadcast
flag:
raf --broadcast
/broadcast
command to send the message from broadcast.md
to all users and channels.The broadcast.md
file should be formatted using Markdown V2 syntax, as the bot will send the message with ParseMode::MarkdownV2
.
Any feedback is welcome. Feel free to open issues and create pull requests!
Copyright 2021 Paolo Galeone <nessuno@nerdz.eu>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.