companies_nz 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +67 -0
- data/Rakefile +2 -0
- data/companies_nz.gemspec +24 -0
- data/lib/companies_nz.rb +10 -0
- data/lib/companies_nz/client.rb +44 -0
- data/lib/companies_nz/hmac_signer.rb +35 -0
- data/lib/companies_nz/version.rb +3 -0
- metadata +97 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 81b6ff240c7dd6ca7f15dc9aabb4674fb6cd2879
|
4
|
+
data.tar.gz: 0c4db57dcf69aadb63ef08fef1a5f4d9a2edca26
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: accf65c788656e72dc56eb3d027399133eb7db0f4f2218d83e4bba765dd6a6cbc8bd3800670bca1ca65b30d23df6d3c41053ae4020d4b2fb84734aa0518ced20
|
7
|
+
data.tar.gz: eb7e9bdeff98f963550c8df74603ff1bd953ecd10564b80d62b579c220e790cabddd1cea6ec5aaaf895b909dff8321e92a8b0a62fe2c62e1597934466a88193c
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Caleb
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# CompaniesNZ
|
2
|
+
|
3
|
+
This gem is designed for working with the New Zealand Companies Office
|
4
|
+
API.
|
5
|
+
|
6
|
+
To use this gem you will need:
|
7
|
+
|
8
|
+
A BusinessData account with the Companies Office, which will provide you
|
9
|
+
with:
|
10
|
+
|
11
|
+
1. An authentication key id (`key_id`)
|
12
|
+
|
13
|
+
2. A secret key (`secret_key`)
|
14
|
+
|
15
|
+
This gem also assumes that you are using the latest (v2.0) versions of
|
16
|
+
the entity search and entity details endpoints (the default
|
17
|
+
at the time of writing).
|
18
|
+
|
19
|
+
Visit the [BusinessData](http://www.business.govt.nz/businessdata) site
|
20
|
+
for more information, or contact the very helpful Companies Office team.
|
21
|
+
|
22
|
+
For now this gem only covers the authorization header HMAC SHA 256
|
23
|
+
signing and just returns the JSON for you to make of what you will.
|
24
|
+
Future versions may structure the data in Structs.
|
25
|
+
|
26
|
+
## Installation
|
27
|
+
|
28
|
+
Add this line to your application's Gemfile:
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
gem 'companies_nz'
|
32
|
+
```
|
33
|
+
|
34
|
+
And then execute:
|
35
|
+
|
36
|
+
$ bundle
|
37
|
+
|
38
|
+
Or install it yourself as:
|
39
|
+
|
40
|
+
$ gem install companies_nz
|
41
|
+
|
42
|
+
## Usage
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
|
46
|
+
# to use the test environment (www.eat.businessdata.govt.nz)
|
47
|
+
client = CompaniesNZ::Client.new(key_id: YOUR_KEY_ID, secret_key: YOUR_SECRET_KEY, test: true)
|
48
|
+
# to use the live environment
|
49
|
+
client = CompaniesNZ::Client.new(key_id: YOUR_KEY_ID, secret_key: YOUR_SECRET_KEY))
|
50
|
+
|
51
|
+
# to search for entities with 'Mega' in the name
|
52
|
+
resp = client.search_entities 'Mega' # returns a JSON parsed as a Ruby hash
|
53
|
+
|
54
|
+
# to search for roles by an individual's name
|
55
|
+
resp = client.search_roles 'John Archibald Banks'
|
56
|
+
|
57
|
+
# to get company details by company number
|
58
|
+
resp = client.entity_details 1947574
|
59
|
+
```
|
60
|
+
|
61
|
+
## Contributing
|
62
|
+
|
63
|
+
1. Fork it ( https://github.com/nzherald/companies_nz/fork )
|
64
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
65
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
66
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
67
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'companies_nz/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'companies_nz'
|
8
|
+
spec.version = CompaniesNZ::VERSION
|
9
|
+
spec.authors = ['Caleb']
|
10
|
+
spec.email = ['caleb.tutty@nzherald.co.nz']
|
11
|
+
spec.summary = %q{New Zealand Companies Office API wrapper}
|
12
|
+
spec.description = %q{This gem handles the HMAC SHA256 request signing required for the NZ Companies Office's API, using Faraday to make the request}
|
13
|
+
spec.homepage = 'http://github.com/nzherald/companies_nz'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_development_dependency 'bundler', '~> 1.7'
|
22
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
23
|
+
spec.add_runtime_dependency 'faraday', '~> 0.9.1'
|
24
|
+
end
|
data/lib/companies_nz.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'uri'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
module CompaniesNZ
|
5
|
+
class Client
|
6
|
+
attr_reader :signer, :http_client
|
7
|
+
|
8
|
+
def initialize(options = {})
|
9
|
+
@base_url = options.fetch(:test, false) ? TEST_URL : URL
|
10
|
+
@signer = HMACSigner.new(key_id: options.fetch(:key_id),
|
11
|
+
secret_key: options.fetch(:secret_key),
|
12
|
+
base_url: @base_url)
|
13
|
+
@http_client = Faraday.new(url: @base_url)
|
14
|
+
end
|
15
|
+
|
16
|
+
def search_entities(query)
|
17
|
+
query = URI.encode(query)
|
18
|
+
response = perform_request "/data/app/ws/rest/companies/entity/search/v2.0/#{query}"
|
19
|
+
JSON.parse(response.body)
|
20
|
+
end
|
21
|
+
|
22
|
+
def search_roles(query)
|
23
|
+
query = URI.encode(query)
|
24
|
+
response = perform_request "/data/app/ws/rest/companies/role/search/v1.0/#{query}"
|
25
|
+
JSON.parse(response.body)
|
26
|
+
end
|
27
|
+
|
28
|
+
def entity_details(company_number)
|
29
|
+
query = URI.encode(company_number.to_s)
|
30
|
+
response = perform_request "/data/app/ws/rest/companies/entity/v2.0/#{query}"
|
31
|
+
JSON.parse(response.body)
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def perform_request(url)
|
37
|
+
http_client.get(url) do |req|
|
38
|
+
req.headers['Accept'] = 'application/json'
|
39
|
+
req.headers['Date'] = signer.formatted_time
|
40
|
+
req.headers['Authorization'] = signer.generate_header(http_method: 'GET', url: url)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'base64'
|
2
|
+
require 'openssl'
|
3
|
+
require 'uri'
|
4
|
+
|
5
|
+
module CompaniesNZ
|
6
|
+
class HMACSigner
|
7
|
+
attr_reader :key_id, :base_url
|
8
|
+
|
9
|
+
def initialize(options = {})
|
10
|
+
@key_id = options.fetch(:key_id)
|
11
|
+
@secret_key = options.fetch(:secret_key)
|
12
|
+
@base_url = URI.parse(options.fetch(:base_url))
|
13
|
+
end
|
14
|
+
|
15
|
+
def generate_header(options)
|
16
|
+
key_id + ':' + sign(template(options))
|
17
|
+
end
|
18
|
+
|
19
|
+
def sign(data)
|
20
|
+
digest = OpenSSL::Digest.new('sha256')
|
21
|
+
result = OpenSSL::HMAC.digest(digest, @secret_key, data)
|
22
|
+
Base64.encode64 result
|
23
|
+
end
|
24
|
+
|
25
|
+
def template(options)
|
26
|
+
http_method, url = options.fetch(:http_method), options.fetch(:url)
|
27
|
+
"#{http_method}\n#{base_url.host}\n#{url}\n#{formatted_time}\n#{key_id}\napplication/json\n"
|
28
|
+
end
|
29
|
+
|
30
|
+
def formatted_time
|
31
|
+
# Spec states time should be in RFC1123 format
|
32
|
+
Time.now.gmtime.strftime('%a, %e %b %Y %H:%M:%S %z').sub(/ \+0000$/, ' GMT')
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: companies_nz
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Caleb
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: faraday
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.9.1
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.9.1
|
55
|
+
description: This gem handles the HMAC SHA256 request signing required for the NZ
|
56
|
+
Companies Office's API, using Faraday to make the request
|
57
|
+
email:
|
58
|
+
- caleb.tutty@nzherald.co.nz
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- companies_nz.gemspec
|
69
|
+
- lib/companies_nz.rb
|
70
|
+
- lib/companies_nz/client.rb
|
71
|
+
- lib/companies_nz/hmac_signer.rb
|
72
|
+
- lib/companies_nz/version.rb
|
73
|
+
homepage: http://github.com/nzherald/companies_nz
|
74
|
+
licenses:
|
75
|
+
- MIT
|
76
|
+
metadata: {}
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubyforge_project:
|
93
|
+
rubygems_version: 2.4.5
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: New Zealand Companies Office API wrapper
|
97
|
+
test_files: []
|