Skip to main content

Simple to install and configure bot for controlling your game servers from any messaging platform.

Project description

nidibot

Supported Versions PyPi Versions Code style: black License

Description

nidibot is a simple to install and configure bot for controlling your game servers from any messaging platform. Any is a bit of exaggeration here, since only Discord and Telegram is supported.

nidibot name was derived from Nitrado, Discord and bot - game server provider and messaging platform for which this bot was written originally.

Features

  • A minimalistic set of fundamental commands - everything you need to run and manage your game server.
  • Possibility of connecting unlimited (somewhat) amount of game server providers and bots.
  • High extensibility for game server providers and bots - just add a new class for missing game server provider or bot and make a PR.
  • Easy setup - install ready-made nidibot package from PyPI and call initialize_folder().
  • Simple configuration - everything is located in bot_configuration.json file in bot folder.

Limitations

  • Telegram bot does not support automatic notification about game server status changes.
  • There can be only one Telegram bot at the time. There is currently unresolved issue with running Telegram bot in thread.

Commands

nidibot supports following commands:

/status [OPTIONAL:name]

Provides extended information about game server status.


/start [OPTIONAL:name]

Starts server if it is offline, restarts server if it is online.


/stop [OPTIONAL:name]

Stops server if it is online.


/restart [OPTIONAL:name]

Restarts server if it is online, starts server if it is offline.


/backup_create [OPTIONAL:name]

Creates backup of games server files. Backed up files are stored in the working folder of bot under backup folder.


/backup_list [OPTIONAL:name]

Lists available backups of specific game server.


Each command supports optional argument name. It is a convenience argument in case you have multiple game servers connected to the bot at once. In case if no name is specified, the command is applied to the first game server in the list.

Quick start

Prerequisites

You need to have following before you proceed with the instructions:

  1. Virtual machine (VM) or server somewhere in the Internet.
  2. Discord account (register or login at https://discord.com/).
  3. Any Discord server where you have access.
  4. Nitrado account (register or login at https://server.nitrado.net/en-GB/).
  5. Any game server that runs on Nitrado to which you have access.

Installation

  1. Login to your VM or server via SSH.
  2. Install Python 3.x. Do this only if Python 3.x is missing or very old. You don't need to have latest Python version for this bot.
  3. Install this bot as Python package via pip:
pip install nidibot
  1. Or upgrade already installed bot:
pip install nidibot --upgrade

Configuration

  1. Login to your VM or server via SSH.
  2. Create new folder for storing bot files.
  3. Proceed to the folder.
  4. Call following command for initializing bot in this folder and create default configuration files:
# Ubuntu/Linux only.
python3 -c 'from nidibot.nidibot import Nidibot; Nidibot.initialize_folder()'
  1. Following files should appear.
  2. Open bot_configuration.json file in any text editor and modify required values to your own:
{
    "general": {
        "backups_folder_path": "backups",
        "logs_folder_path": "logs"
    },
    "bots": [
        {
            "type": "discord",
            "token": "your-discord-bot-token",
            "privileged_users": []
        }
    ],
    "server_providers": [
        {
            "type": "nitrado",
            "token": "your-gameserver-api-token",
            "timeout_seconds": 10,
            "polling_seconds": 5,
            "notifications": {
                "on_new_server": true,
                "on_status_change": true,
                "on_address_change": true,
                "on_version_change": true,
                "on_update_available_change": true
            }
        }
    ]
}
  1. Install nidibot service, so it will start automatically every system restart.
sudo cp nidibot.service /etc/systemd/system/nidibot.service && sudo systemctl daemon-reload && sudo systemctl enable nidibot.service
  1. Start newly installed service:
sudo systemctl start nidibot.service
  1. Check service status:
sudo systemctl status nidibot.service

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nidibot-1.1.4.tar.gz (20.2 kB view hashes)

Uploaded Source

Built Distribution

nidibot-1.1.4-py2.py3-none-any.whl (22.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page