Module: ResolveHelper

Defined in:
app/helpers/resolve_helper.rb

Constant Summary collapse

@@bg_update_sections =

Methods to grab SectionRenderer definitions from config. Caching in class-level variables.

nil
@@partial_update_sections =
nil

Instance Method Summary collapse

Instance Method Details

#app_nameObject



79
80
81
# File 'app/helpers/resolve_helper.rb', line 79

def app_name
  return umlaut_config.app_name
end

#bg_update_sectionsObject

Called by background updater to get a list of all sections configured in application config parameter resolve_sections to be included in background updates.



214
215
216
217
218
219
220
221
# File 'app/helpers/resolve_helper.rb', line 214

def bg_update_sections
  unless (@@bg_update_sections)
    @@bg_update_sections = umlaut_config.lookup!("resolve_sections", []).find_all do |section|
      section[:bg_update] != false
    end
  end
  @@bg_update_sections
end

#cover_image_response(size = 'medium') ⇒ Object

size can be ‘small’, ‘medium’, or ‘large. returns a ServiceResponse object, or nil.



85
86
87
88
89
90
91
# File 'app/helpers/resolve_helper.rb', line 85

def cover_image_response(size='medium')
  cover_images = get_service_type('cover_image')
  cover_images.each do |service_response|
    return service_response if service_response.service_data[:size] == size
  end
  return nil
end

#coverage_summary(response) ⇒ Object

Outputs “yyyy - yyyy” coverage summary, with html tags, IF coverage dates are available, it is a title-level request, and we’re configured to show with config resolve_display.show_coverage_summary



258
259
260
261
262
263
264
265
266
267
268
269
270
271
# File 'app/helpers/resolve_helper.rb', line 258

def coverage_summary(response)
  unless (@user_request.title_level_citation? &&
          umlaut_config.lookup!("resolve_display.show_coverage_summary", false) &&
          (response[:coverage_begin_date] || response[:coverage_end_date]))
    return nil
  end

  start   = response[:coverage_begin_date].try(:year) || I18n.t("umlaut.citation.coverage_summary.open_start")
  finish  = response[:coverage_end_date].try(:year) || I18n.t("umlaut.citation.coverage_summary.open_end")

  ("span", :class=>"coverage_summary") do
    "#{start} – #{finish}:"
  end
end

#display_not_found_warning?(uml_request) ⇒ Boolean

Returns:

  • (Boolean)


101
102
103
104
105
# File 'app/helpers/resolve_helper.rb', line 101

def display_not_found_warning?(uml_request)
   = uml_request.referent.
  display_manually_entered_typo_warning = umlaut_config.lookup!("entry_not_in_kb_warning", false)
  return (['genre'] != 'book' && ['object_id'].blank? && user_entered_citation?(@user_request) && display_manually_entered_typo_warning)
end

#expand_contract_section(arg_heading, id, options = {}, &block) ⇒ Object

Generate content in an expand-contract block, with a heading that you can click on to show/hide it. Actual content in block. Example, in view:

<% expand_contract_section("My Content", "div_id_to_use") do %>
    this will be hidden and shown
<% end %>


113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'app/helpers/resolve_helper.rb', line 113

def expand_contract_section(arg_heading, id, options={}, &block)
  expanded = (params["umlaut.show_#{id}"] == "true") || options[:initial_expand] || false
  icon = (:i, nil, :class => [] << ( expanded ? "umlaut_icons-list-open" : "umlaut_icons-list-closed"))
  heading = (:span,( expanded ? "Hide " : "Show "), :class=>'expand_contract_action_label') + arg_heading
  body_class = (expanded ? "in" : "")
  link_params = params.merge('umlaut.request_id' => @user_request.id,
    "umlaut.show_#{id}" => (! expanded).to_s,
    # Need to zero out format-related params for when we're coming
    # from a partial html api request, so the link we generate
    # is not to format json/xml/etc.
    :format => nil,
    'umlaut.response_format' => nil,
    'umlaut.jsonp'=>nil,
    # In Rails3, an :anchor param will actually be used for #fragmentIdentifier
    # on end of url
    :anchor => "#{id}_toggle_link"
    )
  # Make sure a self-referencing link from partial_html_sections
  # really goes to full HTML view.
  link_params[:action] = "index" if link_params[:action] == "partial_html_sections"
  return (:div, :class => "collapsible", :id => "collapse_#{id}") do
    link_to(icon + " " + heading, link_params, :class => "collapse-toggle", "data-target" => "##{id}", "data-toggle" => "collapse") +
      (:div, :id => id, :class => ["collapse"]<< body_class, &block)
  end
