Class: TopContainersController

Inherits:
ApplicationController show all
Includes:
ApplicationHelper, ExportHelper
Defined in:
frontend/app/controllers/top_containers_controller.rb

Defined Under Namespace

Classes: MissingFilterException

Constant Summary

Constants included from RequestsHelper

RequestsHelper::VALID_EMAIL_REGEX

Constants included from Searchable

Searchable::ABSTRACT

Instance Method Summary collapse

Methods included from ApplicationHelper

#add_new_event_url, #bootstrap_class_for, #button_confirm_action, #button_delete_action, #button_delete_multiple_action, #button_edit_multiple_action, #button_get_selector, #clean_mixed_content, #current_repo, #current_user, #display_audit_info, #edit_mode?, #export_csv, #flash_messages, #full_mode?, #get_subject_icon_class, #has_agent_subrecords?, #has_permission_for_controller?, #include_controller_js, #include_theme_css, #inline?, #job_types, #link_to_help, #link_to_merge_params, #proxy_localhost?, #render_aspace_partial, #render_token, #set_title, #setup_context, #show_external_ids?, #supported_locales_default, #supported_locales_options, #wrap_with_tooltip

Methods included from RequestsHelper

#pass_email_requirements?, #repo_has_valid_email?

Methods included from PrefixHelper

app_prefix, #app_prefix, app_prefix_js, #app_prefix_js

Methods included from ExportHelper

#csv_response, #xml_response

Methods inherited from ApplicationController

#archivesspace, can_access?, permission_mappings, set_access_control

Methods included from JsonHelper

#merge_notes, #process_json_notes

Methods included from Searchable

#default_search_opts, #get_filter_years, #handle_results, #html_notes, #process_results, #process_search_results, #repo_context, #search_terms, #set_up_advanced_search, #set_up_and_run_search, #set_up_search, #strip_facet_fields

Methods included from HandleFaceting

#fetch_only_facets, #get_pretty_facet_value, #strip_facets

Methods included from ManipulateNode

#inheritance, #process_mixed_content, #strip_mixed_content

Instance Method Details

#batch_deleteObject



136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'frontend/app/controllers/top_containers_controller.rb', line 136

def batch_delete
  response = JSONModel::HTTP.post_form('/batch_delete',
                              'record_uris[]' => Array(params[:record_uris])
                                       )

  if response.code === '200'
    flash[:success] = I18n.t('top_container.batch_delete.success')
    deleted_uri_param = params[:record_uris].map {|uri| "deleted_uri[]=#{uri}"}.join('&')
    redirect_to "#{request.referrer}?#{deleted_uri_param}"
  else
    flash[:error] = "#{I18n.t("top_container.batch_delete.error")}<br/> #{ASUtils.json_parse(response.body)["error"]["failures"].map {|err| "#{err["response"]} [#{err["uri"]}]"}.join("<br/>")}".html_safe
    redirect_to request.referrer
  end
end

#batch_mergeObject



119
120
121
122
123
124
125
126
# File 'frontend/app/controllers/top_containers_controller.rb', line 119

def batch_merge
  merge_list = params[:victims]
  target = params[:target]
  victims = merge_list - target
  handle_merge(victims,
                target[0],
                'top_container')
end

#bulk_operation_searchObject



168
169
170
171
172
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# File 'frontend/app/controllers/top_containers_controller.rb', line 168

def bulk_operation_search
  session[:top_container_previous_search] = {}

  # Store ONLY needed information from linkers in rails session so it can be repopulated for another search later
  # (The whole record is not saved because they are too big for the rails session and only a few pieces of info are used)
  if params['collection_resource']
    previous_resource = JSON.parse(params['collection_resource']['_resolved'])
    session[:top_container_previous_search]['resource'] = {
        'uri' => previous_resource['uri'],
        'title' => previous_resource['title'],
        'jsonmodel_type' => previous_resource['jsonmodel_type']
      }
  end

  if params['collection_accession']
    previous_accession = JSON.parse(params['collection_accession']['_resolved'])
    session[:top_container_previous_search]['accession'] = {
      'uri' => previous_accession['uri'],
      'title' => previous_accession['title'],
      'jsonmodel_type' => previous_accession['jsonmodel_type']
    }
  end

  if params['container_profile']
    previous_container_profile = JSON.parse(params['container_profile']['_resolved'])
    session[:top_container_previous_search]['container_profile'] = {
      'uri' => previous_container_profile['uri'],
      'title' => previous_container_profile['title'],
      'jsonmodel_type' => previous_container_profile['jsonmodel_type']
    }
  end

  if params['location']
    previous_location = JSON.parse(params['location']['_resolved'])
    session[:top_container_previous_search]['location'] = {
      'uri' => previous_location['uri'],
      'title' => previous_location['title'],
      'jsonmodel_type' => previous_location['jsonmodel_type']
    }
  end

  begin
    results = perform_search
  rescue MissingFilterException
    return render :plain => I18n.t('top_container._frontend.messages.filter_required'), :status => 500
  end

  render_aspace_partial :partial => 'top_containers/bulk_operations/results', :locals => {:results => results}
