resas-api 0.1.6

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 14469c889832f3c2a1f719ca9866df60c9e04c27
4
+ data.tar.gz: 573c7392719009bbead1c9961fd7c4e12325dd3c
5
+ SHA512:
6
+ metadata.gz: 5a9f0e6ebf98a95082b544a8ed292e48380456608eb723f1231ddfe9e912fb0e8d1a67a4547c65d8a6749e77ed2443c235f61e99176170884b9c5ea3b4896087
7
+ data.tar.gz: 1b5dc9f6c13cd34df1448e4467035543e3e78843d303d4a324d4824a2b32ccb38169b3f7d86c972aa69c8898cbb602c748602d45c446da5708d460592957f37e
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.13.2
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at osorubeki.fujita@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in resas-api.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Shu Fujita
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # Resas::Api
2
+
3
+ Resas::Api は、[RESAS](https://resas.go.jp/) (Regional Economy Society Analyzing System) をRubyで扱いやすくするための Gem です。
4
+
5
+ ## Installation
6
+
7
+ Gem 内部で Resas::Api を使用する場合は、Gemfileに
8
+
9
+ ```ruby
10
+ gem 'resas-api'
11
+ ```
12
+
13
+ を指定してください。
14
+
15
+ また、環境変数 RESAS_API_ACCESS_KEY に、[https://opendata.resas-portal.go.jp/form.html]より取得したAPIキーを指定してください。
16
+
17
+ ## Usage
18
+
19
+ ### Example
20
+
21
+ ```ruby
22
+ require 'resas/api' #=> true
23
+ client = Resas::Api::Client.instance
24
+ #=> #<Resas::Api::Client:0x007fecf700d980
25
+ @header={"X-API-KEY"=>"[Your API Key]", "Content-Type"=>"application/json"},
26
+ @http=#<Net::HTTP opendata.resas-portal.go.jp:443 open=false>>
27
+ res = client.get( 'industry', 'patent', 'list', {year: 2014, mode: 1, pref_code:13,city_code: '-', patent_holder_id: 'C34987964', sort1:3, sort2: 1, offset: 0} )
28
+ #=> #<Net::HTTPOK 200 OK readbody=true>
29
+ res.body
30
+ #=>
31
+ ```
32
+
33
+ ## Contributing
34
+
35
+ バグの報告、プルリクエストは[https://github.com/nard-tech/resas-api]までどうぞ。
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/nard-tech/resas-api.
37
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
38
+
39
+
40
+ ## License
41
+
42
+ このGemは[MITライセンス](http://opensource.org/licenses/MIT)で公開されています。
43
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "resas/api"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/resas/api.rb ADDED
@@ -0,0 +1,23 @@
1
+ require 'resas/api/version'
2
+ require 'resas/api/client'
3
+ require 'resas/api/client/path'
4
+ require 'resas/api/client/response'
5
+ require 'resas/api/client/response/body'
6
+ require 'resas/api/client/response/body/result'
7
+
8
+ module Resas
9
+ module Api
10
+
11
+ class << self
12
+ attr_accessor :api_version
13
+ end
14
+
15
+ self.api_version = 'v1-rc.1'
16
+
17
+ # @return [Resas::Api::Client]
18
+ def self.client
19
+ @client ||= Resas::Api::Client.instance
20
+ end
21
+
22
+ end
23
+ end
@@ -0,0 +1,38 @@
1
+ require 'uri'
2
+ require 'net/http'
3
+ require 'singleton'
4
+
5
+ module Resas
6
+ module Api
7
+ class Client
8
+
9
+ include Singleton
10
+
11
+ API_ENDPOINT = 'https://opendata.resas-portal.go.jp'
12
+
13
+ def initialize
14
+ uri = ::URI.parse( API_ENDPOINT )
15
+
16
+ @http = Net::HTTP.new( uri.host, uri.port )
17
+ @http.use_ssl = ( uri.scheme == 'https' )
18
+
19
+ @header = { 'X-API-KEY' => ENV[ 'RESAS_API_ACCESS_KEY' ], 'Content-Type' => 'application/json' }
20
+ # @http.verify_mode = OpenSSL::SSL::VERIFY_NONE
21
+ end
22
+
23
+ def get( *args )
24
+ api_version = Resas::Api.api_version
25
+ response = @http.get( Resas::Api::Client::Path.get( api_version, *args ), @header )
26
+ Resas::Api::Client::Response.new( response )
27
+ end
28
+
29
+ # @return [URI::HTTP]
30
+ def path( *args )
31
+ api_version = Resas::Api.api_version
32
+ URI.join( API_ENDPOINT, Resas::Api::Client::Path.get( api_version, *args ) )
33
+ end
34
+
35
+ end
36
+
37
+ end
38
+ end
@@ -0,0 +1,59 @@
1
+ require 'active_support'
2
+ require 'active_support/core_ext'
3
+ require 'uri'
4
+ require 'pathname'
5
+
6
+ class Resas::Api::Client::Path
7
+
8
+ def self.get( api_version, *args )
9
+ args = [ args ]
10
+ args.flatten!
11
+ options = args.extract_options!
12
+ new( api_version, *args, options ).to_s
13
+ end
14
+
15
+ def initialize( api_version, *namespaces, options )
16
+ raise TypeError unless namespaces.instance_of?( Array )
17
+ raise TypeError unless options.instance_of?( Hash )
18
+
19
+ @api_version = api_version
20
+ @namespaces = namespaces.flatten.map( &:to_s ).map { | str |
21
+ str.split( '/' ).map { | str2 | str2.camelize( :lower ) }
22
+ }.flatten
23
+ @options = options
24
+ end
25
+
26
+ def to_s
27
+ result = '/' + dirs.join( '/' )
28
+ _queries = queries
29
+
30
+ if _queries.present?
31
+ result += "?#{ _queries }"
32
+ end
33
+
34
+ result
35
+ end
36
+
37
+ private
38
+
39
+ def dirs
40
+ [ 'api', @api_version, @namespaces ].flatten
41
+ end
42
+
43
+ def queries
44
+ _parameters = parameters
45
+ _parameters.present? ? ::URI.encode_www_form( _parameters ) : nil
46
+ end
47
+
48
+ def parameters
49
+ h = {}
50
+ return nil if @options.blank?
51
+
52
+ @options.each do | k, v |
53
+ h[ k.to_s.camelize( :lower ) ] = [ v ].flatten.join( ',' )
54
+ end
55
+
56
+ h
57
+ end
58
+
59
+ end
@@ -0,0 +1,15 @@
1
+ class Resas::Api::Client::Response
2
+
3
+ def initialize( result )
4
+ @result = result
5
+ end
6
+
7
+ def body
8
+ Resas::Api::Client::Response::Body.new( @result.body )
9
+ end
10
+
11
+ def result
12
+ body.result
13
+ end
14
+
15
+ end
@@ -0,0 +1,17 @@
1
+ require 'json'
2
+
3
+ class Resas::Api::Client::Response::Body
4
+
5
+ def initialize( body )
6
+ @body = JSON.parse( body )
7
+ end
8
+
9
+ def result
10
+ Resas::Api::Client::Response::Body::Result.new( @body[ 'result' ] )
11
+ end
12
+
13
+ def name
14
+ @body[ 'name' ]
15
+ end
16
+
17
+ end
@@ -0,0 +1,22 @@
1
+ class Resas::Api::Client::Response::Body::Result
2
+
3
+ def initialize( result )
4
+ @result = result
5
+ end
6
+
7
+ def method_missing( method_name, *args, &block )
8
+ if @result.respond_to?( method_name )
9
+ @result.send( method_name, *args, &block )
10
+ else
11
+ super
12
+ end
13
+ rescue NoMethodError => e
14
+ puts "method_name: #{ method_name }, @result.class: #{ @result.class }"
15
+ raise e
16
+ end
17
+
18
+ def respond_to_missing?( symbol )
19
+ @result.respond_to?( method_name, true )
20
+ end
21
+
22
+ end
@@ -0,0 +1,7 @@
1
+ module Resas
2
+ module Api
3
+
4
+ VERSION = '0.1.6'
5
+
6
+ end
7
+ end
data/resas-api.gemspec ADDED
@@ -0,0 +1,37 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'resas/api/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "resas-api"
8
+ spec.version = Resas::Api::VERSION
9
+ spec.authors = ["Shu Fujita"]
10
+ spec.email = ["s.fujita@nard.tech"]
11
+
12
+ spec.summary = 'API for RESAS'
13
+ spec.description = 'RESAS (Regional Economy Society Analyzing System) is developed by Japanese government. (https://resas.go.jp/) This gem enables you to access to API more easily.'
14
+ spec.homepage = 'https://github.com/nard-tech/resas-api'
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.13"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "rspec", "~> 3.0"
36
+ spec.add_development_dependency 'activesupport', '~> 5.0', '>= 5.0.0.1'
37
+ end
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resas-api
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.6
5
+ platform: ruby
6
+ authors:
7
+ - Shu Fujita
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-11-11 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.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: activesupport
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.0'
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 5.0.0.1
65
+ type: :development
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '5.0'
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 5.0.0.1
75
+ description: RESAS (Regional Economy Society Analyzing System) is developed by Japanese
76
+ government. (https://resas.go.jp/) This gem enables you to access to API more easily.
77
+ email:
78
+ - s.fujita@nard.tech
79
+ executables: []
80
+ extensions: []
81
+ extra_rdoc_files: []
82
+ files:
83
+ - ".gitignore"
84
+ - ".rspec"
85
+ - ".travis.yml"
86
+ - CODE_OF_CONDUCT.md
87
+ - Gemfile
88
+ - LICENSE.txt
89
+ - README.md
90
+ - Rakefile
91
+ - bin/console
92
+ - bin/setup
93
+ - lib/resas/api.rb
94
+ - lib/resas/api/client.rb
95
+ - lib/resas/api/client/path.rb
96
+ - lib/resas/api/client/response.rb
97
+ - lib/resas/api/client/response/body.rb
98
+ - lib/resas/api/client/response/body/result.rb
99
+ - lib/resas/api/version.rb
100
+ - resas-api.gemspec
101
+ homepage: https://github.com/nard-tech/resas-api
102
+ licenses:
103
+ - MIT
104
+ metadata: {}
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.5.1
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: API for RESAS
125
+ test_files: []