iij-dag-client 1.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.
Files changed (42) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +13 -0
  4. data/LICENSE.txt +174 -0
  5. data/Rakefile +43 -0
  6. data/config/settings.yml +11 -0
  7. data/iij-dag-client.gemspec +31 -0
  8. data/lib/dag.rb +33 -0
  9. data/lib/dag/client.rb +36 -0
  10. data/lib/dag/client/api.rb +295 -0
  11. data/lib/dag/client/api/cluster.rb +111 -0
  12. data/lib/dag/client/api/database.rb +58 -0
  13. data/lib/dag/client/api/job.rb +116 -0
  14. data/lib/dag/client/api/list_params.rb +36 -0
  15. data/lib/dag/client/api/rest_parameter.rb +149 -0
  16. data/lib/dag/client/api/storage.rb +354 -0
  17. data/lib/dag/client/api/storage_result.rb +52 -0
  18. data/lib/dag/client/api/table.rb +131 -0
  19. data/lib/dag/client/cluster.rb +26 -0
  20. data/lib/dag/client/cluster_validation.rb +59 -0
  21. data/lib/dag/client/database.rb +79 -0
  22. data/lib/dag/client/exception.rb +43 -0
  23. data/lib/dag/client/job.rb +56 -0
  24. data/lib/dag/client/job_validation.rb +22 -0
  25. data/lib/dag/client/model.rb +9 -0
  26. data/lib/dag/client/model/bucket.rb +20 -0
  27. data/lib/dag/client/model/bucket_collection.rb +34 -0
  28. data/lib/dag/client/model/cluster.rb +100 -0
  29. data/lib/dag/client/model/cluster_collection.rb +76 -0
  30. data/lib/dag/client/model/database.rb +34 -0
  31. data/lib/dag/client/model/database_collection.rb +51 -0
  32. data/lib/dag/client/model/job.rb +125 -0
  33. data/lib/dag/client/model/job_collection.rb +114 -0
  34. data/lib/dag/client/model/object.rb +56 -0
  35. data/lib/dag/client/model/object_collection.rb +64 -0
  36. data/lib/dag/client/model/table.rb +55 -0
  37. data/lib/dag/client/model/table_collection.rb +60 -0
  38. data/lib/dag/client/storage.rb +41 -0
  39. data/lib/dag/client/table.rb +16 -0
  40. data/lib/dag/client/version.rb +5 -0
  41. data/lib/dag/settings.rb +9 -0
  42. metadata +210 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0e8126df86a0e818b16fbae5695f2a214677d32a
