2020-01-02 05:39:52 +00:00
|
|
|
# arikawa
|
|
|
|
|
2020-11-19 20:00:14 +00:00
|
|
|
[![ Pipeline Status ][pipeline_img ]][pipeline ]
|
|
|
|
[![ Report Card ][goreportcard_img]][goreportcard]
|
|
|
|
[![ Godoc Reference ][pkg.go.dev_img ]][pkg.go.dev ]
|
|
|
|
[![ Examples ][examples_img ]][examples ]
|
|
|
|
[![ Discord Gophers ][dgophers_img ]][dgophers ]
|
|
|
|
[![ Hime Arikawa ][himeArikawa_img ]][himeArikawa ]
|
2020-01-16 05:04:08 +00:00
|
|
|
|
2020-01-02 05:39:52 +00:00
|
|
|
A Golang library for the Discord API.
|
2020-01-16 03:28:21 +00:00
|
|
|
|
2020-11-19 20:00:14 +00:00
|
|
|
[dgophers]: https://discord.gg/7jSf85J
|
|
|
|
[dgophers_img]: https://img.shields.io/badge/Discord%20Gophers-%23arikawa-%237289da?style=flat-square
|
|
|
|
|
2021-11-09 23:54:51 +00:00
|
|
|
[examples]: https://github.com/diamondburned/arikawa/tree/v3/0-examples
|
2020-11-19 20:00:14 +00:00
|
|
|
[examples_img]: https://img.shields.io/badge/Example-__example%2F-blueviolet?style=flat-square
|
|
|
|
|
2021-11-03 22:41:47 +00:00
|
|
|
[pipeline]: https://builds.sr.ht/~diamondburned/arikawa
|
|
|
|
[pipeline_img]: https://builds.sr.ht/~diamondburned/arikawa.svg?style=flat-square
|
2020-11-19 20:00:14 +00:00
|
|
|
|
2021-06-02 02:53:19 +00:00
|
|
|
[pkg.go.dev]: https://pkg.go.dev/github.com/diamondburned/arikawa/v3
|
|
|
|
[pkg.go.dev_img]: https://pkg.go.dev/badge/github.com/diamondburned/arikawa/v3
|
2020-11-19 20:00:14 +00:00
|
|
|
|
|
|
|
[himeArikawa]: https://hime-goto.fandom.com/wiki/Hime_Arikawa
|
|
|
|
[himeArikawa_img]: https://img.shields.io/badge/Hime-Arikawa-ea75a2?style=flat-square
|
|
|
|
|
|
|
|
[goreportcard]: https://goreportcard.com/report/github.com/diamondburned/arikawa
|
|
|
|
[goreportcard_img]: https://goreportcard.com/badge/github.com/diamondburned/arikawa?style=flat-square
|
|
|
|
|
|
|
|
|
2020-01-18 21:51:57 +00:00
|
|
|
## Examples
|
|
|
|
|
2021-06-02 02:53:19 +00:00
|
|
|
### [Simple](https://github.com/diamondburned/arikawa/tree/v3/_example/simple)
|
2020-01-18 21:51:57 +00:00
|
|
|
|
|
|
|
Simple bot example without any state. All it does is logging messages sent into
|
2020-11-19 20:00:14 +00:00
|
|
|
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.
|
2020-01-18 21:51:57 +00:00
|
|
|
|
2021-06-02 02:53:19 +00:00
|
|
|
### [Undeleter](https://github.com/diamondburned/arikawa/tree/v3/_example/undeleter)
|
2020-01-18 21:51:57 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2020-11-19 20:00:14 +00:00
|
|
|
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.
|
2020-01-18 21:51:57 +00:00
|
|
|
|
2021-09-28 20:19:04 +00:00
|
|
|
### Bare Minimum Print Example
|
|
|
|
|
|
|
|
The least amount of code recommended to have a bot that logs all messages to
|
|
|
|
console.
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
|
|
|
|
"github.com/diamondburned/arikawa/v3/gateway"
|
|
|
|
"github.com/diamondburned/arikawa/v3/state"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
s := state.New("Bot " + os.Getenv("DISCORD_TOKEN"))
|
|
|
|
s.AddIntents(gateway.IntentGuilds | gateway.IntentGuildMessages)
|
|
|
|
s.AddHandler(func(m *gateway.MessageCreateEvent) {
|
|
|
|
log.Printf("%s: %s", m.Author.Username, m.Content)
|
|
|
|
})
|
|
|
|
|
|
|
|
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
if err := s.Open(ctx); err != nil {
|
|
|
|
log.Println("cannot open:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
<-ctx.Done() // block until Ctrl+C
|
|
|
|
|
|
|
|
if err := s.Close(); err != nil {
|
|
|
|
log.Println("cannot close:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-02-24 05:40:44 +00:00
|
|
|
### Bare Minimum Bot
|
|
|
|
|
|
|
|
The least amount of code for a basic ping-pong bot. It's similar to Serenity's
|
|
|
|
Discord bot example in the README.
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2021-06-02 02:53:19 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/gateway"
|
2021-11-10 02:30:58 +00:00
|
|
|
"github.com/diamondburned/arikawa/v3/utils/bot"
|
2021-02-24 05:40:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
bot.Run(os.Getenv("DISCORD_TOKEN"), &Bot{},
|
|
|
|
func(ctx *bot.Context) error {
|
|
|
|
ctx.HasPrefix = bot.NewPrefix("!")
|
2021-08-08 22:02:11 +00:00
|
|
|
return nil
|
2021-02-24 05:40:44 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Bot struct {
|
|
|
|
Ctx *bot.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Bot) Ping(*gateway.MessageCreateEvent) (string, error) {
|
|
|
|
return "Pong!", nil
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-01-20 03:45:11 +00:00
|
|
|
|
2021-09-18 07:39:34 +00:00
|
|
|
## Where is package `bot`?
|
2020-11-19 20:00:14 +00:00
|
|
|
|
2021-09-18 07:39:34 +00:00
|
|
|
Package bot has now been deprecated after Discord's decision to eventually
|
|
|
|
deprecate regular message events as means of commanding bots. We've decided to
|
|
|
|
move the old `bot` package into `utils/` to signify that it should no longer be
|
|
|
|
used.
|
|
|
|
|
|
|
|
Moving `bot` into `utils/` will allow us to eventually rewrite the whole package
|
|
|
|
to use slash commands without worrying about breaking the old (v2) API, which is
|
|
|
|
great, because almost nothing translates well from the previous design to slash
|
|
|
|
commands.
|
2020-01-20 03:45:11 +00:00
|
|
|
|
|
|
|
|
2020-01-18 21:51:57 +00:00
|
|
|
## Comparison: Why not discordgo?
|
|
|
|
|
|
|
|
Discordgo is great. It's the first library that I used when I was learning Go.
|
2020-01-19 16:35:32 +00:00
|
|
|
Though there are some things that I disagree on. Here are some ways that this
|
|
|
|
library is different:
|
2020-01-18 21:51:57 +00:00
|
|
|
|
|
|
|
- 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.
|
2020-01-19 21:54:16 +00:00
|
|
|
- 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.
|
2020-01-18 21:51:57 +00:00
|
|
|
- No code generation: just so the library is a lot easier to maintain.
|
|
|
|
|
2020-11-19 20:00:14 +00:00
|
|
|
|
2020-01-16 03:28:21 +00:00
|
|
|
## Testing
|
|
|
|
|
|
|
|
The package includes integration tests that require `$BOT_TOKEN`. To run these
|
2020-07-29 23:29:01 +00:00
|
|
|
tests, do:
|
2020-01-16 03:28:21 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
export BOT_TOKEN="<BOT_TOKEN>"
|
2020-11-19 20:00:14 +00:00
|
|
|
go test -tags integration -race ./...
|
2020-01-16 03:28:21 +00:00
|
|
|
```
|