Class: Proxy::RemoteExecution::Ssh::Actions::PullScript

Inherits:
Dynflow::Action::Runner
  • Object
show all
Defined in:
lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb

Constant Summary collapse

JobDelivered =
Class.new
PickupTimeout =
Class.new

Instance Method Summary collapse

Instance Method Details

#cleanup(_plan = nil) ⇒ Object



46
47
48
49
50
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 46

def cleanup(_plan = nil)
  job_storage.drop_job(execution_plan_id, run_step_id)
  Proxy::Dynflow::OtpManager.passwords.delete(execution_plan_id)
  Proxy::RemoteExecution::Ssh::MQTT::Dispatcher.instance.done(input[:job_uuid])
end

#host_nameObject



139
140
141
142
143
144
145
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 139

def host_name
  alternative_names = input.fetch(:alternative_names, {})

  alternative_names[:consumer_uuid] ||
    alternative_names[:fqdn] ||
    input[:hostname]
end

#init_runObject



31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 31

def init_run
  otp_password = if input[:with_mqtt]
                   ::Proxy::Dynflow::OtpManager.generate_otp(execution_plan_id)
                 end

  plan_event(PickupTimeout, input[:time_to_pickup], optional: true) if input[:time_to_pickup]

  input[:job_uuid] = job_storage.store_job(host_name, execution_plan_id, run_step_id, input[:script].tr("\r", ''), effective_user: input[:effective_user])
  output[:state] = :ready_for_pickup
  output[:result] = []

  mqtt_start(otp_password) if input[:with_mqtt]
  suspend
end

#job_storageObject



151
152
153
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 151

def job_storage
  Proxy::RemoteExecution::Ssh.job_storage
end

#kill_runObject



92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 92

def kill_run
  case output[:state]
  when :ready_for_pickup
    # If the job is not running yet on the client, wipe it from storage
    cleanup
    # TODO: Stop the action
  when :notified, :running
    # Client was notified or is already running, dealing with this situation
    # is only supported if mqtt is available
    # Otherwise we have to wait it out
    mqtt_cancel if input[:with_mqtt]
  end
  suspend
end

#mqtt_cancelObject



124
125
126
127
128
129
130
131
132
133
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 124

def mqtt_cancel
  cleanup
  payload = mqtt_payload_base.merge(
    metadata: {
      'event': 'cancel',
      'job_uuid': input[:job_uuid]
    }
  )
  mqtt_notify payload
end

#mqtt_notify(payload) ⇒ Object



135
136
137
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 135

def mqtt_notify(payload)
  Proxy::RemoteExecution::Ssh::MQTT.publish(mqtt_topic, JSON.dump(payload))
end

#mqtt_payload_baseObject



155
156
157
158
159
160
161
162
163
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 155

def mqtt_payload_base
  {
    type: 'data',
    message_id: SecureRandom.uuid,
    version: 1,
    sent: DateTime.now.iso8601,
    directive: 'foreman'
  }
end

#mqtt_start(otp_password) ⇒ Object



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 107

def mqtt_start(otp_password)
  payload = mqtt_payload_base.merge(
    content: "#{input[:proxy_url]}/ssh/jobs/#{input[:job_uuid]}",
    metadata: {
      'event': 'start',
      'job_uuid': input[:job_uuid],
      'username': execution_plan_id,
      'password': otp_password,
      'return_url': "#{input[:proxy_url]}/ssh/jobs/#{input[:job_uuid]}/update",
      'version': 'v1',
      'effective_user': input[:effective_user]
    },
  )
  Proxy::RemoteExecution::Ssh::MQTT::Dispatcher.instance.new(input[:job_uuid], mqtt_topic, payload)
  output[:state] = :notified
end

#mqtt_topicObject



147
148
149
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 147

def mqtt_topic
  "yggdrasil/#{host_name}/data/in"
end

#plan(action_input, mqtt: false) ⇒ Object



12
13
14
15
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 12

def plan(action_input, mqtt: false)
  super(action_input)
  input[:with_mqtt] = mqtt
end

#process_external_event(event) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 52

def process_external_event(event)
  output[:state] = :running
  data = event.data
  case data['version']
  when nil
    process_external_unversioned(data)
  when '1'
    process_external_v1(data)
  else
    raise "Unexpected update message version '#{data['version']}'"
  end
end

#process_external_unversioned(payload) ⇒ Object



65
66
67
68
69
70
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 65

def process_external_unversioned(payload)
  continuous_output = Proxy::Dynflow::ContinuousOutput.new
  Array(payload['output']).each { |line| continuous_output.add_output(line, payload['type']) } if payload.key?('output')
  exit_code = payload['exit_code'].to_i if payload['exit_code']
  process_update(Proxy::Dynflow::Runner::Update.new(continuous_output, exit_code))
end

#process_external_v1(payload) ⇒ Object



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 72

def process_external_v1(payload)
  continuous_output = Proxy::Dynflow::ContinuousOutput.new
  exit_code = nil

  payload['updates'].each do |update|
    time = Time.parse update['timestamp']
    type = update['type']
    case type
    when 'output'
      continuous_output.add_output(update['content'], update['stream'], time)
    when 'exit'
      exit_code = update['exit_code'].to_i
    else
      raise "Unexpected update type '#{update['type']}'"
    end
  end

  process_update(Proxy::Dynflow::Runner::Update.new(continuous_output, exit_code))
end

#process_pickup_timeoutObject



165
166
167
168
169
170
171
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 165

def process_pickup_timeout
  if output[:state] != :delivered
    raise "The job was not picked up in time"
  else
    suspend
  end
end

#run(event = nil) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/smart_proxy_remote_execution_ssh/actions/pull_script.rb', line 17

def run(event = nil)
  if event == JobDelivered
    output[:state] = :delivered
    suspend
  elsif event == PickupTimeout
    process_pickup_timeout
  else
    super
  end
rescue => e
  action_logger.error(e)
  process_update(Proxy::Dynflow::Runner::Update.encode_exception('Proxy error', e))
end