Clubhouse client library for Elixir π§ββοΈ
Uses Clubhouse REST API V3: https://clubhouse.io/api/rest/v3/
Add exclubhouse
to your list of dependencies in mix.exs
:
def deps do
[
{:exclubhouse, "~> 0.6.0"}
]
end
config :exclubhouse,
token: "xxxxx-xxxx-xxxx-xxx-xxx"
Here's CH help center doc on how to generate a CH API token
alias ExClubhouse.{Api, Model}
epic_input = Input.Epic{
name: "Your first Epic",
description: "Some description for the epic"
}
Api.Epic.create(epic_input)
Output example:
{:ok,
%ExClubhouse.Model.Epic{
app_url: "https://app.clubhouse.io/kamehouse/epic/22",
description: "Some description for the epic",
id: 22,
name: "Your first Epic",
...
updated_at: "2020-03-15T21:43:04Z"
}}
You can find all API grouped under ExClubhouse.Api
In some cases we want to use different tokens for the same call, use the response as-is or simply debug a call to the API using iEx. For those case we can build the API call like this:
- Build a session
- Create an operation
- Pass the operation and session to the client to make a request
- Parse the client's result
E.g.
alias ExClubhouse.{Api, Client, Session, Config, Model, Parse}
# 1. Get a default session from the config
sess = Config.default() |> Session.from()
# Or Build it passing the actual token
sess = %Session{token: "xxxxx-xxxx-xxxx-xxx-xxx"}
# 2. Build the operation
op = Ops.Epic.get(42)
# 3. Make the request
result = Client.HTTP.request(op, sess)
# 4 Parse the result
{:ok, %Model.Epic{} = epic42} = Parser.parse(result)
Here's a list of design guidelines used in the project:
- πΈDon't hide anything, but make things easy: The lib can be used as Op Client Parser independently or
through
ExClubhouse.Api
. - π Decouple operations, HTTP client and parsing: To allow people to use the lib as they need (e.g. with or without models/structs).
- π Results are parsed and presented as structs: for easy pattern matching and usage.
- πββοΈ Typespec surface API: Help make correct API calls.
- Fix for Story update #4
- File upload support added
- Search API added
- Integrate with Coveralls
- Fixes bug on
Label.stories_list/1
function - Increases test coverage to >80%
- Initial release
Please see LICENSE for licensing details.