devadathanmb / ktu-bot

A telegram bot to view KTU exam results and notifications easily.
https://t.me/ktu_results_bot
GNU General Public License v3.0
48 stars 6 forks source link
ktu ktu-notifications ktu-notifier telegrafjs telegram-bot

KTU Bot


![Made with telegrafjs](https://img.shields.io/badge/Made%20With-Telegraf.JS-%23E74625?style=flat&link=https%3A%2F%2Ftelegraf.js.org%2F) ![CI](https://github.com/devadathanmb/ktu-bot/actions/workflows/ci.yml/badge.svg) ![Test Deploy](https://github.com/devadathanmb/ktu-bot/actions/workflows/test-deploy.yml/badge.svg) ![Production Deploy](https://github.com/devadathanmb/ktu-bot/actions/workflows/prod-deploy.yml/badge.svg)


[!NOTE]

This project is currently in autopilot mode and will not receive any major updates. It may become broken at any point in time, as I personally don't have much time to work on it. The functionality of this bot heavily depends on KTU APIs, and any significant changes to those APIs could break the bot. If you're interested in maintaining this project, feel free to fork it or contact me for assistance.

Welcome to the KTU Bot! This Telegram bot helps students check their exam results, find latest KTU notifications, academic calendars, exam time tables and alert users when new notifications arrive.

Find the bot here

Table of Contents

Features

Commands

Inline Query

Use inline query to live search the notification you want to. No more pain of scrolling through the webpage for the notification.

eg: @ktu_results_bot calendar : This returns all the results that matches word "calendar" like Academic calendars etc.

Local development setup

[!NOTE]

The bot makes use of BullMQ, a redis based NodeJS queue, for the live notifications feature. Thus, it requires you to have a redis instance running. The docker compose method below already does that for you.

Running Locally (Without Docker - Not preferred)

  1. Install Node.js and npm on your machine.

  2. Clone the repository:

    git clone https://github.com/devadathanmb/ktu-bot.git
  3. Navigate to the project directory:

    cd ktu-bot
  4. Install dependencies:

    npm install
  5. Set up your Telegram bot token:

    • Create a new bot on Telegram using the BotFather.
    • Copy the bot token.
    • Create a .env file in the project root and add:

      BOT_TOKEN="your-telegram-bot-token"

      See env.example file for example

  6. Create a Firebase project and setup a Firestore database in Firebase console

  7. Download the serviceAccountKey.json file, minify it and base64 encode it using

    jq -r tostring serviceAccountKey.json  | base64
  8. Copy the base64 encoded serviceAccountKey.json string to .env

    FIREBASE_SERVICE_ACCOUNT="base64 encoded string"
  9. Set the ENV_TYPE variable to DEVELOPMENT in .env

    ENV_TYPE="DEVELOPMENT"
  10. Build the bot:

    npm run build
  11. Start the bot:

    npm run start

Running with Docker Compose (Preferred)

  1. Install Docker and Docker Compose on your machine.

  2. Clone the repository:

    git clone https://github.com/devadathanmb/ktu-bot.git
  3. Navigate to the project directory:

    cd ktu-bot
  4. Create a .env file in the project root and add:

    BOT_TOKEN="your-telegram-bot-token"
  5. Create a Firebase project and setup a Firestore database in Firebase console

  6. Download the serviceAccountKey.json file, minify it and base64 encode it using

    jq -r tostring serviceAccountKey.json  | base64
  7. Copy the base64 encoded serviceAccountKey.json string to .env

    FIREBASE_SERVICE_ACCOUNT="base64 encoded string"
  8. Set the ENV_TYPE variable to DEVELOPMENT in .env

    ENV_TYPE="DEVELOPMENT"
  9. Make sure to add all necessary environment variables to .env mentioned in env.example

  10. Run the application using Docker Compose:

    docker-compose -f docker-compose.dev.yml up

The bot should now be running and accessible on Telegram.

[!NOTE] The bot will automatically pickup changes in ./src and restart the bot.

Production setup

This bot makes use of Telegram bot API's webhook mechanism in production.

This is because of certain performance benefits that webhook offers with high concurrent load during peak times. For more info see this.

[!NOTE] Using webhooks in production is optional but recommended if your bot has heavy concurrent traffic. If you don't want to setup webhooks, just follow the above development setup guide and you are good to go.

Pre-requisites

To run the bot using webhooks in production, some pre-requisites are required. They are mentioned below:

[!NOTE] The below guide makes use of nginx as the reverse proxy and assumes that you have reverse proxy configured for the webhook endpoint with HTTPS traffic handling

Steps

  1. Set up an nginx reverse proxy for the webhook endpoint. See this for more information. Checkout basic example in webhook.conf

  2. Clone the repository using

    git clone https://github.com/devadathanmb/ktu-bot.git && cd ktu-bot/
  3. Set ENV_TYPE=PRODUCTION in .env file. See env.example

  4. Make sure to add all necessary environment variables to .env mentioned in env.example

  5. Build and run the docker using docker compose up -d

  6. Start the nginx server (eg : sudo systemctl restart nginx)

That's it. Your bot should be running now in webhook mode.

Contributing

If you encounter any issues, have feature suggestions, or want to contribute to the project, please feel free to fork and make a PR.

Bugs and Feedback

If you find any bugs or have feedback, please open an issue on GitHub.

License

This project is licensed under the GPL 3.0 License - see the LICENSE.md file for details.