X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1fea1b7a0f75765268dc1c461725c8ca841d4b57..9daf42fbdb868939653c6e3ca8a4fffd1cf94e31:/apps/workbench/app/helpers/application_helper.rb diff --git a/apps/workbench/app/helpers/application_helper.rb b/apps/workbench/app/helpers/application_helper.rb index a80290cfa0..b145fddcc9 100644 --- a/apps/workbench/app/helpers/application_helper.rb +++ b/apps/workbench/app/helpers/application_helper.rb @@ -177,6 +177,33 @@ module ApplicationHelper end end + def link_to_arvados_object_if_readable(attrvalue, link_text, link_text_if_not_readable, use_friendly_name=false) + resource_class = resource_class_for_uuid(attrvalue) + if !resource_class + return link_text_if_not_readable + end + + if resource_class.to_s == 'Collection' + if CollectionsHelper.match(attrvalue) + readable = collection_for_pdh(attrvalue).any? + else + readable = collections_for_object(attrvalue).any? + end + else + readable = object_for_dataclass(resource_class, attrvalue) + end + + if readable + if use_friendly_name + link_to_if_arvados_object attrvalue, friendly_name: true + else + link_to_if_arvados_object attrvalue, link_text: link_text + end + else + link_text_if_not_readable + end + end + def render_editable_attribute(object, attr, attrvalue=nil, htmloptions={}) attrvalue = object.send(attr) if attrvalue.nil? if not object.attribute_editable?(attr)