Class: IronWorkerNG::APIClient
- Inherits:
-
IronCore::Client
- Object
- IronCore::Client
- IronWorkerNG::APIClient
- Defined in:
- lib/iron_worker_ng/api_client.rb
Constant Summary collapse
- AWS_US_EAST_HOST =
'worker-aws-us-east-1.iron.io'
Instance Method Summary collapse
- #base_url ⇒ Object
- #codes_create(name, file, runtime, runner, options) ⇒ Object
- #codes_delete(id) ⇒ Object
- #codes_download(id, options = {}) ⇒ Object
- #codes_get(id) ⇒ Object
- #codes_list(options = {}) ⇒ Object
- #codes_pause_task_queue(id, options = {}) ⇒ Object
- #codes_resume_task_queue(id, options = {}) ⇒ Object
- #codes_revisions(id, options = {}) ⇒ Object
- #headers ⇒ Object
-
#initialize(options = {}) ⇒ APIClient
constructor
A new instance of APIClient.
- #projects_get ⇒ Object
- #schedules_cancel(id) ⇒ Object
- #schedules_create(code_name, payload, options = {}) ⇒ Object
- #schedules_get(id) ⇒ Object
- #schedules_list(options = {}) ⇒ Object
- #schedules_update(id, options = {}) ⇒ Object
- #stacks_list ⇒ Object
- #tasks_cancel(id) ⇒ Object
- #tasks_cancel_all(id) ⇒ Object
- #tasks_create(code_name, payload, options = {}) ⇒ Object
- #tasks_get(id) ⇒ Object
- #tasks_list(options = {}) ⇒ Object
- #tasks_log(id) ⇒ Object
- #tasks_retry(id, options = {}) ⇒ Object
- #tasks_set_progress(id, options = {}) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ APIClient
Returns a new instance of APIClient.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/iron_worker_ng/api_client.rb', line 9 def initialize( = {}) = { :scheme => 'https', :host => IronWorkerNG::APIClient::AWS_US_EAST_HOST, :port => 443, :api_version => 2, :user_agent => IronWorkerNG.full_version } super('iron', 'worker', , , [:project_id, :token, :api_version]) #puts "nhp.proxy yo #{rest.wrapper.http.proxy_uri}" if defined? Net::HTTP::Persistent #puts "RestClient.proxy yo #{RestClient.proxy}" if defined? RestClient #puts "InternalClient.proxy yo #{Rest::InternalClient.proxy}" if defined? Rest::InternalClient IronCore::Logger.error 'IronWorkerNG', "Token is not set", IronCore::Error if @token.nil? check_id(@project_id, 'project_id') end |
Instance Method Details
#base_url ⇒ Object
33 34 35 |
# File 'lib/iron_worker_ng/api_client.rb', line 33 def base_url super + @api_version.to_s + '/' end |
#codes_create(name, file, runtime, runner, options) ⇒ Object
50 51 52 53 54 |
# File 'lib/iron_worker_ng/api_client.rb', line 50 def codes_create(name, file, runtime, runner, ) file_instance = file.to_s.strip == "" || runner.to_s.strip == "" ? "" : File.new(file, 'rb') = {:name => name, :runtime => runtime, :file_name => runner}.merge() parse_response(post_file("projects/#{@project_id}/codes", :file, file_instance, :data, )) end |
#codes_delete(id) ⇒ Object
56 57 58 59 |
# File 'lib/iron_worker_ng/api_client.rb', line 56 def codes_delete(id) check_id(id) parse_response(delete("projects/#{@project_id}/codes/#{id}")) end |
#codes_download(id, options = {}) ⇒ Object
66 67 68 69 |
# File 'lib/iron_worker_ng/api_client.rb', line 66 def codes_download(id, = {}) check_id(id) parse_response(get("projects/#{@project_id}/codes/#{id}/download", ), false) end |
#codes_get(id) ⇒ Object
45 46 47 48 |
# File 'lib/iron_worker_ng/api_client.rb', line 45 def codes_get(id) check_id(id) parse_response(get("projects/#{@project_id}/codes/#{id}")) end |
#codes_list(options = {}) ⇒ Object
41 42 43 |
# File 'lib/iron_worker_ng/api_client.rb', line 41 def codes_list( = {}) parse_response(get("projects/#{@project_id}/codes", )) end |
#codes_pause_task_queue(id, options = {}) ⇒ Object
71 72 73 74 |
# File 'lib/iron_worker_ng/api_client.rb', line 71 def codes_pause_task_queue(id, = {}) check_id(id) parse_response(post("projects/#{@project_id}/codes/#{id}/pause_task_queue", )) end |
#codes_resume_task_queue(id, options = {}) ⇒ Object
76 77 78 79 |
# File 'lib/iron_worker_ng/api_client.rb', line 76 def codes_resume_task_queue(id, = {}) check_id(id) parse_response(post("projects/#{@project_id}/codes/#{id}/resume_task_queue", )) end |
#codes_revisions(id, options = {}) ⇒ Object
61 62 63 64 |
# File 'lib/iron_worker_ng/api_client.rb', line 61 def codes_revisions(id, = {}) check_id(id) parse_response(get("projects/#{@project_id}/codes/#{id}/revisions", )) end |
#headers ⇒ Object
29 30 31 |
# File 'lib/iron_worker_ng/api_client.rb', line 29 def headers super.merge({'Authorization' => "OAuth #{@token}"}) end |
#projects_get ⇒ Object
151 152 153 |
# File 'lib/iron_worker_ng/api_client.rb', line 151 def projects_get parse_response(get("projects/#{@project_id}")) end |
#schedules_cancel(id) ⇒ Object
146 147 148 149 |
# File 'lib/iron_worker_ng/api_client.rb', line 146 def schedules_cancel(id) check_id(id) parse_response(post("projects/#{@project_id}/schedules/#{id}/cancel")) end |
#schedules_create(code_name, payload, options = {}) ⇒ Object
134 135 136 137 138 139 |
# File 'lib/iron_worker_ng/api_client.rb', line 134 def schedules_create(code_name, payload, = {}) [:start_at] = [:start_at].iso8601 if (not [:start_at].nil?) && [:start_at].respond_to?(:iso8601) [:end_at] = [:end_at].iso8601 if (not [:end_at].nil?) && [:end_at].respond_to?(:iso8601) parse_response(post("projects/#{@project_id}/schedules", {:schedules => [{:code_name => code_name, :payload => payload}.merge()]})) end |
#schedules_get(id) ⇒ Object
129 130 131 132 |
# File 'lib/iron_worker_ng/api_client.rb', line 129 def schedules_get(id) check_id(id) parse_response(get("projects/#{@project_id}/schedules/#{id}")) end |
#schedules_list(options = {}) ⇒ Object
125 126 127 |
# File 'lib/iron_worker_ng/api_client.rb', line 125 def schedules_list( = {}) parse_response(get("projects/#{@project_id}/schedules", )) end |
#schedules_update(id, options = {}) ⇒ Object
141 142 143 144 |
# File 'lib/iron_worker_ng/api_client.rb', line 141 def schedules_update(id, = {}) check_id(id) parse_response(put("projects/#{@project_id}/schedules/#{id}", )) end |
#stacks_list ⇒ Object
37 38 39 |
# File 'lib/iron_worker_ng/api_client.rb', line 37 def stacks_list parse_response(get("stacks")) end |
#tasks_cancel(id) ⇒ Object
94 95 96 97 |
# File 'lib/iron_worker_ng/api_client.rb', line 94 def tasks_cancel(id) check_id(id) parse_response(post("projects/#{@project_id}/tasks/#{id}/cancel")) end |
#tasks_cancel_all(id) ⇒ Object
99 100 101 102 |
# File 'lib/iron_worker_ng/api_client.rb', line 99 def tasks_cancel_all(id) check_id(id) parse_response(post("projects/#{@project_id}/codes/#{id}/cancel_all")) end |
#tasks_create(code_name, payload, options = {}) ⇒ Object
90 91 92 |
# File 'lib/iron_worker_ng/api_client.rb', line 90 def tasks_create(code_name, payload, = {}) parse_response(post("projects/#{@project_id}/tasks", {:tasks => [{:code_name => code_name, :payload => payload}.merge()]})) end |
#tasks_get(id) ⇒ Object
85 86 87 88 |
# File 'lib/iron_worker_ng/api_client.rb', line 85 def tasks_get(id) check_id(id) parse_response(get("projects/#{@project_id}/tasks/#{id}")) end |
#tasks_list(options = {}) ⇒ Object
81 82 83 |
# File 'lib/iron_worker_ng/api_client.rb', line 81 def tasks_list( = {}) parse_response(get("projects/#{@project_id}/tasks", )) end |
#tasks_log(id) ⇒ Object
104 105 106 107 108 109 110 111 112 113 |
# File 'lib/iron_worker_ng/api_client.rb', line 104 def tasks_log(id) check_id(id) if block_given? stream_get("projects/#{@project_id}/tasks/#{id}/log") do |chunk| yield chunk end else parse_response(get("projects/#{@project_id}/tasks/#{id}/log"), false) end end |
#tasks_retry(id, options = {}) ⇒ Object
120 121 122 123 |
# File 'lib/iron_worker_ng/api_client.rb', line 120 def tasks_retry(id, = {}) check_id(id) parse_response(post("projects/#{@project_id}/tasks/#{id}/retry", )) end |
#tasks_set_progress(id, options = {}) ⇒ Object
115 116 117 118 |
# File 'lib/iron_worker_ng/api_client.rb', line 115 def tasks_set_progress(id, = {}) check_id(id) parse_response(post("projects/#{@project_id}/tasks/#{id}/progress", )) end |