end

#html_section_by_div_id(div_id) ⇒ Object



243
244
245
246
247
# File 'app/helpers/resolve_helper.rb', line 243

def html_section_by_div_id(div_id)
  umlaut_config.lookup!("resolve_sections", []).find do |defn|
    defn[:div_id] == div_id
  end
end

#html_sections(area) ⇒ Object

Called by resolve/index view to find sections configured in application config resolve_sections list for a specific part of the page. :main, :sidebar, or :resource_info.



237
238
239
240
241
# File 'app/helpers/resolve_helper.rb', line 237

def html_sections(area)
  umlaut_config.lookup!("resolve_sections", []).find_all do |section|
    section[:html_area] == area
  end
end

#item_icon(section_id) ⇒ Object



249
250
251
252
# File 'app/helpers/resolve_helper.rb', line 249

def item_icon(section_id)
  sections_with_icons = ["fulltext", "audio", "excerpts"]
  (:i, nil) if sections_with_icons.include? section_id
end

#list_with_limit(id, list, options = {}, &block) ⇒ Object

Code-generating helper to add a “More” link to a list, with a maximum number of items to show before ‘more’. AJAXy show, with unobtrusive degredation when no javascript. Based on the idea here for a helper that takes a block. Uses expand_contract_section for actual hidden overflow. Will split list into two different <ul>‘s, one before the cut and one after. Will generate <ul> tags itself. blog.zmok.net/articles/2008/04/22/block-level-helpers-in-ruby-on-rails

id: id to use for HTML div for hidden part of list. Other ids

will be based on this id too.

list: your list limit: how many lines to show before cut off. Default 5. Note that

at least two items will always be included in 'more'. If cutoff
is 5 and your list is 5, all 5 will be shown. If cut-off is 5
and list is 6, 4 items will be shown, with more. This is five
total lines if the 'more' is considered a line.

block: will be passed |item, index|, should generate html for that

item in block.

Example, in a view: <% list_with_limit(“div_id_for_list”, list, :limit=>10) do |item, index| %>

<li>Item Number: <%= index %>: <%= item.title %></li>

<% end %>



173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# File 'app/helpers/resolve_helper.rb', line 173

def list_with_limit(id, list, options = {}, &block)
  # backwards compatible to when third argument was just a number
  # for limit.
  options = {:limit => options} unless options.kind_of?(Hash)
  options[:limit] ||= 5
  options[:ul_class] ||= "list-unstyled"
  return "" if list.empty?
  visible_list  = (list.length > options[:limit]) ? list.slice(0, options[:limit]-1) : list
  hidden_list   = (list.length > options[:limit]) ? list.slice((options[:limit]-1)..list.length-1) : []
  parts =[]
  parts << (:ul, :class => options[:ul_class]) do
    safe_join(
      visible_list.enum_for(:each_with_index).collect do |item, index|
        yield(item, index)
      end, " \n    "
    )
  end
  if (hidden_list.present?)
    parts << expand_contract_section("#{hidden_list.length} more", id) do
      (:ul, :class=>options[:ul_class]) do
        safe_join(
          hidden_list.enum_for(:each_with_index).collect do |item, index|
            yield(item, index + options[:limit] - 1)
          end, " \n    "
        )
      end
    end
  end
  return safe_join(parts, "\n")
end

#partial_html_sectionsObject

Called by partial_html_sections action to get a list of all sections that should be included in the partial_html_sections api response.



225
226
227
228
229
230
231
232
# File 'app/helpers/resolve_helper.rb', line 225

