Merge remote-tracking branch 'origin/master' into 2049-run-job-from-workbench
[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_content_from_database(markup)
15     raw RedCloth.new(markup).to_html
16   end
17
18   def human_readable_bytes_html(n)
19     return h(n) unless n.is_a? Fixnum
20
21     orders = {
22       1 => "bytes",
23       1024 => "KiB",
24       (1024*1024) => "MiB",
25       (1024*1024*1024) => "GiB",
26       (1024*1024*1024*1024) => "TiB"
27     }
28
29     orders.each do |k, v|
30       sig = (n.to_f/k)
31       if sig >=1 and sig < 1024
32         if v == 'bytes'
33           return "%i #{v}" % sig
34         else
35           return "%0.1f #{v}" % sig
36         end
37       end
38     end
39     
40     return h(n)
41       #raw = n.to_s
42     #cooked = ''
43     #while raw.length > 3
44     #  cooked = ',' + raw[-3..-1] + cooked
45     #  raw = raw[0..-4]
46     #end
47     #cooked = raw + cooked
48   end
49
50   def resource_class_for_uuid(attrvalue, opts={})
51     ArvadosBase::resource_class_for_uuid(attrvalue, opts)
52   end
53
54   def link_to_if_arvados_object(attrvalue, opts={}, style_opts={})
55     if (resource_class = resource_class_for_uuid(attrvalue, opts))
56       link_uuid = attrvalue.is_a?(ArvadosBase) ? attrvalue.uuid : attrvalue
57       link_name = opts[:link_text]
58       if !link_name
59         link_name = link_uuid
60
61         if opts[:friendly_name]
62           begin
63             link_name = resource_class.find(link_uuid).friendly_link_name
64           rescue RuntimeError
65             # If that lookup failed, the link will too. So don't make one.
66             return attrvalue
67           end
68         end
69         if opts[:with_class_name]
70           link_name = "#{resource_class.to_s}: #{link_name}"
71         end
72       end
73       style_opts[:class] = (style_opts[:class] || '') + ' nowrap'
74       link_to link_name, { controller: resource_class.to_s.tableize, action: 'show', id: link_uuid }, style_opts
75     else
76       attrvalue
77     end
78   end
79
80   def render_editable_attribute(object, attr, attrvalue=nil, htmloptions={})
81     attrvalue = object.send(attr) if attrvalue.nil?
82     return attrvalue if !object.attribute_editable? attr
83
84     input_type = 'text'
85     case object.class.attribute_info[attr.to_sym].andand[:type]
86     when 'text'
87       input_type = 'textarea'
88     when 'datetime'
89       input_type = 'date'
90     else
91       input_type = 'text'
92     end
93
94     attrvalue = attrvalue.to_json if attrvalue.is_a? Hash or attrvalue.is_a? Array
95
96     link_to attrvalue.to_s, '#', {
97       "data-emptytext" => "none",
98       "data-placement" => "bottom",
99       "data-type" => input_type,
100       "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore),
101       "data-title" => "Update #{attr.gsub '_', ' '}",
102       "data-name" => attr,
103       "data-pk" => "{id: \"#{object.uuid}\", key: \"#{object.class.to_s.underscore}\"}",
104       :class => "editable"
105     }.merge(htmloptions)
106   end
107
108   def render_editable_subattribute(object, attr, subattr, template, htmloptions={})
109     attrvalue = object.send(attr)
110     subattr.each do |k|
111       if attrvalue and attrvalue.is_a? Hash
112         attrvalue = attrvalue[k]
113       else
114         break
115       end
116     end
117
118     datatype = nil
119     required = true
120     if template
121       #puts "Template is #{template.class} #{template.is_a? Hash} #{template}"
122       if template.is_a? Hash
123         if template[:output_of]
124           return raw("<span class='label label-default'>#{template[:output_of]}</span>")
125         end
126         if template[:dataclass]
127           dataclass = template[:dataclass]
128         end
129         if template[:optional] != nil
130           required = (template[:optional] != "true")
131         end
132         if template[:required] != nil
133           required = template[:required]
134         end
135       end
136     end
137
138     return attrvalue if !object.attribute_editable? attr
139
140     if dataclass
141       begin
142         dataclass = dataclass.constantize
143       rescue NameError
144       end
145     else
146       rsc = template
147       if template.is_a? Hash
148         if template[:value]
149           rsc = template[:value]
150         elsif template[:default]
151           rsc = template[:default]
152         end
153       end
154
155       dataclass = ArvadosBase.resource_class_for_uuid(rsc)
156     end
157
158     if dataclass && dataclass.is_a?(Class)
159       datatype = 'select'
160     elsif dataclass == 'number'
161       datatype = 'number'
162     else
163       if template.is_a? Array
164         # ?!?
165       elsif template.is_a? String
166         if /^\d+$/.match(template)
167           datatype = 'number'
168         else
169           datatype = 'text'
170         end
171       end
172     end
173
174     id = "#{object.uuid}-#{subattr.join('-')}"
175     dn = "[#{attr}]"
176     subattr.each do |a|
177       dn += "[#{a}]"
178     end
179
180     if attrvalue.is_a? String
181       attrvalue = attrvalue.strip
182     end
183
184     if dataclass and dataclass.is_a? Class
185       items = []
186       items.append({name: attrvalue, uuid: attrvalue, type: dataclass.to_s})
187       #dataclass.where(uuid: attrvalue).each do |item|
188       #  items.append({name: item.uuid, uuid: item.uuid, type: dataclass.to_s})
189       #end
190       dataclass.limit(10).each do |item|
191         items.append({name: item.uuid, uuid: item.uuid, type: dataclass.to_s})
192       end
193     end
194
195     lt = link_to attrvalue, '#', {
196       "data-emptytext" => "none",
197       "data-placement" => "bottom",
198       "data-type" => datatype,
199       "data-url" => url_for(action: "update", id: object.uuid, controller: object.class.to_s.pluralize.underscore),
200       "data-title" => "Update #{subattr[-1].to_s.titleize}",
201       "data-name" => dn,
202       "data-pk" => "{id: \"#{object.uuid}\", key: \"#{object.class.to_s.underscore}\"}",
203       "data-showbuttons" => "false",
204       "data-value" => attrvalue,
205       :class => "editable #{'required' if required}",
206       :id => id
207     }.merge(htmloptions)
208
209     lt += raw('<script>')
210     
211     if items and items.length > 0
212       lt += raw("add_form_selection_sources(#{items.to_json});\n")
213     end
214
215     lt += raw("$('##{id}').editable({source: function() { return select_form_sources('#{dataclass}'); } });\n")
216
217     lt += raw("</script>")
218
219     lt 
220   end
221 end