4
+ data.tar.gz: 996466b1c6bdbad7c7e609213926dc53a004b60e
5
+ SHA512:
6
+ metadata.gz: fcd609c70c56f2385b9a0b143fe71789f8f61096f57add53d87177c9604d367646557d7966dda133ba3ec9cf9a1e8de5840bc945c7b0a8495b6ee1c56b84f8ae
7
+ data.tar.gz: 97d7b43edfc9f32b7e4d93e1ef3e6fe7a591303507564731a0f0e881f4b7c9b924582b3845f722889bd70f66d54c05beec7b980a472ba5ffedbf7a22ec29de67
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ lib/bundler/man
11
+ pkg
12
+ rdoc
13
+ spec/reports
14
+ test/tmp
15
+ test/version_tmp
16
+ tmp
17
+ .DS_Store
18
+ .idea
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :test do
6
+ gem 'timecop'
7
+ gem 'pry', '< 0.10.0'
8
+ gem 'pry-byebug'
9
+ gem 'webmock'
10
+ gem 'simplecov'
11
+ gem 'simplecov-rcov'
12
+ gem 'spork'
13
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,174 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
data/Rakefile ADDED
@@ -0,0 +1,43 @@
1
+ # -*- encoding: utf-8 -*-
2
+ #
3
+ #require "bundler/setup"
4
+
5
+ # gem install tasks, but remove "release"
6
+ #Rake::Task[:release].clear
7
+
8
+ #$:.unshift File.expand_path("../lib", __FILE__)
9
+ #require 'dag'
10
+ #require 'dag/client'
11
+ #require "rspec/core"
12
+ require 'bundler/gem_tasks'
13
+ require "rspec/core/rake_task"
14
+
15
+ RSpec::Core::RakeTask.new(:spec)
16
+ task :default => :spec
17
+
18
+
19
+ task :doc => "document:build"
20
+
21
+ namespace :spec do
22
+ [:api, :client, :models].each do |dir|
23
+ desc "Run #{dir} spec"
24
+ RSpec::Core::RakeTask.new(dir) do |t|
25
+ t.pattern = "spec/#{dir}/*_spec.rb"
26
+ end
27
+ end
28
+
29
+ task :without_sample => ['spec:api', 'spec:client', 'spec:models']
30
+ end
31
+
32
+ namespace :document do
33
+ task :build do
34
+ docpath = "../documents/parser"
35
+ if Dir.exist? docpath
36
+ pid = spawn("yard", "-o", docpath, STDERR => STDOUT)
37
+ Process.waitpid pid
38
+ else
39
+ puts "You don't have #{docpath} directory."
40
+ puts "Can't create a new document."
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,11 @@
1
+ defaults: &defaults
2
+ analysis_api: 'https://analysis-dag.iijgio.com'
3
+ storage_api: 'https://storage-dag.iijgio.com'
4
+ force_path_style: false
5
+ debug: false
6
+
7
+ test:
8
+ <<: *defaults
9
+ analysis_api: 'http://localhost:9393'
10
+ storage_api: 'http://localhost:9292'
11
+ force_path_style: true
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dag/client/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "iij-dag-client"
8
+ spec.version = Dag::Client::VERSION
9
+ spec.authors = ["iij"]
10
+ spec.email = ["dag-info@iij.ad.jp"]
11
+ spec.description = %q{iij gio dag library for ruby}
12
+ spec.summary = %q{iij gio dag library for ruby}
13
+ spec.homepage = "http://www.iij.ad.jp/biz/storage/"
14
+ spec.license = "Apache License 2.0"
15
+
16
+ spec.files = `git ls-files`.split($/).reject {|item| item =~ /^(sample|doc|README|CHANGELOG|.drone.yml|spec|.rspec)/ }
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_dependency "activesupport", "~> 4.2.0"
22
+ spec.add_dependency "httpclient", "~> 2.6.0"
23
+ spec.add_dependency "settingslogic", "~> 2.0.9"
24
+ spec.add_dependency "oj", "~> 2.11.2"
25
+ spec.add_dependency "mime-types", "~> 2.4.3"
26
+ spec.add_dependency "xml-simple", "~> 1.1.4"
27
+
28
+ spec.add_development_dependency "bundler", "~> 1.3"
29
+ spec.add_development_dependency "rake"
30
+ spec.add_development_dependency "rspec", "~> 3.1.0"
31
+ end
data/lib/dag.rb ADDED
@@ -0,0 +1,33 @@
1
+ $LOAD_PATH.unshift File.dirname(__FILE__)
2
+ require 'settingslogic'
3
+
4
+ require 'dag/client'
5
+ require 'dag/client/exception'
6
+ require 'dag/client/version'
7
+ require 'active_support/core_ext/object/blank'
8
+ require 'active_support/core_ext/object/try'
9
+ require 'active_support/core_ext/object/to_query'
10
+
11
+ module Dag
12
+ autoload :Model, 'dag/client/model'
13
+
14
+ autoload :Bucket, 'dag/client/model/bucket'
15
+ autoload :BucketCollection, 'dag/client/model/bucket_collection'
16
+
17
+ autoload :Cluster, 'dag/client/model/cluster'
18
+ autoload :ClusterCollection, 'dag/client/model/cluster_collection'
19
+
20
+ autoload :Database, 'dag/client/model/database'
21
+ autoload :DatabaseCollection, 'dag/client/model/database_collection'
22
+
23
+ autoload :Job, 'dag/client/model/job'
24
+ autoload :JobCollection, 'dag/client/model/job_collection'
25
+
26
+ autoload :Object, 'dag/client/model/object'
27
+ autoload :ObjectCollection, 'dag/client/model/object_collection'
28
+
29
+ autoload :Table, 'dag/client/model/table'
30
+ autoload :TableCollection, 'dag/client/model/table_collection'
31
+
32
+ autoload :Settings, 'dag/settings'
33
+ end
data/lib/dag/client.rb ADDED
@@ -0,0 +1,36 @@
1
+ module Dag
2
+ class Client
3
+
4
+ autoload :API, 'dag/client/api'
5
+ autoload :Cluster, 'dag/client/cluster'
6
+ autoload :ClusterValidation, 'dag/client/cluster_validation'
7
+ autoload :Database, 'dag/client/database'
8
+ autoload :Job, 'dag/client/job'
9
+ autoload :JobValidation, 'dag/client/job_validation'
10
+ autoload :Storage, 'dag/client/storage'
11
+ autoload :Table, 'dag/client/table'
12
+
13
+ def initialize(apikey, secret, options = {})
14
+ @api = API.new(apikey, secret, options)
15
+ end
16
+
17
+ attr_reader :api
18
+
19
+ def apikey
20
+ @api.apikey
21
+ end
22
+
23
+ def analysis_api
24
+ @api.analysis_api
25
+ end
26
+
27
+ def storage_api
28
+ @api.storage_api
29
+ end
30
+
31
+ include Dag::Client::Database
32
+ include Dag::Client::Cluster
33
+ include Dag::Client::Job
34
+ include Dag::Client::Storage
35
+ end
36
+ end
@@ -0,0 +1,295 @@
1
+ module Dag
2
+ class Client
3
+ class API
4
+ autoload :BucketsResult, 'dag/client/api/storage_result'
5
+ autoload :Cluster, 'dag/client/api/cluster'
6
+ autoload :Database, 'dag/client/api/database'
7
+ autoload :Job, 'dag/client/api/job'
8
+ autoload :ListParams, 'dag/client/api/list_params'
9
+ autoload :RestParameter, 'dag/client/api/rest_parameter'
10
+ autoload :ObjectsResult, 'dag/client/api/storage_result'
11
+ autoload :Storage, 'dag/client/api/storage'
12
+ autoload :StorageResult, 'dag/client/api/storage_result'
13
+ autoload :Table, 'dag/client/api/table'
14
+
15
+ def initialize(apikey, secret,
16
+ analysis_api: Dag::Settings.analysis_api,
17
+ storage_api: Dag::Settings.storage_api,
18
+ force_path_style: Dag::Settings.force_path_style,
19
+ debug: Dag::Settings.debug)
20
+
21
+ require 'time'
22
+ require 'base64'
23
+ require 'oj'
24
+ require 'rexml/document'
25
+ require 'erb'
26
+ require 'net/http'
27
+ require 'xmlsimple'
28
+ require 'ipaddr'
29
+ require 'httpclient'
30
+ require 'stringio'
31
+
32
+ @apikey = apikey
33
+ @secret = secret
34
+
35
+ unless [TrueClass, FalseClass].any? { |c| force_path_style.kind_of?(c) }
36
+ raise Dag::Client::APIOptionInvalid.new("force_path_style is not boolean:#{force_path_style}")
37
+ end
38
+
39
+ unless [TrueClass, FalseClass].any? { |c| debug.kind_of?(c) }
40
+ raise Dag::Client::APIOptionInvalid.new("debug is not boolean:#{debug}")
41
+ end
42
+
43
+ @analysis_api = analysis_api
44
+ @storage_api = storage_api
45
+ @force_path_style = force_path_style
46
+ @debug = debug
47
+
48
+ Oj.default_options = { mode: :compat }
49
+
50
+ @http_client = HTTPClient.new
51
+ @http_client.connect_timeout = 300
52
+ @http_client.send_timeout = 300
53
+ @http_client.receive_timeout = 300
54
+ @http_client.debug_dev = STDERR if @debug
55
+ end
56
+
57
+ attr_reader :apikey, :analysis_api, :storage_api
58
+
59
+ def force_path_style?
60
+ @force_path_style
61
+ end
62
+
63
+ def execute(rest_parameter)
64
+ response = handle_api_failure(rest_parameter) do
65
+ rest_client(:dag_gw, rest_parameter)
66
+ end
67
+
68
+ if response.present?
69
+ STDERR.print "\n\n" if @debug
70
+
71
+ data = Oj.load(response.body) || ''
72
+ data.instance_eval {
73
+ class << self
74
+ attr_accessor :headers
75
+ end
76
+ }
77
+ data.headers = response.header
78
+ return data.freeze
79
+ end
80
+ end
81
+
82
+ def execute_storage(rest_parameter, &block)
83
+ response = handle_api_failure(rest_parameter) do
84
+ rest_client(:storage, rest_parameter, &block)
85
+ end
86
+
87
+ if response.present?
88
+ data = if rest_parameter.raw_data?
89
+ response.body
90
+ else
91
+ REXML::Document.new(response.body)
92
+ end || ''
93
+
94
+ if data.present?
95
+ STDERR.print "\n\n" if @debug
96
+ end
97
+
98
+ data.instance_eval {
99
+ class << self
100
+ attr_accessor :headers
101
+ end
102
+ }
103
+ data.headers = response.header
104
+ return data.freeze
105
+ end
106
+ end
107
+
108
+ include Dag::Client::API::Cluster
109
+ include Dag::Client::API::Database
110
+ include Dag::Client::API::Table
111
+ include Dag::Client::API::Job
112
+ include Dag::Client::API::Storage
113
+
114
+ def download_signature(expire_at, bucket, output_object)
115
+ http_verb = "GET\n"
116
+ content_md5 = "\n"
117
+ content_type = "\n"
118
+ expire = "#{expire_at}\n"
119
+
120
+ string_to_sign = http_verb + content_md5 + content_type + expire +
121
+ canonicalized_resource(bucket, output_object)
122
+
123
+ digest = OpenSSL::HMAC::digest(OpenSSL::Digest::SHA1.new, @secret, string_to_sign)
124
+ Base64.encode64(digest).strip
125
+ end
126
+
127
+ private
128
+
129
+ def canonicalized_resource(bucket, object)
130
+ result = ''
131
+
132
+ unless @force_path_style
133
+ result = '/'
134
+ result += "#{bucket}"
135
+ end
136
+
137
+ File.join(result, object)
138
+ end
139
+
140
+ def handle_api_failure(rest_parameter, &block)
141
+ response = nil
142
+
143
+ begin
144
+ response = block.call
145
+
146
+ unless response.try(:status).to_s =~ /^(2\d\d|3\d\d)$/
147
+ raise Dag::Client::APIFailure
148
+ end
149
+
150
+ return response
151
+ rescue Dag::Client::APIFailure
152
+ msg = "api_failure #{rest_parameter}"
153
+ api_failure = Dag::Client::APIFailure.new(msg)
154
+ raise api_failure if response.blank?
155
+
156
+ json_response = Oj.load(response.body) rescue nil
157
+ if json_response
158
+ api_failure.api_code = json_response['code']
159
+ api_failure.api_message = json_response['message']
160
+ api_failure.api_status = json_response['status']
161
+ api_failure.api_request_id = json_response['requestId']
162
+ api_failure.api_resource = json_response['resource']
163
+
164
+ else
165
+ begin
166
+ xml_doc = REXML::Document.new(response.body)
167
+ if xml_doc && xml_doc.elements['Error/Code']
168
+ if xml_doc.elements['Error/Code']
169
+ api_failure.api_code = xml_doc.elements['Error/Code'].text
170
+ end
171
+ if xml_doc.elements['Error/Message']
172
+ api_failure.api_message = xml_doc.elements['Error/Message'].text
173
+ end
174
+ if xml_doc.elements['Error/Status']
175
+ api_failure.api_status = xml_doc.elements['Error/Status'].text.to_i
176
+ end
177
+ if xml_doc.elements['Error/RequestId']
178
+ api_failure.api_request_id = xml_doc.elements['Error/RequestId'].text
179
+ end
180
+ if xml_doc.elements['Error/Resource']
181
+ api_failure.api_resource = xml_doc.elements['Error/Resource'].text
182
+ end
183
+ end
184
+ rescue
185
+ api_failure.api_code = nil
186
+ api_failure.api_message = response.body
187
+ api_failure.api_status = response.try(:status)
188
+ api_failure.api_request_id = nil
189
+ api_failure.api_resource = response.http_header.request_uri
190
+ end
191
+ end
192
+
193
+ raise api_failure
194
+ end
195
+
196
+ response
197
+ end
198
+
199
+ def rest_client(kind, rest_parameter, &block)
200
+ url = rest_parameter.url(host_uri(kind), @force_path_style)
201
+
202
+ rest_parameter.headers.merge!({
203
+ Authorization: rest_parameter.authentication(@apikey, @secret, @force_path_style),
204
+ Date: rest_parameter.calc_date,
205
+ Host: host_name(kind, rest_parameter.bucket),
206
+ Accept: '*/*; q=0.5, application/xml',
207
+ 'Accept-Encoding' => 'gzip, deflate',
208
+ 'User-Agent' => "dag-client-ruby (#{Dag::Client::VERSION})"
209
+ })
210
+
211
+ parameters = rest_parameter.parameters
212
+
213
+ unless rest_parameter.headers['Content-Type']
214
+ if rest_parameter.content_type
215
+ rest_parameter.headers.merge!(
216
+ 'Content-Type' => rest_parameter.content_type
217
+ )
218
+ end
219
+ end
220
+
221
+ payload = if parameters.present? || rest_parameter.blank_body?
222
+ Oj.dump(parameters)
223
+ elsif block_given?
224
+ block.call
225
+ end
226
+
227
+ unless rest_parameter.headers['Content-Length']
228
+ rest_parameter.headers.merge!(
229
+ 'Content-Length' => payload ? payload.size.to_s : 0.to_s
230
+ )
231
+ end
232
+
233
+ STDERR.print "\n" if @debug
234
+
235
+ headers = rest_parameter.headers
236
+ case rest_parameter.method
237
+ when :get
238
+ @http_client.get(url, nil, headers)
239
+
240
+ when :post
241
+ @http_client.post(url, payload, headers)
242
+
243
+ when :put
244
+ @http_client.put(url, payload, headers)
245
+
246
+ when :delete
247
+ @http_client.delete(url, nil, headers)
248
+
249
+ end
250
+ end
251
+
252
+ def host_name(kind, bucket)
253
+ uri = host_uri(kind)
254
+ result = uri.host
255
+
256
+ if kind == :storage
257
+ return result if valid_ip?(result)
258
+
259
+ if !@force_path_style && bucket.present?
260
+ result = "#{bucket}.#{result}"
261
+ end
262
+ end
263
+
264
+ unless uri.port == 80 || uri.port == 443
265
+ result += ":#{uri.port}"
266
+ end
267
+
268
+ result
269
+ end
270
+
271
+ def valid_ip?(str)
272
+ begin
273
+ IPAddr.new(str)
274
+ true
275
+ rescue
276
+ false
277
+ end
278
+ end
279
+
280
+ def host_uri(kind)
281
+ host_url = case kind
282
+ when :dag_gw
283
+ @analysis_api
284
+ when :storage
285
+ @storage_api
286
+ end
287
+
288
+ raise 'illegal kind' if host_url.blank?
289
+
290
+ URI.parse(host_url)
291
+ end
292
+
293
+ end
294
+ end
295
+ end