A Golang library and framework for the Discord API.
Go to file
diamondburned (Forefront) 85b793a1a7 Fixed some race conditions 2020-02-02 14:12:54 -08:00
_example Examples: updated 2020-01-26 01:08:53 -08:00
api discord: Fixed APIString method for emoji 2020-01-25 00:05:14 -08:00
bot Bot: trivial fixes 2020-01-28 16:01:39 -08:00
discord Add missing permissions to permission summaries 2020-01-27 20:51:56 +01:00
gateway Fixed some race conditions 2020-02-02 14:12:54 -08:00
handler Fixed Webhook Update event 2020-01-24 21:24:33 -08:00
internal Fixed some race conditions 2020-02-02 14:12:54 -08:00
session Minor fixes, undocumented things, and editorconfig 2020-01-19 13:54:16 -08:00
state discord: Fixed APIString method for emoji 2020-01-25 00:05:14 -08:00
.editorconfig Minor fixes, undocumented things, and editorconfig 2020-01-19 13:54:16 -08:00
.gitlab-ci.yml CI: Added test coverage 2020-01-31 09:32:51 -08:00
LICENSE Initial commit 2020-01-01 21:39:52 -08:00
README.md README: Added Go Report Card 2020-01-31 10:14:18 -08:00
go.mod Fixed some race conditions 2020-02-02 14:12:54 -08:00
go.sum Fixed some race conditions 2020-02-02 14:12:54 -08:00

README.md

arikawa

       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.

You-should-knows

  • The bot will fatally exit if it fails to reconnect to the Gateway after a certain amount of times. This is changeable in gateway.WSFatal, or (*Gateway).FatalLog.

Testing

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

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