1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-17 15:38:46 +00:00
arikawa/README.md

131 lines
4.8 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 ]
[![ Coverage ][coverage_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-06-02 02:53:19 +00:00
[examples]: https://github.com/diamondburned/arikawa/tree/v3/_example
2020-11-19 20:00:14 +00:00
[examples_img]: https://img.shields.io/badge/Example-__example%2F-blueviolet?style=flat-square
[pipeline]: https://gitlab.com/diamondburned/arikawa/pipelines
2021-06-02 02:53:19 +00:00
[pipeline_img]: https://gitlab.com/diamondburned/arikawa/badges/v3/pipeline.svg?style=flat-square
[coverage_img]: https://gitlab.com/diamondburned/arikawa/badges/v3/coverage.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-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/bot"
"github.com/diamondburned/arikawa/v3/gateway"
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("!")
},
)
}
type Bot struct {
Ctx *bot.Context
}
func (b *Bot) Ping(*gateway.MessageCreateEvent) (string, error) {
return "Pong!", nil
}
```
2021-06-02 02:53:19 +00:00
### [Advanced Bot](https://github.com/diamondburned/arikawa/tree/v3/_example/advanced_bot)
2020-01-20 03:45:11 +00:00
2020-11-19 20:00:14 +00:00
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](https://pkg.go.dev/github.com/diamondburned/arikawa/bot).
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
```