Sha256: 49d079eea39f128b5c08ac48b1290751d463c545599db479a07e6fa59ddf1992

Contents?: true

Size: 1.63 KB

Versions: 1

Compression:

Stored size: 1.63 KB

Contents

# frozen_string_literal: true

require 'companies_house_hub/base_model'
require 'companies_house_hub/models/address'
require 'companies_house_hub/models/filing_history'

module CompaniesHouseHub
  class Company < BaseModel
    SEARCH_PATH = '/search'
    FIND_PATH = '/company/:company_number'

    attr_reader :number, :name, :created_at, :address, :type, :jurisdiction, :has_been_liquidated
    attr_reader :status, :accounts

    alias company_number number
    alias company_name name
    alias date_of_creation created_at
    alias company_status status

    def self.search(name, per_page:, start:)
      options = { q: name, items_per_page: per_page, start_index: start }

      result = get(SEARCH_PATH, options)

      result.body.each { |company_json| new(company_json) }
    end

    def self.find(company_number, params = {})
      url = format_url(FIND_PATH, company_number: company_number.to_s)

      result = get(url, params)

      return unless result.success?

      new(result.body)
    end

    def initialize(json = {})
      p json
      @number = json.dig(:company_number)
      @has_been_liquidated = json.dig(:has_been_liquidated)
      @jurisdiction = json.dig(:jurisdiction)
      @name = json.dig(:company_name)
      @created_at = json.dig(:date_of_creation)
      @address = Address.new(json.dig(:registered_office_address))
      @status = json.dig(:company_status)
      @type = json.dig(:type)
      @accounts = json.dig(:accounts)
    end

    def filing_histories
      FilingHistory.all(company_number: @number)
    end

    def full_address
      @address.full
    end

    def active?
      @status == 'active'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
companies_house_hub-0.0.10 lib/companies_house_hub/models/company.rb