A Golang library and framework for the Discord API.
Go to file
diamondburned a0785bd657 CI: Increased time limit to account for slow integration tests 2020-07-11 00:06:31 -07:00
_example make all error messages lowercase 2020-05-16 23:14:49 +02:00
api API: code cleanup 2020-05-24 17:28:04 -07:00
bot Fix aliases appending 2020-05-24 23:08:55 -07:00
discord Discord: fix discovery splash url not getting properly calculated 2020-05-24 17:24:58 -07:00
gateway Gateway: Added Relationship events and handlers; minor reformatting 2020-07-11 00:02:57 -07:00
handler Gateway: Split GuildCreateEvent (#116) 2020-06-06 13:47:15 -07:00
session Session: Fixed a panic bug when the gateway fails 2020-06-29 11:00:07 -07:00
state Fixed a compile bug 2020-06-19 00:59:44 -07:00
utils Gateway: Split GuildCreateEvent (#116) 2020-06-06 13:47:15 -07:00
voice Voice: Fixed a potential Write() stalling bug 2020-05-20 15:05:50 -07:00
.editorconfig Minor fixes, undocumented things, and editorconfig 2020-01-19 13:54:16 -08:00
.gitlab-ci.yml CI: Increased time limit to account for slow integration tests 2020-07-11 00:06:31 -07:00
LICENSE Changed LICENSE. 2020-04-13 19:09:24 -07:00
README.md Bot: Added EditableCommands 2020-05-14 18:52:15 -07:00
arikawa.go Added a root package to allow go get 2020-04-27 11:41:28 -07:00
go.mod Cleaned up go.mod 2020-06-01 13:52:15 -07:00
go.sum Cleaned up go.mod 2020-06-01 13:52:15 -07: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 .

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 this library. PreHandler calls all handlers that are registered (separately from session), calling them before the state is updated.

Advanced Bot

A pretty complicated 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 has a pretty detailed documentation available in GoDoc Reference.

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 ./...