2 collections = [current_obj.outputs, current_obj.docker_image].flatten.compact.uniq
3 collections_pdhs = collections.select {|x| !CollectionsHelper.match(x).nil?}.uniq.compact
4 collections_uuids = collections - collections_pdhs
5 preload_collections_for_objects collections_uuids if collections_uuids.any?
6 preload_for_pdhs collections_pdhs if collections_pdhs.any?
8 preload_objects_for_dataclass(Repository, [current_obj.repository], :name) if current_obj.repository
11 <div class="container">
13 <div class="col-md-5">
14 <% if current_obj.uuid.nil? %>
15 No <%= current_obj.title %> has been submitted yet.
18 <% keys = [:uuid, :modified_by_user_uuid, :created_at, :started_at, :finished_at, :container_uuid, :priority] %>
19 <% keys << :log_collection if @object.uuid != current_obj.uuid %>
20 <% keys << :outputs %>
21 <% keys.each do |k| %>
23 val = current_obj.send(k) if current_obj.respond_to?(k)
25 has_val = val.andand.any?
26 elsif k == :log_collection and current_obj.state_label == "Running"
34 <td style="padding-right: 1em">
39 <%= link_to_arvados_object_if_readable(val, val, link_text: val) %>
40 <% elsif k.to_s.end_with? 'uuid' %>
41 <%= link_to_arvados_object_if_readable(val, val, friendly_name: true) %>
42 <% elsif k.to_s.end_with? '_at' %>
43 <%= render_localized_date(val) %>
44 <% elsif k == :outputs and val.any? %>
45 <% if val.size == 1 %>
46 <%= link_to_arvados_object_if_readable(val[0], 'Output data not available', friendly_name: true) %>
48 <%= render partial: 'work_units/show_outputs', locals: {id: current_obj.uuid, outputs: val, align:""} %>
50 <% elsif k == :log_collection %>
51 <%= render partial: 'work_units/show_log_link', locals: {wu: current_obj} %>
62 <div class="col-md-6">
64 <% # link to repo tree/file only if the repo is readable and the commit is a sha1
65 repo = (/^[0-9a-f]{40}$/ =~ current_obj.script_version and
66 current_obj.repository and
67 object_for_dataclass(Repository, current_obj.repository, :name))
68 repo = nil unless repo.andand.http_fetch_url
70 <% [:script, :repository, :script_version, :supplied_script_version, :nondeterministic,
71 :command, :cwd, :environment, :mounts, :output_path].each do |k| %>
72 <% val = current_obj.send(k) if current_obj.respond_to?(k) %>
75 <td style="padding-right: 1em">
79 <% if repo and k == :repository %>
80 <%= link_to val, show_repository_tree_path(id: repo.uuid, commit: current_obj.script_version, path: '/') %>
81 <% elsif repo and k == :script %>
82 <%= link_to val, show_repository_blob_path(id: repo.uuid, commit: current_obj.script_version, path: 'crunch_scripts/'+current_obj.script) %>
83 <% elsif repo and k == :script_version %>
84 <%= link_to val, show_repository_commit_path(id: repo.uuid, commit: current_obj.script_version) %>
92 <% if current_obj.runtime_constraints.andand[:docker_image] and current_obj.docker_image %>
94 <td style="padding-right: 1em">
98 <%= current_obj.runtime_constraints[:docker_image] %>
102 <td style="padding-right: 1em">
103 docker_image_locator:
106 <%= link_to_arvados_object_if_readable(current_obj.docker_image,
107 current_obj.docker_image, friendly_name: true) %>
110 <% elsif current_obj.docker_image %>
112 <td style="padding-right: 1em">
113 docker_image_locator:
116 <%= link_to_arvados_object_if_readable(current_obj.docker_image,
117 current_obj.docker_image, friendly_name: true) %>
125 <% if current_obj.parameters and !current_obj.parameters.empty? %>
127 <div class="col-md-6">
128 <p>script_parameters:</p>
129 <pre><%= JSON.pretty_generate(current_obj.parameters) rescue nil %></pre>