Giter Club home page Giter Club logo

discord-haskell's Introduction

discord-haskell Build Status

Please refer to Getting Started and Notes when relevant. A few minutes of reading can save you hours of debugging.

Recent change: master branch has the potentially broken, most recent commits, stable has the most recent working version. Pull requests are automatically made against master and it's nice to merge pull requests to test them.

Getting Started

1 Create an application at the Developer Portal: https://discordapp.com/developers/applications.

2 Add a 'Bot User' using the settings pane on the left. Take note of CLIENT ID on this page.

3 Use the BOT PERMISSIONS tab to compute a Permissions Int to use for step 3

3 Invite the bot to a server filling in the <information> below. Client ID and Permissions come from previous steps. https://discordapp.com/oauth2/authorize?client_id=<CLIENT_ID>&scope=bot&permissions=<PERMISSIONS>

4 Tos end CreateMessage events with restCall, you must connect to the gateway at least once. Try running examples/gateway.hs with your token to satisfy this. This is a Discord requirement.

5 Look at the examples to get an idea of how the library is used. examples/gateway.hs, examples/rest.hs, examples/cache.hs, and examples/ping-pong.hs

6 Understand what's available to the bot. Rest API calls can modify Channels, Emoji, Guilds, etc. Most endpoints are covered with very similar names. List Guild Emojis becomes ListGuildEmojis. You can use :info in ghci on type constructors to explore the ADTs.

Gateway Events provide the other source of info, using nextEvent and sendCommand. Use :info to explore Event and GatewaySendable ADTs.

7 Add this library to your dependencies. discord-haskell is on hackage, open an issue if the dependencies are too strict and you can't add it to your project.. You can also use the github repo.

# in stack.yaml (if using stack)
resolver: lts-12.10
extra-deps:
- git: [email protected]:aquarial/discord-haskell.git
  commit: <most recent stable commit>
  extra-dep: true

# in project.cabal
  build-depends:       base
                     , discord-haskell

Notes

loginRest allows restCall. loginRestGateway allows restCall, nextEvent, sendCommand, and readCache. Use loginRest if you don't need the gateway.

Use Control.Exception.finally with stopDiscord to safely kill background threads when running examples in ghci (otherwise exit ghci and reopen to kill threads).

The examples will work on the stable branch. The master branch has the most recent (potentially) breaking changes.

To get the format to use for Emoji, type \:emoji: into a discord chat. You should copy-paste that into the request. This can be a bit finicky. The equivalent of :thumbsup::skin-tone-3: is "๐Ÿ‘\127997" for example, and a custom emoji will look like <name:id_number> or name:id_number.

Debugging

If something goes wrong with the library please open an issue. It is helpful, but not always necessary, to attach a log of what's going on when the library crashes.

Use loginRestGatewayWithLog :: Auth -> String -> IO (stuff) to write the events to a file. Remember to remove sensitive information before posting.

History

This library was originally forked from discord.hs. After rewriting the gateway/rest loops and extending the types I think it makes more sense to present this library as separate from the source. The APIs are not compatible.

TO DO

In roughly the order I'm working on them:

  • Finish REST request ADT. Search for -- todo pattern
  • Add data types for permissions and presences
  • Update channel types (fill out guildcategory)
  • Modify cache with Events
  • Add gateway ToJSON for events
  • Update comments on ADT types

discord-haskell's People

Contributors

aquarial avatar fwrs avatar harmon758 avatar marcotoniut avatar moredhel avatar pixelinc avatar relrod avatar t1m0thyj avatar taksuyu avatar tiltmesenpai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.