Class: ResourcesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ResourcesController
- Defined in:
- frontend/app/controllers/resources_controller.rb,
public/app/controllers/resources_controller.rb
Constant Summary collapse
- DEFAULT_RES_FACET_TYPES =
%w{primary_type subjects published_agents langcode}
- DEFAULT_RES_INDEX_OPTS =
{ 'resolve[]' => ['repository:id', 'resource:id@compact_resource', 'top_container_uri_u_sstr:id'], 'sort' => 'title_sort asc', 'facet.mincount' => 1 }
- DEFAULT_RES_SEARCH_OPTS =
{ 'resolve[]' => ['repository:id', 'resource:id@compact_resource', 'ancestors:id@compact_resource', 'top_container_uri_u_sstr:id'], 'facet.mincount' => 1 }
- DEFAULT_RES_SEARCH_PARAMS =
{ q: ['*'], limit: 'resource', op: [''], field: ['title'] }
- DEFAULT_RES_TYPES =
%w{pui_archival_object pui_digital_object agent subject}
Instance Method Summary collapse
-
#accept_children ⇒ Object
-
#add_children ⇒ Object
-
#create ⇒ Object
-
#current_record ⇒ Object
-
#defaults ⇒ Object
-
#delete ⇒ Object
-
#digitized ⇒ Object
-
#edit ⇒ Object
-
#index ⇒ Object
present a list of resources.
-
#infinite ⇒ Object
-
#inventory ⇒ Object
-
#merge ⇒ Object
-
#models_in_graph ⇒ Object
-
#new ⇒ Object
-
#node_from_root ⇒ Object
-
#publish ⇒ Object
-
#rde ⇒ Object
-
#resolve ⇒ Object
-
#search ⇒ Object
-
#show ⇒ Object
-
#suppress ⇒ Object
-
#transfer ⇒ Object
-
#tree_node ⇒ Object
-
#tree_node_from_root ⇒ Object
-
#tree_root ⇒ Object
-
#tree_waypoint ⇒ Object
-
#unpublish ⇒ Object
-
#unsuppress ⇒ Object
-
#update ⇒ Object
-
#update_defaults ⇒ Object
-
#waypoints ⇒ Object
Methods inherited from ApplicationController
#archivesspace, can_access?, permission_mappings, set_access_control
Instance Method Details
#accept_children ⇒ Object
334 335 336 |
# File 'frontend/app/controllers/resources_controller.rb', line 334 def accept_children handle_accept_children(JSONModel(:resource)) end |
#add_children ⇒ Object
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
# File 'frontend/app/controllers/resources_controller.rb', line 257 def add_children @parent = Resource.find(params[:id]) @resource_uri = @parent.uri if params[:archival_record_children].blank? or params[:archival_record_children]["children"].blank? @children = ResourceChildren.new flash.now[:error] = t("rde.messages.no_rows") else children_data = cleanup_params_for_schema(params[:archival_record_children], JSONModel(:archival_record_children).schema) begin @children = ResourceChildren.from_hash(children_data, false) if params["validate_only"] == "true" @exceptions = @children.children.collect {|c| JSONModel(:archival_object).from_hash(c, false)._exceptions} error_count = @exceptions.select {|e| !e.empty?}.length if error_count > 0 flash.now[:error] = t("rde.messages.rows_with_errors", :count => error_count) else flash.now[:success] = t("rde.messages.rows_no_errors") end return render_aspace_partial :partial => "shared/rde" else @children.save(:resource_id => @parent.id) end return render :plain => t("rde.messages.success") rescue JSONModel::ValidationException => e @exceptions = @children.children.collect {|c| JSONModel(:archival_object).from_hash(c, false)._exceptions} if @exceptions.all?(&:blank?) e.errors.each { |key, vals| flash.now[:error] = "#{key} : #{vals.join('<br/>')}" } else flash.now[:error] = t("rde.messages.rows_with_errors", :count => @exceptions.select {|e| !e.empty?}.length) end end end render_aspace_partial :partial => "shared/rde" end |
#create ⇒ Object
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 |
# File 'frontend/app/controllers/resources_controller.rb', line 181 def create flash.keep(:spawned_from_accession) handle_crud(:instance => :resource, :on_invalid => ->() { render action: "new" }, :on_valid => ->(id) { flash[:success] = t("resource._frontend.messages.created", resource_title: clean_mixed_content(@resource.title)) if @resource["is_slug_auto"] == false && @resource["slug"] == nil && params["resource"] && params["resource"]["is_slug_auto"] == "1" flash[:warning] = t("slug.autogen_disabled") end redirect_to({ :controller => :resources, :action => :edit, :id => id }) }) end |
#current_record ⇒ Object
29 30 31 |
# File 'frontend/app/controllers/resources_controller.rb', line 29 def current_record @resource end |
#defaults ⇒ Object
69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'frontend/app/controllers/resources_controller.rb', line 69 def defaults defaults = DefaultValues.get 'resource' values = defaults ? defaults.form_values : {:title => t("resource.title_default", :default => "")} @resource = Resource.new(values)._always_valid! @form_title = t("default_values.form_title.resource") render "defaults" end |
#delete ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'frontend/app/controllers/resources_controller.rb', line 229 def delete resource = Resource.find(params[:id]) begin resource.delete rescue ConflictException => e flash[:error] = t("resource._frontend.messages.delete_conflict", :error => t("errors.#{e.conflicts}", :default => e.)) return redirect_to(:controller => :resources, :action => :show, :id => params[:id]) end flash[:success] = t("resource._frontend.messages.deleted", resource_title: clean_mixed_content(resource.title)) redirect_to(:controller => :resources, :action => :index, :deleted_uri => resource.uri) end |
#digitized ⇒ Object
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'public/app/controllers/resources_controller.rb', line 265 def digitized ### BEGIN BOILERPLATE -- many of these controllers are doing the same setup, refactor eventually uri = "/repositories/#{params[:rid]}/resources/#{params[:id]}" @result = archivesspace.get_record(uri, {}) @repo_info = @result.repository_information @context = [{:uri => @repo_info['top']['uri'], :crumb => @repo_info['top']['name'], type: 'repository'}, {:uri => nil, :crumb => process_mixed_content(@result.display_string), type: @result.primary_type}] fill_request_info # enable request button in this context @has_containers = has_containers?(uri) # enable inventory link tree_root = archivesspace.get_raw_record(uri + '/tree/root') rescue nil @has_children = tree_root && tree_root['child_count'] > 0 # enable collection organization link ### END BOILERPLATE # digital material stuff ... sets @records fetch_digital_objects(uri, "#{uri}/digitized", params) set_pager(params) rescue RecordNotFound record_not_found(uri, 'resource') end |
#edit ⇒ Object
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'frontend/app/controllers/resources_controller.rb', line 152 def edit flash.keep if not flash.empty? # keep the notices so they display on the subsequent ajax call # check for active batch import job and redirect if there is one active_job = find_active_bulk_import_job if active_job flash[:active_bulk_import_job] = t( 'bulk_import_job.active', url: "#{AppConfig[:frontend_proxy_url]}/resolve/readonly?uri=#{active_job['uri']}", uri: active_job['uri'] ) return redirect_to(:action => :show, :id => params[:id], :inline => params[:inline]) end if params[:inline] # only fetch the fully resolved record when rendering the full form @resource = fetch_resolved(:resource, params[:id], excludes: ['linked_events', 'linked_events::linked_records']) if @resource.suppressed return redirect_to(:action => :show, :id => params[:id], :inline => params[:inline]) end return render_aspace_partial :partial => "resources/edit_inline" end @resource = JSONModel(:resource).find(params[:id]) end |
#index ⇒ Object
present a list of resources. If no repository named, just get all of them.
34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'public/app/controllers/resources_controller.rb', line 34 def index respond_to do |format| format.html { @search_data = Search.for_type(session[:repo_id], params[:include_components]==="true" ? ["resource", "archival_object"] : "resource", params_for_backend_search.merge({"facet[]" => SearchResultData.RESOURCE_FACETS})) } format.csv { search_params = params_for_backend_search.merge({"facet[]" => SearchResultData.RESOURCE_FACETS}) search_params["type[]"] = params[:include_components] === "true" ? ["resource", "archival_object"] : [ "resource" ] uri = "/repositories/#{session[:repo_id]}/search" csv_response( uri, Search.build_filters(search_params), "#{t('resource._plural').downcase}.") } end end |
#infinite ⇒ Object
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'public/app/controllers/resources_controller.rb', line 183 def infinite @root_uri = "/repositories/#{params[:rid]}/resources/#{params[:id]}" begin @criteria = {} @criteria['resolve[]'] = ['repository:id', 'resource:id@compact_resource', 'top_container_uri_u_sstr:id', 'related_accession_uris:id'] @result = archivesspace.get_record(@root_uri, @criteria) @has_containers = has_containers?(@root_uri) @has_digital_objects = has_digital_objects? @repo_info = @result.repository_information @page_title = "#{I18n.t('resource._singular')}: #{strip_mixed_content(@result.display_string)}" @context = [{:uri => @repo_info['top']['uri'], :crumb => @repo_info['top']['name'], type: 'repository'}, {:uri => nil, :crumb => process_mixed_content(@result.display_string), type: @result.primary_type}] fill_request_info @ordered_records = archivesspace.get_record(@root_uri + '/ordered_records').json.fetch('uris') rescue RecordNotFound record_not_found(uri, 'resource') end end |
#inventory ⇒ Object
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'public/app/controllers/resources_controller.rb', line 243 def inventory uri = "/repositories/#{params[:rid]}/resources/#{params[:id]}" tree_root = archivesspace.get_raw_record(uri + '/tree/root') rescue nil @has_children = tree_root && tree_root['child_count'] > 0 @has_digital_objects = has_digital_objects? # stuff for the collection bits @criteria = {} @criteria['resolve[]'] = ['repository:id', 'resource:id@compact_resource', 'top_container_uri_u_sstr:id', 'related_accession_uris:id'] @result = archivesspace.get_record(uri, @criteria) @repo_info = @result.repository_information @page_title = "#{I18n.t('resource._singular')}: #{strip_mixed_content(@result.display_string)}" @context = [{:uri => @repo_info['top']['uri'], :crumb => @repo_info['top']['name'], type: 'repository'}, {:uri => nil, :crumb => process_mixed_content(@result.display_string), type: @result.primary_type}] fill_request_info # top container stuff ... sets @records fetch_containers(uri, "#{uri}/inventory", params) set_pager(params) rescue RecordNotFound record_not_found(uri, 'resource') end |
#merge ⇒ Object
339 340 341 342 343 |
# File 'frontend/app/controllers/resources_controller.rb', line 339 def merge handle_merge( params[:refs], JSONModel(:resource).uri_for(params[:id]), 'resource') end |
#models_in_graph ⇒ Object
364 365 366 367 368 369 370 371 |
# File 'frontend/app/controllers/resources_controller.rb', line 364 def models_in_graph list_uri = JSONModel(:resource).uri_for(params[:id]) + "/models_in_graph" list = JSONModel::HTTP.get_json(list_uri) render :json => list.select { |type| type != "lang_material" }.map {|type| [type, t("#{type == 'archival_object' ? 'resource_component' : type}._singular")] } end |
#new ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'frontend/app/controllers/resources_controller.rb', line 48 def new @resource = Resource.new(:title => t("resource.title_default", :default => ""))._always_valid! defaults = user_defaults('resource') if defaults @resource.update(defaults.values) @form_title = "#{t('actions.new_prefix')} #{t('resource._singular')}" end if params[:accession_id] acc = Accession.find(params[:accession_id], find_opts) if acc @resource.populate_from_accession(acc) flash.now[:info] = t("resource._frontend.messages.spawned", accession_display_string: acc.display_string) flash[:spawned_from_accession] = acc.id end end return render_aspace_partial :partial => "resources/new_inline" if params[:inline] end |
#node_from_root ⇒ Object
109 110 111 112 113 114 |
# File 'frontend/app/controllers/resources_controller.rb', line 109 def node_from_root resource_uri = JSONModel(:resource).uri_for(params[:id]) render :json => pass_through_json("#{resource_uri}/tree/node_from_root", 'node_ids[]' => params[:node_ids]) end |
#publish ⇒ Object
304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'frontend/app/controllers/resources_controller.rb', line 304 def publish resource = Resource.find(params[:id]) response = JSONModel::HTTP.post_form("#{resource.uri}/publish") if response.code == '200' flash[:success] = t("resource._frontend.messages.published", resource_title: clean_mixed_content(resource.title)) else flash[:error] = ASUtils.json_parse(response.body)['error'].to_s end redirect_to request.referer end |
#rde ⇒ Object
245 246 247 248 249 250 251 252 253 254 |
# File 'frontend/app/controllers/resources_controller.rb', line 245 def rde flash.clear @parent = Resource.find(params[:id]) @resource_uri = @parent.uri @children = ResourceChildren.new @exceptions = [] render_aspace_partial :partial => "shared/rde" end |
#resolve ⇒ Object
172 173 174 175 176 177 178 179 180 |
# File 'public/app/controllers/resources_controller.rb', line 172 def resolve uri = "/repositories/#{params[:rid]}/resources/#{params[:id]}" results = archivesspace.search("ref_id:#{params[:ref_id]} AND resource:\"#{uri}\"", 1, 'type[]' => 'pui') if results['results'].length == 1 redirect_to results['results'][0]['uri'] else record_not_resolved("#{uri}/resolve/#{params[:ref_id]}", 'archival_object') end end |
#search ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 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 138 139 |
# File 'public/app/controllers/resources_controller.rb', line 90 def search repo_id = params.require(:repo_id) res_id = "/repositories/#{repo_id}/resources/#{params.require(:id)}" search_opts = DEFAULT_RES_SEARCH_OPTS search_opts['fq'] = ["resource:\"#{res_id}\""] params[:res_id] = res_id # q = params.fetch(:q,'') unless params.fetch(:q, nil) params[:q] = ['*'] end @base_search = "#{res_id}/search?" begin set_up_advanced_search(DEFAULT_RES_TYPES, DEFAULT_RES_FACET_TYPES, search_opts, params) rescue Exception => error flash[:error] = I18n.t('errors.unexpected_error') redirect_back(fallback_location: res_id ) and return end page = Integer(params.fetch(:page, "1")) @results = archivesspace.advanced_search('/search', page, @criteria) if @results['total_hits'].blank? || @results['total_hits'] == 0 flash[:notice] = I18n.t('search_results.no_results') redirect_back(fallback_location: @base_search) else process_search_results(@base_search) title = '' title = strip_mixed_content(@results['results'][0]['_resolved_resource']['json']['title']) if @results['results'][0] && @results['results'][0].dig('_resolved_resource', 'json') @context = [] @context.push({:uri => "/repositories/#{repo_id}", :crumb => get_pretty_facet_value('repository', "/repositories/#{repo_id}"), :type => 'repository'}) unless title.blank? @context.push({:uri => "#{res_id}", :crumb => title, type: 'resource'}) end if @results['total_hits'] > 1 @search[:dates_within] = true if params.fetch(:filter_from_year, '').blank? && params.fetch(:filter_to_year, '').blank? @search[:text_within] = true end @page_title = I18n.t('actions.search_in', :type => (title.blank? ? I18n.t('resource._singular') : "\"#{title}\"")) @sort_opts = [] all_sorts = Search.get_sort_opts all_sorts.delete('relevance') unless params[:q].size > 1 || params[:q] != '*' all_sorts.keys.each do |type| @sort_opts.push(all_sorts[type]) end @no_statement = true render 'search/search_results' end end |
#show ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'frontend/app/controllers/resources_controller.rb', line 33 def show flash.keep if params[:inline] event_hits = fetch_linked_events_count(:resource, params[:id]) excludes = event_hits > AppConfig[:max_linked_events_to_resolve] ? ['linked_events', 'linked_events::linked_records'] : [] @resource = fetch_resolved(:resource, params[:id], excludes: excludes) flash.now[:info] = t("resource._frontend.messages.suppressed_info") if @resource.suppressed return render_aspace_partial :partial => "resources/show_inline" end @resource = JSONModel(:resource).find(params[:id]) end |
#suppress ⇒ Object
346 347 348 349 350 351 352 |
# File 'frontend/app/controllers/resources_controller.rb', line 346 def suppress resource = JSONModel(:resource).find(params[:id]) resource.set_suppressed(true) flash[:success] = t("resource._frontend.messages.suppressed", resource_title: clean_mixed_content(resource.title)) redirect_to(:controller => :resources, :action => :show, :id => params[:id]) end |
#transfer ⇒ Object
141 142 143 144 145 146 147 148 149 |
# File 'frontend/app/controllers/resources_controller.rb', line 141 def transfer begin handle_transfer(Resource) rescue ArchivesSpace::TransferConflictException => e @transfer_errors = e.errors show render :action => :show end end |
#tree_node ⇒ Object
116 117 118 119 120 121 122 123 124 125 126 |
# File 'frontend/app/controllers/resources_controller.rb', line 116 def tree_node resource_uri = JSONModel(:resource).uri_for(params[:id]) node_uri = if !params[:node].blank? params[:node] else nil end render :json => pass_through_json("#{resource_uri}/tree/node", :node_uri => node_uri) end |
#tree_node_from_root ⇒ Object
236 237 238 239 240 241 |
# File 'public/app/controllers/resources_controller.rb', line 236 def tree_node_from_root @root_uri = "/repositories/#{params[:rid]}/resources/#{params[:id]}" render :json => archivesspace.get_raw_record(@root_uri + '/tree/node_from_root_' + params[:node_ids].first) rescue RecordNotFound render json: {}, status: 404 end |
#tree_root ⇒ Object
103 104 105 106 107 |
# File 'frontend/app/controllers/resources_controller.rb', line 103 def tree_root resource_uri = JSONModel(:resource).uri_for(params[:id]) render :json => pass_through_json("#{resource_uri}/tree/root") end |
#tree_waypoint ⇒ Object
128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'frontend/app/controllers/resources_controller.rb', line 128 def tree_waypoint resource_uri = JSONModel(:resource).uri_for(params[:id]) node_uri = if !params[:node].blank? params[:node] else nil end render :json => pass_through_json("#{resource_uri}/tree/waypoint", :parent_node => node_uri, :offset => params[:offset]) end |
#unpublish ⇒ Object
319 320 321 322 323 324 325 326 327 328 329 330 331 |
# File 'frontend/app/controllers/resources_controller.rb', line 319 def unpublish resource = Resource.find(params[:id]) response = JSONModel::HTTP.post_form("#{resource.uri}/unpublish") if response.code == '200' flash[:success] = t("resource._frontend.messages.unpublished", resource_title: clean_mixed_content(resource.title)) else flash[:error] = ASUtils.json_parse(response.body)['error'].to_s end redirect_to request.referer end |
#unsuppress ⇒ Object
355 356 357 358 359 360 361 |
# File 'frontend/app/controllers/resources_controller.rb', line 355 def unsuppress resource = JSONModel(:resource).find(params[:id]) resource.set_suppressed(false) flash[:success] = t("resource._frontend.messages.unsuppressed", resource_title: clean_mixed_content(resource.title)) redirect_to(:controller => :resources, :action => :show, :id => params[:id]) end |
#update ⇒ Object
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'frontend/app/controllers/resources_controller.rb', line 208 def update handle_crud(:instance => :resource, :obj => fetch_resolved(:resource, params[:id], excludes: ['linked_events', 'linked_events::linked_records']), :on_invalid => ->() { render_aspace_partial :partial => "edit_inline" }, :on_valid => ->(id) { flash.now[:success] = t("resource._frontend.messages.updated", resource_title: clean_mixed_content(@resource.title)) if @resource["is_slug_auto"] == false && @resource["slug"] == nil && params["resource"] && params["resource"]["is_slug_auto"] == "1" flash.now[:warning] = t("slug.autogen_disabled") end render_aspace_partial :partial => "edit_inline" }) end |
#update_defaults ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'frontend/app/controllers/resources_controller.rb', line 83 def update_defaults begin DefaultValues.from_hash({ "record_type" => "resource", "lock_version" => params[:resource].delete('lock_version'), "defaults" => cleanup_params_for_schema( params[:resource], JSONModel(:resource).schema ) }).save flash[:success] = "Defaults updated" redirect_to :controller => :resources, :action => :defaults rescue Exception => e flash[:error] = e. redirect_to :controller => :resources, :action => :defaults end end |
#waypoints ⇒ Object
203 204 205 206 207 208 209 210 211 212 213 |
# File 'public/app/controllers/resources_controller.rb', line 203 def waypoints search_opts = { 'resolve[]' => ['top_container_uri_u_sstr:id'] } results = archivesspace.search_records(params[:urls], search_opts, true) render :json => Hash[results.records.map {|record| @result = record [record.uri, render_to_string(:partial => 'infinite_item')]}] end |