A Golang library and framework for the Discord API.
Go to file
diamondburned ac2f3ba68a Bot: Close gracefully by default 2021-01-29 23:25:15 -08:00
.github Fixed FUNDING.yml 2020-12-11 16:50:47 -08:00
_example Discord: Add basic support for slash commands 2021-01-27 10:44:14 -08:00
api Discord: Add basic support for slash commands 2021-01-27 10:44:14 -08:00
bot Bot: Close gracefully by default 2021-01-29 23:25:15 -08:00
discord Discord: Add basic support for slash commands 2021-01-27 10:44:14 -08:00
gateway Gateway: Add graceful closing with CloseGracefully (#185) 2021-01-29 20:25:10 -08:00
internal CI: Add perseverance test for Gateway 2020-12-31 23:48:29 -08:00
session Bot: Close gracefully by default 2021-01-29 23:25:15 -08:00
state State: Error out on fetching permission of a channel not in guild 2021-01-05 21:09:16 -08:00
utils Gateway: Add graceful closing with CloseGracefully (#185) 2021-01-29 20:25:10 -08:00
voice CI: Add perseverance test for Gateway 2020-12-31 23:48:29 -08:00
.build.yml CI: Properly skip PRs 2021-01-28 13:41:43 -08:00
.editorconfig Minor fixes, undocumented things, and editorconfig 2020-01-19 13:54:16 -08:00
.gitlab-ci.yml CI: Removed perseverance test due to CI time 2021-01-05 13:39:13 -08:00
LICENSE Changed LICENSE. 2020-04-13 19:09:24 -07:00
README.md Example links in readme direct to v2 examples (#184) 2021-01-28 13:45:57 -08:00
arikawa.go *: Migrated Go Modules to v2 2020-10-28 15:39:59 -07:00
go.mod Moreatomic: Replaced invalid mutex with modified sync.Map impl 2020-12-19 02:35:13 -08:00
go.sum Moreatomic: Replaced invalid mutex with modified sync.Map impl 2020-12-19 02:35:13 -08:00

README.md

arikawa

 Pipeline Status  Coverage         Report Card      Godoc Reference  Examples         Discord Gophers  Hime Arikawa

A Golang library for the Discord API.

Examples

Simple

Simple bot example without any state. All it does is logging messages sent into the console. Run with BOT_TOKEN="TOKEN" go run .. This example only demonstrates the most simple needs; in most cases, bots should use the state or the bot router.

Undeleter

A slightly more complicated example. This bot uses a local state to cache everything, including messages. It detects when someone deletes a message, logging the content into the console.

This example demonstrates the PreHandler feature of the state library. PreHandler calls all handlers that are registered (separately from the session), calling them before the state is updated.

Advanced Bot

A complex example demonstrating the reflect-based command router that's built-in. The router turns exported struct methods into commands, its arguments into command arguments, and more.

The library is documented in details in the package documentation.

Comparison: Why not discordgo?

Discordgo is great. It's the first library that I used when I was learning Go. Though there are some things that I disagree on. Here are some ways that this library is different:

  • Better package structure: this library divides the Discord library up into smaller packages.
  • Cleaner API/Gateway structure separation: this library separates fields that would only appear in Gateway events, so to not cause confusion.
  • Automatic un-pagination: this library automatically un-paginates endpoints that would otherwise not return everything fully.
  • Flexible underlying abstractions: this library allows plugging in different JSON and Websocket implementations, as well as direct access to the HTTP client.
  • Flexible API abstractions: because packages are separated, the developer could choose to use a lower level package (such as gateway) or a higher level package (such as state).
  • Pre-handlers in the state: this allows the developers to access items from the state storage before they're removed.
  • Pluggable state storages: although only having a default state storage in the library, it is abstracted with an interface, making it possible to implement a custom remote or local state storage.
  • REST-updated state: this library will call the REST API if it can't find things in the state, which is useful for keeping it updated.
  • No code generation: just so the library is a lot easier to maintain.

Testing

The package includes integration tests that require $BOT_TOKEN. To run these tests, do:

export BOT_TOKEN="<BOT_TOKEN>"
go test -tags integration -race ./...