X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e2f3f8e7347a8ded697d3c0127f82325d672e7ab..d63eaa465e157dd289a80738c5da83edaf03e784:/apps/workbench/app/controllers/pipeline_instances_controller.rb diff --git a/apps/workbench/app/controllers/pipeline_instances_controller.rb b/apps/workbench/app/controllers/pipeline_instances_controller.rb index a7b9142f0d..81417ff165 100644 --- a/apps/workbench/app/controllers/pipeline_instances_controller.rb +++ b/apps/workbench/app/controllers/pipeline_instances_controller.rb @@ -1,8 +1,12 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class PipelineInstancesController < ApplicationController - skip_before_filter :find_object_by_uuid, only: :compare - before_filter :find_objects_by_uuid, only: :compare - skip_around_filter :require_thread_api_token, if: proc { |ctrl| - Rails.configuration.anonymous_user_token and + skip_before_action :find_object_by_uuid, only: :compare + before_action :find_objects_by_uuid, only: :compare + skip_around_action :require_thread_api_token, if: proc { |ctrl| + !Rails.configuration.Users.AnonymousUserToken.empty? and 'show' == ctrl.action_name } @@ -63,7 +67,7 @@ class PipelineInstancesController < ApplicationController end def update - @updates ||= params[@object.class.to_s.underscore.singularize.to_sym] + @updates ||= params.to_unsafe_hash[@object.class.to_s.underscore.singularize.to_sym] if (components = @updates[:components]) components.each do |cname, component| if component[:script_parameters] @@ -130,7 +134,7 @@ class PipelineInstancesController < ApplicationController jobs = jobs.compact.uniq if jobs.any? - Job.where(uuid: jobs).each do |j| + Job.where(uuid: jobs).with_count("none").each do |j| job_uuid = j.uuid provenance[job_uuid] = j @@ -154,7 +158,7 @@ class PipelineInstancesController < ApplicationController hashes = hashes.compact.uniq if hashes.any? - Collection.where(portable_data_hash: hashes).each do |c| + Collection.where(portable_data_hash: hashes).with_count("none").each do |c| hash_uuid = c.portable_data_hash provenance[hash_uuid] = c pips[hash_uuid] = 0 unless pips[hash_uuid] != nil @@ -164,7 +168,7 @@ class PipelineInstancesController < ApplicationController collections = collections.compact.uniq if collections.any? - Collection.where(uuid: collections).each do |c| + Collection.where(uuid: collections).with_count("none").each do |c| collection_uuid = c.uuid provenance[collection_uuid] = c pips[collection_uuid] = 0 unless pips[collection_uuid] != nil @@ -188,7 +192,6 @@ class PipelineInstancesController < ApplicationController if provenance @prov_svg = ProvenanceHelper::create_provenance_graph provenance, "provenance_svg", { :request => request, - :direction => :top_down, :all_script_parameters => true, :combine_jobs => :script_and_version, :pips => pips,