end

#bulk_operation_updateObject



232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'frontend/app/controllers/top_containers_controller.rb', line 232

def bulk_operation_update
  post_params = {'ids[]' => params['update_uris'].map {|uri| JSONModel(:top_container).id_for(uri)}}
  post_uri = "/repositories/#{session[:repo_id]}/top_containers/batch/"

  if params['ils_holding_id']
    post_params['ils_holding_id'] = params['ils_holding_id']
    post_uri += 'ils_holding_id'
  elsif params['container_profile_uri']
    post_params['container_profile_uri'] = params['container_profile'] ? params['container_profile']['ref'] : ''
    post_uri += 'container_profile'
  elsif params['location_uri']
    post_params['location_uri'] = params['location'] ? params['location']['ref'] : ''
    post_uri += 'location'
  else
    render :plain => 'You must provide a field to update.', :status => 500
  end

  response = JSONModel::HTTP::post_form(post_uri, post_params)
  result = ASUtils.json_parse(response.body)

  if result.has_key?('records_updated')
    render_aspace_partial :partial => 'top_containers/bulk_operations/bulk_action_success', :locals => {:result => result}
  else
    render :plain => "There seems to have been a problem with the update: #{result['error']}", :status => 500
  end
end

#bulk_operations_browseObject



219
220
221
222
223
224
225
226
227
228
229
# File 'frontend/app/controllers/top_containers_controller.rb', line 219

def bulk_operations_browse
  @top_container_previous_search = {}

  begin
    results = perform_search if params.has_key?('q')
  rescue MissingFilterException
    flash[:error] = I18n.t('top_container._frontend.messages.filter_required')
  end

  render_aspace_partial :partial => 'top_containers/bulk_operations/browse', :locals => {:results => results}
end

#createObject



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'frontend/app/controllers/top_containers_controller.rb', line 71

def create
  handle_crud(:instance => :top_container,
              :model => JSONModel(:top_container),
              :on_invalid => ->() {
                return render_aspace_partial :partial => 'top_containers/new' if inline?
                return render :action => :new
              },
              :on_valid => ->(id) {
                if inline?
                  @top_container.refetch
                  render :json => @top_container.to_hash if inline?
                else
                  flash[:success] = I18n.t('top_container._frontend.messages.created')
                  redirect_to :controller => :top_containers, :action => :show, :id => id
                end
              })
end

#current_recordObject



90
91
92
# File 'frontend/app/controllers/top_containers_controller.rb', line 90

def current_record
  @top_container
end

#deleteObject



129
130
131
132
133
134
# File 'frontend/app/controllers/top_containers_controller.rb', line 129

def delete
  top_container = JSONModel(:top_container).find(params[:id])
  top_container.delete

  redirect_to(:controller => :top_containers, :action => :index, :deleted_uri => top_container.uri)
end

#editObject



100
101
102
# File 'frontend/app/controllers/top_containers_controller.rb', line 100

def edit
  @top_container = JSONModel(:top_container).find(params[:id], find_opts)
end

#indexObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'frontend/app/controllers/top_containers_controller.rb', line 13

def index
  respond_to do |format|
    format.html {
      # If there was a previous top_container search, we prepopulate the form with the filled-in linkers and a search is executed in top_containers.bulk.js
      @top_container_previous_search = {}

      if session[:top_container_previous_search] && session[:top_container_previous_search] != {}
        if session[:top_container_previous_search]['resource']
          @top_container_previous_search['resource'] = session[:top_container_previous_search]['resource']
          @top_container_previous_search['resource']['id'] = @top_container_previous_search['resource']['uri']
        end

        if session[:top_container_previous_search]['accession']
          @top_container_previous_search['accession'] = session[:top_container_previous_search]['accession']
          @top_container_previous_search['accession']['id'] = @top_container_previous_search['accession']['uri']
        end

        if session[:top_container_previous_search]['container_profile']
          @top_container_previous_search['container_profile'] = session[:top_container_previous_search]['container_profile']
          @top_container_previous_search['container_profile']['id'] = @top_container_previous_search['container_profile']['uri']
        end

        if session[:top_container_previous_search]['location']
          @top_container_previous_search['location'] = session[:top_container_previous_search]['location']
          @top_container_previous_search['location']['id'] = @top_container_previous_search['location']['uri']
        end
      end

      @search_data = Search.for_type(session[:repo_id], 'top_container',
                                     params_for_backend_search.merge('facet[]' => SearchResultData.TOP_CONTAINER_FACETS))
    }
    format.csv {
      params[:fields] -= %w[title context type indicator barcode]
      params[:fields] += %w[type_enum_s indicator_u_icusort barcode_u_sstr]
      params[:fields].prepend('collection_display_string_u_sstr', 'series_title_u_sstr')
      csv_response(
        "/repositories/#{session[:repo_id]}/search",
        prepare_search.merge('facet[]' => SearchResultData.TOP_CONTAINER_FACETS),
        "#{I18n.t('top_container._plural').downcase}."
      )
    }
  end
