A Reactor DSL extension for making HTTP requests with Req.
Find a file
James Harton d30ec6d22d
Some checks failed
continuous-integration/drone/push Build is failing
chore: release version v0.1.0
2024-08-13 16:47:58 +12:00
config chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
documentation/dsls chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
lib/reactor chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
test chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
.drone.yml chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
.formatter.exs chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
.gitignore chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
.tool-versions chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
CHANGELOG.md chore: release version v0.1.0 2024-08-13 16:47:58 +12:00
LICENSE.md chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
mix.exs chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
mix.lock chore: prepare for initial release. 2024-08-13 16:47:58 +12:00
README.md chore: prepare for initial release. 2024-08-13 16:47:58 +12:00

Reactor.Req

Build Status Hex.pm Hippocratic License HL3-FULL

A Reactor extension that provides steps for working with HTTP requests via Req.

Example

The following example uses Reactor to retrieve the repository description from the Forgejo API:

defmodule GetForgejoRepoDescription do
  use Reactor, extensions: [Reactor.Req]

  input :hostname
  input :owner
  input :repo

  step :repo_url do
    argument :hostname, input(:hostname)
    argument :owner, input(:owner)
    argument :repo, input(:repo)

    run fn args ->
      URI.new("https://#{args.hostname}/api/v1/repos/#{args.owner}/#{args.repo}")
    end
  end

  req_get :get_repo do
    url result(:repo_url)
    headers value([accept: "application/json"])
    http_errors value(:raise)
  end

  step :get_description do
    argument :description, result(:get_repo, [:body, "description"])
    run fn args -> {:ok, args.description} end
  end
end

Reactor.run!(GetForgejoRepoDescription, %{
  hostname: "harton.dev",
  owner: "james",
  repo: "reactor_req"
})

# => "A Reactor DSL extension for making HTTP requests with Req."

Installation

If available in Hex, the package can be installed by adding reactor_req to your list of dependencies in mix.exs:

def deps do
  [
    {:reactor_req, "~> 0.1.0"}
  ]
end

Documentation for the latest release is available on HexDocs.

Github Mirror

This repository is mirrored on Github from it's primary location on my Forgejo instance. Feel free to raise issues and open PRs on Github.

License

This software is licensed under the terms of the HL3-FULL, see the LICENSE.md file included with this package for the terms.

This license actively proscribes this software being used by and for some industries, countries and activities. If your usage of this software doesn't comply with the terms of this license, then contact me with the details of your use-case to organise the purchase of a license - the cost of which may include a donation to a suitable charity or NGO.