nidibot


Namenidibot JSON
Version 1.2.1 PyPI version JSON
download
home_pagehttps://github.com/morwy/nidibot
SummarySimple to install and configure bot for controlling your game servers from any messaging platform.
upload_time2024-03-09 17:53:26
maintainer
docs_urlNone
authorPavel Ivanov
requires_python<3.13,>=3.8.0
licenseBSD-3-Clause
keywords discord nitrado bot
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # nidibot

[![Supported Versions](https://img.shields.io/pypi/pyversions/nidibot.svg)](https://pypi.org/project/nidibot) [![PyPi Versions](https://img.shields.io/pypi/v/nidibot)](https://pypi.org/project/nidibot) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![License](https://img.shields.io/pypi/l/nidibot.svg)](https://pypi.python.org/pypi/nidibot/)

## 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 **Ni**trado, **Di**scord and **bot** - game server provider and messaging platform for which this bot was written originally.

It seems that only Nitrado has a good API for developers available. Any other game server provider does not provide (_pun intended_) any API at all. Some of them provide possibility of managing game server with remote console (RCON) though. RCON support would be a great addition to this project (_someday_).

Any contributions, bug reports and pull requests are welcome!

### 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. Please see configuration description below for more details.

### Limitations

* Command `/backup_restore` shows only latest 25 backups in Discord bot. This is coming from Discord limitation, it can show only 25 buttons in total (5 rows with 5 buttons each).
* Telegram bot can not notify about game server status changes if 'allowed_channels' is empty. This is coming from Telegram API limitation.

### Commands

nidibot supports following commands:

```batch
/status [OPTIONAL:name]
```

Provides extended status information about game server.

---

```batch
/start [OPTIONAL:name]
```

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

---

```batch
/stop [OPTIONAL:name]
```

Stops server if it is online.

---

```batch
/restart [OPTIONAL:name]
```

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

---

```batch
/backup_create [OPTIONAL:name]
```

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

---

```batch
/backup_list [OPTIONAL:name]
```

Lists available backups of specific game server.

---

```batch
/backup_restore [OPTIONAL:name] [REQUIRED:backup_name]
```

Restores specific backup on a 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. Bot account (Discord or Telegram one).
3. Any Discord server or Telegram channel where you have administrative 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 administrative 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:

```bash
pip install nidibot
```

4. Or upgrade already installed bot:

```bash
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:

```bash
# Ubuntu/Linux only.
python3 -c 'from nidibot import Nidibot; Nidibot.initialize_folder()'
```

5. Open **bot_configuration.json** file in any text editor and modify required values to your own:

```json
{
    "general": {
        "backups_folder_path": "backups",
        "logs_folder_path": "logs"
    },
    "bots": [
        {
            "type": "discord",
            "token": "your-bot-token",
            "privileged_users": [],
            "allowed_channels": [],
            "notify_polling_seconds": 5
        }
    ],
    "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
            }
        }
    ]
}
```

6. Install **nidibot** service, so it will start automatically every system restart.

```bash
# Ubuntu/Linux only.
sudo cp nidibot.service /etc/systemd/system/nidibot.service && sudo systemctl daemon-reload && sudo systemctl enable nidibot.service
```

7. Start newly installed service:

```bash
# Ubuntu/Linux only.
sudo systemctl start nidibot.service
```

8. Check service status:

```bash
# Ubuntu/Linux only.
sudo systemctl status nidibot.service
```

## Configuration description

The top level of configuration contains:

| Group | Description |
| --- | --- |
| `general` | General parameters of nidibot configuration. |
| `bots` | List of structures describing bot configuration parameters. |
| `server_providers` | List of structures describing game server configuration parameters. |

### General

| Parameter | Description |
| --- | --- |
| `backups_folder_path` | The directory path in which all backups will be stored. Can be both relative or absolute. Default: **"backups"**, relative to bot working directory. |
| `logs_folder_path` | The directory path in which logs will be stored. Can be both relative or absolute. Default: **"logs"**, relative to bot working directory |

### Bot configuration

| Parameter | Description |
| --- | --- |
| `type` | The type of the bot. Allowed values: `discord`, `telegram`. Default: **empty**. |
| `token` | The authentication token required for the bot. Default: **empty**. |
| `privileged_users` | The list of privileged users that can call administrative commands. Default: **empty**. |
| `allowed_channels` | The list of allowed channels from where commands will be accepted and processed. Default: **empty**. |
| `notify_polling_seconds` | The period in seconds for forwarding messages from queue to connected channels. Default: **5**. |

### Server provider configuration

| Parameter | Description |
| --- | --- |
| `type` | The type of the server provider. Allowed values: `nitrado`. Default: **""**. |
| `token` | The authentication token required for the server provider. Default: **""**. |
| `timeout_seconds` | The timeout in seconds for getting a response from the server provider. Default: **10**. |
| `polling_seconds` | The period in seconds for polling a status from the server provider. Default: **5**. |
| `notifications / on_new_server` | Toggles notification on a new game server appearing. Default: **false**. |
| `notifications / on_status_change` | Toggles notification on a game server status change. Default: **false**. |
| `notifications / on_address_change` | Toggles notification on a game server IP address change. Default: **false**. |
| `notifications / on_version_change` | Toggles notification on a game server version change. Default: **false**. |
| `notifications / on_update_available_change` | Toggles notification if game server got an update available. Default: **false**. |

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/morwy/nidibot",
    "name": "nidibot",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<3.13,>=3.8.0",
    "maintainer_email": "",
    "keywords": "discord,nitrado,bot",
    "author": "Pavel Ivanov",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/64/b7/514a25bb1c1b91c404be662ad87ec6667b9e4088302496753175bce7a262/nidibot-1.2.1.tar.gz",
    "platform": "any",
    "description": "# nidibot\n\n[![Supported Versions](https://img.shields.io/pypi/pyversions/nidibot.svg)](https://pypi.org/project/nidibot) [![PyPi Versions](https://img.shields.io/pypi/v/nidibot)](https://pypi.org/project/nidibot) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![License](https://img.shields.io/pypi/l/nidibot.svg)](https://pypi.python.org/pypi/nidibot/)\n\n## Description\n\nnidibot 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.\n\n**nidibot** name was derived from **Ni**trado, **Di**scord and **bot** - game server provider and messaging platform for which this bot was written originally.\n\nIt seems that only Nitrado has a good API for developers available. Any other game server provider does not provide (_pun intended_) any API at all. Some of them provide possibility of managing game server with remote console (RCON) though. RCON support would be a great addition to this project (_someday_).\n\nAny contributions, bug reports and pull requests are welcome!\n\n### Features\n\n* A minimalistic set of fundamental commands - everything you need to run and manage your game server.\n* Possibility of connecting unlimited (somewhat) amount of game server providers and bots.\n* High extensibility for game server providers and bots - just add a new class for missing game server provider or bot and make a PR.\n* Easy setup - install ready-made nidibot package from PyPI and call `initialize_folder()`.\n* Simple configuration - everything is located in `bot_configuration.json` file in bot folder. Please see configuration description below for more details.\n\n### Limitations\n\n* Command `/backup_restore` shows only latest 25 backups in Discord bot. This is coming from Discord limitation, it can show only 25 buttons in total (5 rows with 5 buttons each).\n* Telegram bot can not notify about game server status changes if 'allowed_channels' is empty. This is coming from Telegram API limitation.\n\n### Commands\n\nnidibot supports following commands:\n\n```batch\n/status [OPTIONAL:name]\n```\n\nProvides extended status information about game server.\n\n---\n\n```batch\n/start [OPTIONAL:name]\n```\n\nStarts server if it is offline, restarts server if it is online.\n\n---\n\n```batch\n/stop [OPTIONAL:name]\n```\n\nStops server if it is online.\n\n---\n\n```batch\n/restart [OPTIONAL:name]\n```\n\nRestarts server if it is online, starts server if it is offline.\n\n---\n\n```batch\n/backup_create [OPTIONAL:name]\n```\n\nCreates backup of games server files. Backed up files are stored in the working folder of bot under **backups** folder.\n\n---\n\n```batch\n/backup_list [OPTIONAL:name]\n```\n\nLists available backups of specific game server.\n\n---\n\n```batch\n/backup_restore [OPTIONAL:name] [REQUIRED:backup_name]\n```\n\nRestores specific backup on a game server.\n\n---\n\nEach 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.\n\n## Quick start\n\n### Prerequisites\n\nYou need to have following before you proceed with the instructions:\n\n1. Virtual machine (VM) or server somewhere in the Internet.\n2. Bot account (Discord or Telegram one).\n3. Any Discord server or Telegram channel where you have administrative access.\n4. Nitrado account (register or login at <https://server.nitrado.net/en-GB/>).\n5. Any game server that runs on Nitrado to which you have administrative access.\n\n### Installation\n\n1. Login to your VM or server via SSH.\n2. 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.\n3. Install this bot as Python package via pip:\n\n```bash\npip install nidibot\n```\n\n4. Or upgrade already installed bot:\n\n```bash\npip install nidibot --upgrade\n```\n\n### Configuration\n\n1. Login to your VM or server via SSH.\n2. Create new folder for storing bot files.\n3. Proceed to the folder.\n4. Call following command for initializing bot in this folder and create default configuration files:\n\n```bash\n# Ubuntu/Linux only.\npython3 -c 'from nidibot import Nidibot; Nidibot.initialize_folder()'\n```\n\n5. Open **bot_configuration.json** file in any text editor and modify required values to your own:\n\n```json\n{\n    \"general\": {\n        \"backups_folder_path\": \"backups\",\n        \"logs_folder_path\": \"logs\"\n    },\n    \"bots\": [\n        {\n            \"type\": \"discord\",\n            \"token\": \"your-bot-token\",\n            \"privileged_users\": [],\n            \"allowed_channels\": [],\n            \"notify_polling_seconds\": 5\n        }\n    ],\n    \"server_providers\": [\n        {\n            \"type\": \"nitrado\",\n            \"token\": \"your-gameserver-api-token\",\n            \"timeout_seconds\": 10,\n            \"polling_seconds\": 5,\n            \"notifications\": {\n                \"on_new_server\": true,\n                \"on_status_change\": true,\n                \"on_address_change\": true,\n                \"on_version_change\": true,\n                \"on_update_available_change\": true\n            }\n        }\n    ]\n}\n```\n\n6. Install **nidibot** service, so it will start automatically every system restart.\n\n```bash\n# Ubuntu/Linux only.\nsudo cp nidibot.service /etc/systemd/system/nidibot.service && sudo systemctl daemon-reload && sudo systemctl enable nidibot.service\n```\n\n7. Start newly installed service:\n\n```bash\n# Ubuntu/Linux only.\nsudo systemctl start nidibot.service\n```\n\n8. Check service status:\n\n```bash\n# Ubuntu/Linux only.\nsudo systemctl status nidibot.service\n```\n\n## Configuration description\n\nThe top level of configuration contains:\n\n| Group | Description |\n| --- | --- |\n| `general` | General parameters of nidibot configuration. |\n| `bots` | List of structures describing bot configuration parameters. |\n| `server_providers` | List of structures describing game server configuration parameters. |\n\n### General\n\n| Parameter | Description |\n| --- | --- |\n| `backups_folder_path` | The directory path in which all backups will be stored. Can be both relative or absolute. Default: **\"backups\"**, relative to bot working directory. |\n| `logs_folder_path` | The directory path in which logs will be stored. Can be both relative or absolute. Default: **\"logs\"**, relative to bot working directory |\n\n### Bot configuration\n\n| Parameter | Description |\n| --- | --- |\n| `type` | The type of the bot. Allowed values: `discord`, `telegram`. Default: **empty**. |\n| `token` | The authentication token required for the bot. Default: **empty**. |\n| `privileged_users` | The list of privileged users that can call administrative commands. Default: **empty**. |\n| `allowed_channels` | The list of allowed channels from where commands will be accepted and processed. Default: **empty**. |\n| `notify_polling_seconds` | The period in seconds for forwarding messages from queue to connected channels. Default: **5**. |\n\n### Server provider configuration\n\n| Parameter | Description |\n| --- | --- |\n| `type` | The type of the server provider. Allowed values: `nitrado`. Default: **\"\"**. |\n| `token` | The authentication token required for the server provider. Default: **\"\"**. |\n| `timeout_seconds` | The timeout in seconds for getting a response from the server provider. Default: **10**. |\n| `polling_seconds` | The period in seconds for polling a status from the server provider. Default: **5**. |\n| `notifications / on_new_server` | Toggles notification on a new game server appearing. Default: **false**. |\n| `notifications / on_status_change` | Toggles notification on a game server status change. Default: **false**. |\n| `notifications / on_address_change` | Toggles notification on a game server IP address change. Default: **false**. |\n| `notifications / on_version_change` | Toggles notification on a game server version change. Default: **false**. |\n| `notifications / on_update_available_change` | Toggles notification if game server got an update available. Default: **false**. |\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Simple to install and configure bot for controlling your game servers from any messaging platform.",
    "version": "1.2.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/morwy/nidibot/issues",
        "Homepage": "https://github.com/morwy/nidibot",
        "Source Code": "https://github.com/morwy/nidibot"
    },
    "split_keywords": [
        "discord",
        "nitrado",
        "bot"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "792efe7c48ed1a894e3714716769bae2b256ee1288992cc29f3af55186da2059",
                "md5": "16d8eb68bb50f1d589ad72c8fff93ff3",
                "sha256": "f1a94144afb941de0041a5ef26147e3c1cb2542042c82158814b5c63599824dc"
            },
            "downloads": -1,
            "filename": "nidibot-1.2.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "16d8eb68bb50f1d589ad72c8fff93ff3",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": "<3.13,>=3.8.0",
            "size": 27180,
            "upload_time": "2024-03-09T17:53:24",
            "upload_time_iso_8601": "2024-03-09T17:53:24.956474Z",
            "url": "https://files.pythonhosted.org/packages/79/2e/fe7c48ed1a894e3714716769bae2b256ee1288992cc29f3af55186da2059/nidibot-1.2.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64b7514a25bb1c1b91c404be662ad87ec6667b9e4088302496753175bce7a262",
                "md5": "c7d84a3c2a7af991f041c691fe0aadb4",
                "sha256": "6d981410ef07b4174bc5448b7b8302ffa69d1efdf90577bd44de1aa3c574360c"
            },
            "downloads": -1,
            "filename": "nidibot-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "c7d84a3c2a7af991f041c691fe0aadb4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.8.0",
            "size": 24293,
            "upload_time": "2024-03-09T17:53:26",
            "upload_time_iso_8601": "2024-03-09T17:53:26.297106Z",
            "url": "https://files.pythonhosted.org/packages/64/b7/514a25bb1c1b91c404be662ad87ec6667b9e4088302496753175bce7a262/nidibot-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-09 17:53:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "morwy",
    "github_project": "nidibot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nidibot"
}
        
Elapsed time: 0.20150s