Metadata-Version: 2.1
Name: spellbot
Version: 0.2.0
Summary: A Discord bot for SpellTable
Home-page: https://github.com/lexicalunit/spellbot
License: MIT
Keywords: discord,magic,bot,mtg,SpellTable
Author: Amy
Author-email: amy@lexicalunit.com
Requires-Python: >=3.7,<4
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Games/Entertainment :: Board Games
Requires-Dist: alembic (>=1.4.2,<2.0.0)
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: discord-py (>=1.3.3,<2.0.0)
Requires-Dist: dunamai (>=1.2.0,<2.0.0)
Requires-Dist: hupper (>=1.10.2,<2.0.0)
Requires-Dist: psycopg2-binary (>=2.8.5,<3.0.0)
Requires-Dist: pydantic (>=1.5.1,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.1,<3.0.0)
Requires-Dist: pytz (>=2020.1,<2021.0)
Requires-Dist: pyyaml (>=5.3.1,<6.0.0)
Requires-Dist: requests (>=2.24.0,<3.0.0)
Requires-Dist: sqlalchemy (>=1.3.17,<2.0.0)
Requires-Dist: unidecode (>=1.1.1,<2.0.0)
Project-URL: Repository, https://github.com/lexicalunit/spellbot
Description-Content-Type: text/markdown

<img align="right" src="https://raw.githubusercontent.com/lexicalunit/spellbot/master/spellbot.png" />

# SpellBot

[![build][build-badge]][build]
[![pypi][pypi-badge]][pypi]
[![codecov][codecov-badge]][codecov]
[![python][python-badge]][python]
[![black][black-badge]][black]
[![mit][mit-badge]][mit]

A Discord bot for [SpellTable][spelltable].

[![add-bot][add-img]][add-bot]

## 📱 Using SpellBot

Once you've connected the bot to your server, you can interact with it over
Discord via the following commands in any of the authorized channels.

- `!about`: Get information about SpellBot
- `!help`: Provides detailed help about all of the following commands
- `!hello`: Says hello
- `!queue`: Enter into a queue for an EDH game

## WIP: Commands

### Queue

In a text channel or as a DM to the bot:

```text
!queue <format> [power level]
```

- Verifies that you're not in a queue yet
- Sends a DM to you indicating that you're in the queue
- When matchmaking is complete:
  - Creates a SpellTable link
  - DMs everyone in the match the link

Questions:

- What if someone want's to queue with someone else?
- Maybe: `!queue <format> [power level] @with_this_person @and_this_person etc... ???

### Status

As a DM to the bot:

```text
!status
```

- Gives you some information on your place in the queue
- Possibly give you some status on your history of games and win/lose

### Leaving

As a DM to the bot:

```text
!leave
```

- Removes you from the queue that you're in if you're in one

### Reporting

In a text channel:

```text
!report win @username[, @username, @username, ...]
!report draw @username[, @username, @username, ...]
```

- Automatically know what game based on the last game in which that user was a member of
- Indicates that @username is the winner of their match
- Potentially there could be multiple winners or draws
- Allow for mistakes, user's should be able to run report multiple times
- At some point after the first report, reporting needs be finalized
- Do we need a `!report loss` command for any reason?

### Moderation

As a DM to the bot by an authorized user:

```text
!ban @username <reason> [minutes]
```

- Block the user from being able to use the bot (optionally for the given minutes)

```text
!unban @username
```

- Remove user from the block list

```text
!bans
```

- Show the list of bans and reasons

```text
!ops @username
```

- Authorize someone else to be able to moderate

```text
!unops @username
```

- Remove someone from moderation

```text
!admin @username
```

- Authorize someone to be able to administrate

```text
!unadmin @username
```

- Remove someone from administrators

```text
!report ... ?
```

- Potentially have mods/admins be able to go in and manually change reports if need be

### Concerns / Thoughts / Ideas

- After a game is created, it needs to expire at some point
- After a report is done, how long until the report command stops working
- Does a user's game need to be reported before they can re-queue?
- What happens if a game is never reported on?
- When matchmaking w/ power levels, does it need to be a 100% match, +/- how much?
- What about using ELO to match make?

## 🤖 Running SpellBot

First install `spellbot` using [`pip`](https://pip.pypa.io/en/stable/):

```shell
pip install spellbot
```

Provide your Discord bot token with the environment variable `SPELLBOT_TOKEN`.

By default SpellBot will use sqlite3 as its database. You can however choose to
use another database by providing a [SQLAlchemy Connection URL][db-url]. This
can be done via the `--database-url` command line option or the environment
variable `SPELLBOT_DB_URL`. Note that, at the time of this writing, SpellBot is only
tested against sqlite3 and PostgreSQL.

More usage help can be found by running `spellbot --help`.

## 🐳 Docker Support

You can also run SpellBot via docker. See
[our documentation on Docker Support](DOCKER.md) for help.

## ❤️ Contributing

If you'd like to become a part of the SpellBot development community please first
know that we have a documented [code of conduct](CODE_OF_CONDUCT.md) and then
see our [documentation on how to contribute](CONTRIBUTING.md) for details on
how to get started.

---

[MIT][mit] © [amy@lexicalunit][lexicalunit] et [al][contributors]

[add-bot]:          https://discordapp.com/api/oauth2/authorize?client_id=725510263251402832&permissions=247872&scope=bot
[add-img]:          https://user-images.githubusercontent.com/1903876/82262797-71745100-9916-11ea-8b65-b3f656115e4f.png
[black-badge]:      https://img.shields.io/badge/code%20style-black-000000.svg
[black]:            https://github.com/psf/black
[build-badge]:      https://github.com/lexicalunit/spellbot/workflows/build/badge.svg
[build]:            https://github.com/lexicalunit/spellbot/actions
[codecov-badge]:    https://codecov.io/gh/lexicalunit/spellbot/branch/master/graph/badge.svg
[codecov]:          https://codecov.io/gh/lexicalunit/spellbot
[contributors]:     https://github.com/lexicalunit/spellbot/graphs/contributors
[db-url]:           https://docs.sqlalchemy.org/en/latest/core/engines.html
[lexicalunit]:      http://github.com/lexicalunit
[mit-badge]:        https://img.shields.io/badge/License-MIT-yellow.svg
[mit]:              https://opensource.org/licenses/MIT
[pypi-badge]:       https://img.shields.io/pypi/v/spellbot
[pypi]:             https://pypi.org/project/spellbot/
[python-badge]:     https://img.shields.io/badge/python-3.7+-blue.svg
[python]:           https://www.python.org/
[spelltable]:       https://www.spelltable.com/

