5735: exclude btn* attributes from span tag.
[arvados.git] / apps / workbench / app / helpers / application_helper.rb
1 module ApplicationHelper
2   def current_user
3     controller.current_user
4   end
5
6   def self.match_uuid(uuid)
7     /^([0-9a-z]{5})-([0-9a-z]{5})-([0-9a-z]{15})$/.match(uuid.to_s)
8   end
9
10   def current_api_host
11     Rails.configuration.arvados_v1_base.gsub /https?:\/\/|\/arvados\/v1/,''
12   end
13
14   def render_markup(markup)
15     raw RedCloth.new(markup.to_s).to_html(:refs_arvados, :textile) if markup
16   end
17
18   def human_readable_bytes_html(n)
19     return h(n) unless n.is_a? Fixnum
20     return "0 bytes" if (n == 0)
21
22     orders = {
23       1 => "bytes",
24       1024 => "KiB",
25       (1024*1024) => "MiB",
26       (1024*1024*1024) => "GiB",
27       (1024*1024*1024*1024) => "TiB"
28     }
29
30     orders.each do |k, v|
31       sig = (n.to_f/k)
32       if sig >=1 and sig < 1024
33         if v == 'bytes'
34           return "%i #{v}" % sig
35         else
36           return "%0.1f #{v}" % sig
37         end
38       end
39     end
40
41     return h(n)
42     #raw = n.to_s
43     #cooked = ''
44     #while raw.length > 3
45     #  cooked = ',' + raw[-3..-1] + cooked
46     #  raw = raw[0..-4]
47     #end
48     #cooked = raw + cooked
49   end
50
51   def resource_class_for_uuid(attrvalue, opts={})
52     ArvadosBase::resource_class_for_uuid(attrvalue, opts)
53   end
54
55   # When using {remote:true}, or using {method:...} to use an HTTP
56   # method other than GET, move the target URI from href to
57   # data-remote-href. Otherwise, browsers offer features like "open in
58   # new window" and "copy link address" which bypass Rails' click
59   # handler and therefore end up at incorrect/nonexistent routes (by
60   # ignoring data-method) and expect to receive pages rather than
61   # javascript responses.
62   #
63   # See assets/javascripts/link_to_remote.js for supporting code.
64   def link_to *args, &block
65     if (args.last and args.last.is_a? Hash and
66         (args.last[:remote] or
67          (args.last[:method] and
68           args.last[:method].to_s.upcase != 'GET')))
69       if Rails.env.test?
70         # Capybara/phantomjs can't click_link without an href, even if
71         # the click handler means it never gets used.
72         raw super.gsub(' href="', ' href="#" data-remote-href="')
73       else
74         # Regular browsers work as desired: users can click A elements
75         # without hrefs, and click handlers fire; but there's no "copy
76         # link address" option in the right-click menu.
77         raw super.gsub(' href="', ' data-remote-href="')
78       end
79     else
80       super
81     end
82   end
83
84   ##
85   # Returns HTML that links to the Arvados object specified in +attrvalue+
86   # Provides various output control and styling options.
87   #
88   # +attrvalue+ an Arvados model object or uuid
89   #
90   # +opts+ a set of flags to control output:
91   #
92   # [:link_text] the link text to use (may include HTML), overrides everything else
93   #
94   # [:friendly_name] whether to use the "friendly" name in the link text (by
95   # calling #friendly_link_name on the object), otherwise use the uuid
96   #
97   # [:with_class_name] prefix the link text with the class name of the model
98   #
99   # [:no_tags] disable tags in the link text (default is to show tags).
100   # Currently tags are only shown for Collections.
101   #
102   # [:thumbnail] if the object is a collection, show an image thumbnail if the
103   # collection consists of a single image file.
104   #
105   # [:no_link] don't create a link, just return the link text
106   #
107   # +style_opts+ additional HTML properties for the anchor tag, passed to link_to
108   #
109   def link_to_if_arvados_object(attrvalue, opts={}, style_opts={})
110     if (resource_class = resource_class_for_uuid(attrvalue, opts))
111       if attrvalue.is_a? ArvadosBase
112         object = attrvalue
113         link_uuid = attrvalue.uuid
114       else
115         object = nil
116         link_uuid = attrvalue
117       end
118       link_name = opts[:link_text]
119       tags = ""
120       if !link_name
121         link_name = object.andand.default_name || resource_class.default_name
122
123         if opts[:friendly_name]
124           if attrvalue.respond_to? :friendly_link_name
125             link_name = attrvalue.friendly_link_name opts[:lookup]
126           else
127             begin
128               if resource_class.name == 'Collection'
129                 link_name = collections_for_object(link_uuid).andand.first.andand.friendly_link_name
130               else
131                 link_name = object_for_dataclass(resource_class, link_uuid).andand.friendly_link_name
132               end
133             rescue ArvadosApiClient::NotFoundException
134               # If that lookup failed, the link will too. So don't make one.
135               return attrvalue
136             end
137           end
138         end
139         if link_name.nil? or link_name.empty?
140           link_name = attrvalue
141         end
142         if opts[:with_class_name]
143           link_name = "#{resource_class.to_s}: #{link_name}"
144         end
145         if !opts[:no_tags] and resource_class == Collection
146           links_for_object(link_uuid).each do |tag|
147             if tag.link_class.in? ["tag", "identifier"]
148               tags += ' <span class="label label-info">'
149               tags += link_to tag.name, controller: "links", filters: [["link_class", "=", "tag"], ["name", "=", tag.name]].to_json
150               tags += '</span>'
151             end
152           end
153         end
154         if opts[:thumbnail] and resource_class == Collection
155           # add an image thumbnail if the collection consists of a single image file.
156           collections_for_object(link_uuid).each do |c|
157             if c.files.length == 1 and CollectionsHelper::is_image c.files.first[1]
158               link_name += " "
159               link_name += image_tag "#{url_for c}/#{CollectionsHelper::file_path c.files.first}", style: "height: 4em; width: auto"
160             end
161           end
162         end
163       end
164       style_opts[:class] = (style_opts[:class] || '') + ' nowrap'
165       if opts[:no_link] or (resource_class == User && !current_user)
166         raw(link_name)
167       else
168         controller_class = resource_class.to_s.tableize
169         if controller_class.eql?('groups') and object.andand.group_class.eql?('project')
170           controller_class = 'projects'
171         end
172         (link_to raw(link_name), { controller: controller_class, action: 'show', id: ((opts[:name_link].andand.uuid) || link_uuid) }, style_opts) + raw(tags)
173       end
174     else
175       # just return attrvalue if it is not recognizable as an Arvados object or uuid.
176       if attrvalue.nil? or (attrvalue.is_a? String and attrvalue.empty?)
177         "(none)"
178       else
179         attrvalue
180       end
181     end
182   end
183
184   def link_to_arvados_object_if_readable(attrvalue, link_text_if_not_readable, opts={})
185     resource_class = resource_class_for_uuid(attrvalue.split('/')[0]) if attrvalue.is_a?(String)
186     if !resource_class
187       return link_to_if_arvados_object attrvalue, opts
188     end
189
190     readable = object_readable attrvalue, resource_class
191     if readable
192       link_to_if_arvados_object attrvalue, opts
193     elsif opts[:required] and current_user # no need to show this for anonymous user
194       raw('<div><input type="text" style="border:none;width:100%;background:#ffdddd" disabled=true class="required unreadable-input" value="') + link_text_if_not_readable + raw('" ></input></div>')
195     else
196       link_text_if_not_readable
197     end
198   end
199
200   # This method takes advantage of preloaded collections and objects.
201   # Hence you can improve performance by first preloading objects
202   # related to the page context before using this method.
203   def object_readable attrvalue, resource_class=nil
204     # if it is a collection filename, check readable for the locator
205     attrvalue = attrvalue.split('/')[0] if attrvalue
206
207     resource_class = resource_class_for_uuid(attrvalue) if resource_class.nil?
208     return if resource_class.nil?
209
210     return_value = nil
211     if resource_class.to_s == 'Collection'
212       if CollectionsHelper.match(attrvalue)
213         found = collection_for_pdh(attrvalue)
214         return_value = found.first if found.any?
215       else
216         found = collections_for_object(attrvalue)
217         return_value = found.first if found.any?
218       end
219     else
220       return_value = object_for_dataclass(resource_class, attrvalue)
221     end
222     return_value
223   end
224
225   def render_editable_attribute(object, attr, attrvalue=nil, htmloptions={})
226     attrvalue = object.send(attr) if attrvalue.nil?
227     if not object.attribute_editable?(attr)
228       if attrvalue && attrvalue.length > 0
229         return render_attribute_as_textile( object, attr, attrvalue, false )
230       else
231         return (attr == 'name' and object.andand.default_name) ||
232                 '(none)'
233       end
234     end
235
236     input_type = 'text'
237     attrtype = object.class.attribute_info[attr.to_sym].andand[:type]
238     if attrtype == 'text' or attr == 'description'
239       input_type = 'textarea'
240     elsif attrtype == 'datetime'
241       input_type = 'date'
242     else
243       input_type = 'text'
244     end
245
246     attrvalue = attrvalue.to_json if attrvalue.is_a? Hash or attrvalue.is_a? Array
247     rendervalue = render_attribute_as_textile( object, attr, attrvalue, false )
248
249     ajax_options = {
250       "data-pk" => {
251         id: object.uuid,
252         key: object.class.to_s.underscore
253       }
254     }
255     if object.uuid
256       ajax_options['data-url'] = url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore)
257     else
258       ajax_options['data-url'] = url_for(action: "create", controller: object.class.to_s.pluralize.underscore)
259       ajax_options['data-pk'][:defaults] = object.attributes
260     end
261     ajax_options['data-pk'] = ajax_options['data-pk'].to_json
262     @unique_id ||= (Time.now.to_f*1000000).to_i
263     span_id = object.uuid.to_s + '-' + attr.to_s + '-' + (@unique_id += 1).to_s
264
265     span_tag = content_tag 'span', rendervalue, {
266       "data-emptytext" => '(none)',
267       "data-placement" => "bottom",
268       "data-type" => input_type,
269       "data-title" => "Edit #{attr.to_s.gsub '_', ' '}",
270       "data-name" => attr,
271       "data-object-uuid" => object.uuid,
272       "data-toggle" => "manual",
273       "data-value" => attrvalue,
274       "id" => span_id,
275       :class => "editable #{is_textile?( object, attr ) ? 'editable-textile' : ''}"
276     }.merge(htmloptions.reject {|k, v| k.to_s.start_with?('btn') }).merge(ajax_options)
277
278     edit_tiptitle = 'edit'
279     edit_tiptitle = 'Warning: do not use hyphens in the repository name as they will be stripped' if (object.class.to_s == 'Repository' and attr == 'name')
280
281     edit_button = raw('<a href="#" class="btn btn-xs btn-' + (htmloptions[:btnclass] || 'default') + ' btn-nodecorate" data-toggle="x-editable tooltip" data-toggle-selector="#' + span_id + '" data-placement="top" title="' + (htmloptions[:tiptitle] || edit_tiptitle) + '"><i class="fa fa-fw fa-pencil"></i>' + (htmloptions[:btntext] || '') + '</a>')
282
283     if htmloptions[:btnplacement] == :left
284       edit_button + ' ' + span_tag
285     elsif htmloptions[:btnplacement] == :top
286       edit_button + raw('<br/>') + span_tag
287     else
288       span_tag + ' ' + edit_button
289     end
290   end
291
292   def render_pipeline_component_attribute(object, attr, subattr, value_info, htmloptions={})
293     datatype = nil
294     required = true
295     attrvalue = value_info
296
297     if value_info.is_a? Hash
298       if value_info[:output_of]
299         return raw("<span class='label label-default'>#{value_info[:output_of]}</span>")
300       end
301       if value_info[:dataclass]
302         dataclass = value_info[:dataclass]
303       end
304       if value_info[:optional] != nil
305         required = (value_info[:optional] != "true")
306       end
307       if value_info[:required] != nil
308         required = value_info[:required]
309       end
310
311       # Pick a suitable attrvalue to show as the current value (i.e.,
312       # the one that would be used if we ran the pipeline right now).
313       if value_info[:value]
314         attrvalue = value_info[:value]
315       elsif value_info[:default]
316         attrvalue = value_info[:default]
317       else
318         attrvalue = ''
319       end
320       preconfigured_search_str = value_info[:search_for]
321     end
322
323     if not object.andand.attribute_editable?(attr)
324       return link_to_arvados_object_if_readable(attrvalue, attrvalue, {friendly_name: true, required: required})
325     end
326
327     if dataclass
328       begin
329         dataclass = dataclass.constantize
330       rescue NameError
331       end
332     else
333       dataclass = ArvadosBase.resource_class_for_uuid(attrvalue)
334     end
335
336     id = "#{object.uuid}-#{subattr.join('-')}"
337     dn = "[#{attr}]"
338     subattr.each do |a|
339       dn += "[#{a}]"
340     end
341     if value_info.is_a? Hash
342       dn += '[value]'
343     end
344
345     if (dataclass == Collection) or (dataclass == File)
346       selection_param = object.class.to_s.underscore + dn
347       display_value = attrvalue
348       if value_info.is_a?(Hash)
349         if (link = Link.find? value_info[:link_uuid])
350           display_value = link.name
351         elsif value_info[:link_name]
352           display_value = value_info[:link_name]
353         elsif value_info[:selection_name]
354           display_value = value_info[:selection_name]
355         end
356       end
357       if (attr == :components) and (subattr.size > 2)
358         chooser_title = "Choose a #{dataclass == Collection ? 'dataset' : 'file'} for #{object.component_input_title(subattr[0], subattr[2])}:"
359       else
360         chooser_title = "Choose a #{dataclass == Collection ? 'dataset' : 'file'}:"
361       end
362       modal_path = choose_collections_path \
363       ({ title: chooser_title,
364          filters: [['owner_uuid', '=', object.owner_uuid]].to_json,
365          action_name: 'OK',
366          action_href: pipeline_instance_path(id: object.uuid),
367          action_method: 'patch',
368          preconfigured_search_str: (preconfigured_search_str || ""),
369          action_data: {
370            merge: true,
371            use_preview_selection: dataclass == File ? true : nil,
372            selection_param: selection_param,
373            success: 'page-refresh'
374          }.to_json,
375         })
376
377       return content_tag('div', :class => 'input-group') do
378         html = text_field_tag(dn, display_value,
379                               :class =>
380                               "form-control #{'required' if required} #{'unreadable-input' if attrvalue.present? and !object_readable(attrvalue, Collection)}")
381         html + content_tag('span', :class => 'input-group-btn') do
382           link_to('Choose',
383                   modal_path,
384                   { :class => "btn btn-primary",
385                     :remote => true,
386                     :method => 'get',
387                   })
388         end
389       end
390     end
391
392     if attrvalue.is_a? String
393       datatype = 'text'
394     elsif attrvalue.is_a?(Array) or dataclass.andand.is_a?(Class)
395       # TODO: find a way to edit with x-editable
396       return attrvalue
397     end
398
399     # When datatype is a String or Fixnum, link_to the attrvalue
400     lt = link_to attrvalue, '#', {
401       "data-emptytext" => "none",
402       "data-placement" => "bottom",
403       "data-type" => datatype,
404       "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore, merge: true),
405       "data-title" => "Set value for #{subattr[-1].to_s}",
406       "data-name" => dn,
407       "data-pk" => "{id: \"#{object.uuid}\", key: \"#{object.class.to_s.underscore}\"}",
408       "data-value" => attrvalue,
409       # "clear" button interferes with form-control's up/down arrows
410       "data-clear" => false,
411       :class => "editable #{'required' if required} form-control",
412       :id => id
413     }.merge(htmloptions)
414
415     lt
416   end
417
418   def render_arvados_object_list_start(list, button_text, button_href,
419                                        params={}, *rest, &block)
420     show_max = params.delete(:show_max) || 3
421     params[:class] ||= 'btn btn-xs btn-default'
422     list[0...show_max].each { |item| yield item }
423     unless list[show_max].nil?
424       link_to(h(button_text) +
425               raw(' &nbsp; <i class="fa fa-fw fa-arrow-circle-right"></i>'),
426               button_href, params, *rest)
427     end
428   end
429
430   def render_controller_partial partial, opts
431     cname = opts.delete :controller_name
432     begin
433       render opts.merge(partial: "#{cname}/#{partial}")
434     rescue ActionView::MissingTemplate
435       render opts.merge(partial: "application/#{partial}")
436     end
437   end
438
439   RESOURCE_CLASS_ICONS = {
440     "Collection" => "fa-archive",
441     "Group" => "fa-users",
442     "Human" => "fa-male",  # FIXME: Use a more inclusive icon.
443     "Job" => "fa-gears",
444     "KeepDisk" => "fa-hdd-o",
445     "KeepService" => "fa-exchange",
446     "Link" => "fa-arrows-h",
447     "Node" => "fa-cloud",
448     "PipelineInstance" => "fa-gears",
449     "PipelineTemplate" => "fa-gears",
450     "Repository" => "fa-code-fork",
451     "Specimen" => "fa-flask",
452     "Trait" => "fa-clipboard",
453     "User" => "fa-user",
454     "VirtualMachine" => "fa-terminal",
455   }
456   DEFAULT_ICON_CLASS = "fa-cube"
457
458   def fa_icon_class_for_class(resource_class, default=DEFAULT_ICON_CLASS)
459     RESOURCE_CLASS_ICONS.fetch(resource_class.to_s, default)
460   end
461
462   def fa_icon_class_for_uuid(uuid, default=DEFAULT_ICON_CLASS)
463     fa_icon_class_for_class(resource_class_for_uuid(uuid), default)
464   end
465
466   def fa_icon_class_for_object(object, default=DEFAULT_ICON_CLASS)
467     case class_name = object.class.to_s
468     when "Group"
469       object.group_class ? 'fa-folder' : 'fa-users'
470     else
471       RESOURCE_CLASS_ICONS.fetch(class_name, default)
472     end
473   end
474
475   def chooser_preview_url_for object, use_preview_selection=false
476     case object.class.to_s
477     when 'Collection'
478       polymorphic_path(object, tab_pane: 'chooser_preview', use_preview_selection: use_preview_selection)
479     else
480       nil
481     end
482   end
483
484   def render_attribute_as_textile( object, attr, attrvalue, truncate )
485     if attrvalue && (is_textile? object, attr)
486       markup = render_markup attrvalue
487       markup = markup[0,markup.index('</p>')+4] if (truncate && markup.index('</p>'))
488       return markup
489     else
490       return attrvalue
491     end
492   end
493
494   def render_localized_date(date, opts="")
495     raw("<span class='utc-date' data-utc-date='#{date}' data-utc-date-opts='noseconds'>#{date}</span>")
496   end
497
498 private
499   def is_textile?( object, attr )
500     is_textile = object.textile_attributes.andand.include?(attr)
501   end
502 end