Access control middleware plugin for the grammY framework!
Middleware for grammY which lets you implement separate logic for admins or paid/pro users.
Use this to ensure only authorized Telegram IDs (admins) can use your bot or certain features.
Copy the plugin code from access.js
and use it in your grammY project.
Messages sent to your bot are checked against user IDs in admin or pro user list.
Implement separate logic for admins and pro users.
- To only let paid users access the bot
bot.on("message" => (ctx){
if (ctx.config.isPro) {
ctx.reply("Hello 👋 You are a Pro user.")
} else {
ctx.reply ("Please subscribe to a paid plan to use the bot.)
}
})
- To only let admins access the bot
bot.on("message" => (ctx){
if (ctx.config.isAdmin) {
ctx.reply("Hello 👋 You are an admin.")
} else {
ctx.reply ("You are unauthorized to use the bot.")
}
})
Note: The admin or pro user list is stored in env
- Implement time based access
- Replace env management of access list to db
Note: 'Admin' here only refers to the list of Telegram IDs included in the env. It has nothing to do with group admins or any other.
If you'd like to contribute to the project, please read grammY's guide to plugins, then open a PR.
MIT ©️ Zubin