Files
codeocean/lib/container.rb
2021-11-01 17:12:43 +01:00

67 lines
1.7 KiB
Ruby

# frozen_string_literal: true
require 'container_connection'
class Container
BASE_URL = "http://192.168.178.53:5000"
def initialize(execution_environment, time_limit = nil)
url = "#{BASE_URL}/execution-environments/#{execution_environment.id}/containers/create"
body = {}
if time_limit
body[:time_limit] = time_limit
end
response = Faraday.post(url, body.to_json, "Content-Type" => "application/json")
response = parse response
@container_id = response[:id]
end
def copy_files(files)
url = container_url + "/files"
body = files.map{ |filename, content| { filename => content } }
Faraday.post(url, body.to_json, "Content-Type" => "application/json")
end
def copy_submission_files(submission)
files = {}
submission.collect_files.each do |file|
files[file.name] = file.content
end
copy_files(files)
end
def execute_command(command)
url = container_url + "/execute"
response = Faraday.patch(url, {command: command}.to_json, "Content-Type" => "application/json")
response = parse response
response
end
def execute_interactively(command)
websocket_url = execute_command(command)[:websocket_url]
EventMachine.run do
#socket = Faye::WebSocket::Client.new(websocket_url, [], ping: 0.1)
socket = ContainerConnection.new(websocket_url)
yield(self, socket) if block_given?
end
end
def destroy
Faraday.delete container_url
end
def status
parse(Faraday.get(container_url))[:status]
end
private
def container_url
"#{BASE_URL}/containers/#{@container_id}"
end
def parse(response)
JSON.parse(response.body).deep_symbolize_keys
end
end