end

#newObject



58
59
60
61
62
63
64
65
66
67
68
# File 'frontend/app/controllers/top_containers_controller.rb', line 58

def new
  @top_container = JSONModel(:top_container).new._always_valid!

  if inline?
    render_aspace_partial(:partial => 'top_containers/new',
                          :locals => {
                            :small => params[:small],
                            :created_for_collection => params[:created_for_collection]
                          })
  end
end

#showObject



95
96
97
# File 'frontend/app/controllers/top_containers_controller.rb', line 95

def show
  @top_container = JSONModel(:top_container).find(params[:id], find_opts)
end

#typeaheadObject



152
153
154
155
156
157
158
159
160
161
162
# File 'frontend/app/controllers/top_containers_controller.rb', line 152

def typeahead
  search_params = params_for_backend_search
  search_params['q'] = '*' + search_params['q'].gsub(/[^0-9A-Za-z]/, '').downcase + '*'

  search_params['q'] = "top_container_u_typeahead_utext:#{search_params["q"]}"

  search_params = search_params.merge(search_filter_for(params[:uri]))
  search_params = search_params.merge('sort' => 'top_container_u_icusort asc')

  render :json => Search.all(session[:repo_id], search_params)
end

#updateObject



105
106
107
108
109
110
111
112
113
114
115
116
# File 'frontend/app/controllers/top_containers_controller.rb', line 105

def update
  handle_crud(:instance => :top_container,
              :model => JSONModel(:top_container),
              :obj => JSONModel(:top_container).find(params[:id], find_opts),
              :on_invalid => ->() {
                return render action: 'edit'
              },
              :on_valid => ->(id) {
                flash[:success] = I18n.t('top_container._frontend.messages.updated')
                redirect_to :controller => :top_containers, :action => :show, :id => id
              })
end

#update_barcodesObject



260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
# File 'frontend/app/controllers/top_containers_controller.rb', line 260

def update_barcodes
  update_uris = params[:update_uris]
  barcode_data = {}
  update_uris.map {|uri| barcode_data[uri] = params[uri].blank? ? nil : params[uri]}

  post_uri = "#{JSONModel::HTTP.backend_url}/repositories/#{session[:repo_id]}/top_containers/bulk/barcodes"

  response = JSONModel::HTTP::post_json(URI(post_uri), barcode_data.to_json)
  result = ASUtils.json_parse(response.body)

  if response.code =~ /^4/
    return render_aspace_partial :partial => 'top_containers/bulk_operations/error_messages', :locals => {:exceptions => result, :jsonmodel => 'top_container'}, :status => 500
  end

  render_aspace_partial :partial => 'top_containers/bulk_operations/bulk_action_success', :locals => {:result => result}
end

#update_indicatorsObject



278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
# File 'frontend/app/controllers/top_containers_controller.rb', line 278

def update_indicators
  update_uris = params[:update_uris]
  indicator_data = {}
  update_uris.map {|uri| indicator_data[uri] = params[uri].blank? ? nil : params[uri]}

  post_uri = "#{JSONModel::HTTP.backend_url}/repositories/#{session[:repo_id]}/top_containers/bulk/indicators"

  response = JSONModel::HTTP::post_json(URI(post_uri), indicator_data.to_json)
  result = ASUtils.json_parse(response.body)

  if response.code =~ /^4/
    return render_aspace_partial :partial => 'top_containers/bulk_operations/error_messages', :locals => {:exceptions => result, :jsonmodel => 'top_container'}, :status => 500
  end

  render_aspace_partial :partial => 'top_containers/bulk_operations/bulk_action_success', :locals => {:result => result}
end

#update_locationsObject



296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
# File 'frontend/app/controllers/top_containers_controller.rb', line 296

def update_locations
  update_uris = params[:update_uris]
  location_data = {}
  update_uris.map {|uri| location_data[uri] = params[uri].blank? ? nil : params[uri]['ref']}

  post_uri = "#{JSONModel::HTTP.backend_url}/repositories/#{session[:repo_id]}/top_containers/bulk/locations"

  response = JSONModel::HTTP::post_json(URI(post_uri), location_data.to_json)
  result = ASUtils.json_parse(response.body) rescue nil

  if response.code =~ /^4/
    return render_aspace_partial :partial => 'top_containers/bulk_operations/error_messages',
         :locals => {:exceptions => (result || response.message),
               :jsonmodel => 'top_container'},
         :status => 500
  elsif response.code =~ /^5/
    return render_aspace_partial :partial => 'top_containers/bulk_operations/error_messages',
         :locals => {:exceptions => response.message},
         :status => 500
  end

  render_aspace_partial :partial => 'top_containers/bulk_operations/bulk_action_success', :locals => {:result => result}
end