Skip to content

zaikio/zaikio-hub-ruby

Repository files navigation

Zaikio::Hub

Ruby API Client for Zaikio's Hub.

Installation

1. Add this line to your application's Gemfile:

gem 'zaikio-hub'

And then execute:

$ bundle

Or install it yourself as:

$ gem install zaikio-hub

2. Configure the gem:

# config/initializers/zaikio_hub.rb

Zaikio::Hub.configure do |config|
  config.environment = :production # sandbox or production
end

Usage

The Hub Client has an ORM like design. However, we distinguish between the contexts of the organization and the person.

For the requests to work, a valid JSON Web token with the correct OAuth Scopes must always be provided. Please refer to zaikio-oauth_client.

If you want to know which actions are available and which scopes are required, please refer to the Directory API Reference.

As an organization

token = "..." # Your valid JWT for an organization
Zaikio::Hub.with_token(token) do
  organization = Zaikio::Hub::CurrentOrganization.new

  # Fetch data
  organization.memberships.find('abc')

  # Note that .all understands pagination headers and will fetch all pages
  organization.members.all
  organization.machines.all
  organization.sites.all
  organization.sites.find('123')
  organization.business_relationships.all
  organization.fetch
  organization.name

  # Create new resources
  organization.business_relationships.create(target_id: "abcd-efgh", kind: "printer", reference: "a-123")
  organization.machines.create(name: "Speedmaster 2020", manufacturer: "heidelberg", kind: "sheetfed_digital_press", serial_number: "HDB1337", site_id: "d6308910-f5ae-58c0-aba7-d099947845c6")
  organization.sites.create(name: "Mainz", address_attributes: {
    addressee: "Crispy Mountain GmbH",
    text: "Emmerich-Josef-Straße 1A, 55116 Mainz"
  })

  # Delete resources
  organization.machines.first.destroy
end

As a person

token = "..." # Your valid JWT for a person
Zaikio::Hub.with_token(token) do
  person = Zaikio::Hub::CurrentPerson.new

  # Fetch Data
  person.organizations
  person.organization_memberships
  person.fetch
  person.full_name

  organization = person.admin_organizations.find(&:connected?)
  organization.machines.all
  organization.sites.all

  # Update details
  person.update(first_name: "Lisa", name: "Simpson", pronoun: "She/Her")
end

Use client object

# Organization JWT
client = Zaikio::Hub::Client.from_token(org_token)

client.organization.name
client.sites.first.name
machine = client.machines.create(
  name: "Machine Name",
  kind: "sheetfed_digital_press",
  manufacturer: "My Manufacturer"
)

# Basic Auth
client = Zaikio::Hub::Client.from_credentials(client_id, client_secret)
client.organization # raises Error
connection = client.connections.first
client.test_accounts.create(
  name: "My Test Org",
  country_code: "DE",
  kinds: ["printer"],
  connection_attributes: ["procurement_consumer"]
)

Other Use Cases

Zaikio::Hub.with_basic_auth(client_id, client_secret) do
  # Get total number of records
  Zaikio::Hub::Connection.per_page(10).total_count
  #=> 20

  # Fetch just the second page
  Zaikio::Hub::Connection.per_page(10).page(2).find_some

  # All
  all_connections = Zaikio::Hub::Connection.all.to_a

  subscription = Zaikio::Hub::Subscription.find("Organization-b1475f65-236c-58b8-96e1-e1778b43beb7")
  subscription.plan # => "advanced"
  subscription.activate!
  subscription.increment_usage_by!(:orders_created, 12)
end

Zaikio::Hub.with_basic_auth(client_id, client_secret) do
  Zaikio::Hub::TestAccount.create(
    name: "My Test Org",
    country_code: "DE",
    kinds: ["printer"],
    connection_attributes: ["procurement_consumer"]
  )
end

roles = Zaikio::Hub::Role.all
revoked_access_tokens = Zaikio::Hub::RevokedAccessToken.all

Zaikio::Hub.with_token(token) do
  Zaikio::Hub::RevokedAccessToken.create
end

Error Handling

If an unexpected error occurs with an API call (i.e. an error that has no status code 2xx, 404 or 422) then a Zaikio::ConnectionError is thrown automatically (for 404 there will be a Zaikio::ResourceNotFound).

This can be easily caught using the with_fallback method. We recommend to always work with fallbacks.

Zaikio::Hub.with_token(token) do
  person = Zaikio::Hub::CurrentPerson
           .find_with_fallback(Zaikio::Hub::CurrentPerson.new(full_name: "Hello World"))

  person.organizations # Automatically uses empty array as fallback
end

Zaikio::Hub.with_token(token) do
  organization = Zaikio::Hub::CurrentOrganization.new

  organization.machines.with_fallback.all
  organization.machines
    .with_fallback(Zaikio::Hub::Machine.new(name: 'My Machine'))
    .find('machine-id')


  organization.machines
    .with_fallback(Zaikio::Hub::Machine.new(name: 'My Machine'))
    .find('machine-does-not-exist') # => raises Zaikio::ResourceNotFound

  begin
    organization.machines.create(name: "Machine Name")
  rescue Zaikio::ConnectionError
    # Do something
  end
end