X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/aadca3ff41a12a7a52a2a072696564b90537b9b3..0561bd0c3c07257fd58ded6c7cfa5feeae97af57:/apps/workbench/app/controllers/jobs_controller.rb diff --git a/apps/workbench/app/controllers/jobs_controller.rb b/apps/workbench/app/controllers/jobs_controller.rb index 40f4378544..204dbb76df 100644 --- a/apps/workbench/app/controllers/jobs_controller.rb +++ b/apps/workbench/app/controllers/jobs_controller.rb @@ -1,23 +1,40 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class JobsController < ApplicationController + skip_around_filter :require_thread_api_token, if: proc { |ctrl| + Rails.configuration.anonymous_user_token and + 'show' == ctrl.action_name + } def generate_provenance(jobs) return if params['tab_pane'] != "Provenance" - nodes = [] + nodes = {} collections = [] + hashes = [] jobs.each do |j| - nodes << j - collections << j[:output] - collections.concat(ProvenanceHelper::find_collections(j[:script_parameters])) - nodes << {:uuid => j[:script_version]} + nodes[j[:uuid]] = j + hashes << j[:output] + ProvenanceHelper::find_collections(j[:script_parameters]) do |hash, uuid| + collections << uuid if uuid + hashes << hash if hash + end + nodes[j[:script_version]] = {:uuid => j[:script_version]} end Collection.where(uuid: collections).each do |c| - nodes << c + nodes[c[:portable_data_hash]] = c + end + + Collection.where(portable_data_hash: hashes).each do |c| + nodes[c[:portable_data_hash]] = c end @svg = ProvenanceHelper::create_provenance_graph nodes, "provenance_svg", { :request => request, + :direction => :top_down, :all_script_parameters => true, :script_version_nodes => true} end @@ -48,6 +65,15 @@ class JobsController < ApplicationController super end + def logs + @logs = @object. + stderr_log_query(Rails.configuration.running_job_log_records_to_fetch). + map { |e| e.serializable_hash.merge({ 'prepend' => true }) } + respond_to do |format| + format.json { render json: @logs } + end + end + def index_pane_list if params[:uuid] %w(Recent Provenance)