def partial_html_sections
  unless (@@partial_update_sections)
    @@partial_update_sections = umlaut_config.lookup!("resolve_sections", []).find_all do |section|
      section[:partial_html_api] != false
    end
  end
  @@partial_update_sections
end

#render_section(arguments = {}) ⇒ Object

Will render an Umlaut HTML section. See SectionRenderer. Argument can be:

  1. An already initialized SectionRenderer

  2. :id => X, will load Section description hash from the resolve_sections configuration, finding description hash with :div_id == X.

  3. A complete section description hash. Ordinarily only used when that complete hash was previously looked up from resolve_sections config.

For documentation of possible values in the section descripton hash, see SectionRenderer.



28
29
30
31
32
# File 'app/helpers/resolve_helper.rb', line 28

def render_section(arguments = {})
  presenter = (arguments.kind_of?( SectionRenderer )) ?
    arguments : SectionRenderer.new(@user_request, arguments  )
  render(:partial => "section_display", :locals => {:presenter => presenter })
end

#response_content(service_response) ⇒ Object

If response has a :content key returns it – and marks it html_safe if response has a :content_html_safe == true key. returns false if no :content.



142
143
144
145
146
147
# File 'app/helpers/resolve_helper.rb', line 142

def response_content(service_response)
  content = service_response[:content]
  return false unless content
  content = content.html_safe if service_response[:content_html_safe] == true
  return content
end

#section_css_classes(umlaut_request, section_id, response_list) ⇒ Object

Return an array of css classes that should be attached to an .umlaut_section generally ‘umlaut-section’, plus the section_id, plus possibly ‘umlaut-section-highlighted’. See #should_highlight_section?

pass in:

  • current Umlaut Request object

  • string section id

  • array of umlaut ServiceResponses already fetched for this section.



42
43
44
45
46
# File 'app/helpers/resolve_helper.rb', line 42

def section_css_classes(umlaut_request, section_id, response_list)
  classes = ["umlaut-section", section_id]
  classes << 'umlaut-section-highlighted' if should_highlight_section?(umlaut_request, section_id, response_list)
  return classes
end

#should_highlight_section?(umlaut_request, section_id, response_list) ⇒ Boolean

Called by #section_css_classes. Decides if a section should get highlight styles. Default logic highlights fulltext if present, otherwise holdings/docdel sections (in some cases both even if holdings present, in some cases just docdel, depending on nature of resource.) This is something local institutions may want to supply custom logic for, over-ride this method.

This is VERY tricky to get right, BOTH becuase of local policy differences, AND becuase umlaut’s concurrent service handling means things are changing all the time. Umlaut used to just highlight fulltext with responses, that’s it. But we’re trying something more sophisticated. You may want to over-ride with something simpler, or something better suited to local policies and conditions.

Returns:

  • (Boolean)


60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'app/helpers/resolve_helper.rb', line 60

def should_highlight_section?(umlaut_request, section_id, response_list)
  case section_id
  when "fulltext"
    umlaut_request.get_service_type("fulltext").present?
  when "holding"
    umlaut_request.get_service_type("holding").present? && umlaut_request.get_service_type("fulltext").empty?
  when "document_delivery"
    # Only once fulltext and holdings are done being fetched. 
    # If there's no fulltext or holdings, OR there's holdings, but
    # it's a journal type thing, where we probably don't know if the
    # particular volume/issue wanted is present. 
    umlaut_request.get_service_type("fulltext").empty? && 
    (! umlaut_request.service_types_in_progress?(["fulltext", "holding"])) && (
      umlaut_request.get_service_type("holding").empty? || 
      umlaut_request.referent.format == "journal"
    )
  end
end

#user_entered_citation?(uml_request) ⇒ Boolean

Did this come from citation linker style entry? We check the referrer.

Returns:

  • (Boolean)


95
96
97
98
99
# File 'app/helpers/resolve_helper.rb', line 95

def user_entered_citation?(uml_request)
  return false unless uml_request && uml_request.referrer_id
  id = uml_request.referrer_id
  return id == 'info:sid/sfxit.com:citation' || id == umlaut_config.lookup("rfr_ids.citation") || id == umlaut_config.lookup('rfr_ids.opensearch')
end