arikawa/README.md

145 lines
5.4 KiB
Markdown
Raw Normal View History

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
[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
### [Commands (Hybrid)](https://github.com/diamondburned/arikawa/tree/v3/0-examples/commands-hybrid)
commands-hybrid is an alternative variant of
[commands](https://github.com/diamondburned/arikawa/tree/v3/0-examples/commands),
where the program permits being hosted either as a Gateway-based daemon or as a
web server using the Interactions Webhook API.
Both examples demonstrate adding interaction commands into the bot as well as an
example of routing those commands to be executed.
2021-12-20 21:57:04 +00:00
### [Simple](https://github.com/diamondburned/arikawa/tree/v3/0-examples/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-12-20 21:57:04 +00:00
### [Undeleter](https://github.com/diamondburned/arikawa/tree/v3/0-examples/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
### Bare Minimum Messaging 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("BOT_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.Connect(ctx); err != nil {
log.Println("cannot connect:", err)
}
2021-02-24 05:40:44 +00:00
}
```
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.
- 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
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
```