Class: Hyrax::FileSetsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Hyrax::FileSetsController
- Includes:
- Blacklight::AccessControls::Catalog, Blacklight::Base, Breadcrumbs, WorkflowsHelper
- Defined in:
- app/controllers/hyrax/file_sets_controller.rb
Instance Attribute Summary collapse
-
#file_set ⇒ Object
(also: #curation_concern)
readonly
A little bit of explanation, CanCan(Can) sets the @file_set via the .load_and_authorize_resource method.
Instance Method Summary collapse
-
#citation ⇒ Object
GET /files/:id/citation.
-
#destroy ⇒ Object
DELETE /concern/file_sets/:id.
-
#edit ⇒ Object
GET /concern/file_sets/:id.
-
#show ⇒ Object
GET /concern/parent/:parent_id/file_sets/:id.
-
#stats ⇒ Object
GET /files/:id/stats.
-
#update ⇒ Object
PATCH /concern/file_sets/:id.
Methods included from WorkflowsHelper
Methods included from Breadcrumbs
#build_breadcrumbs, #default_trail, #trail_from_referer
Instance Attribute Details
#file_set ⇒ Object Also known as: curation_concern
A little bit of explanation, CanCan(Can) sets the @file_set via the .load_and_authorize_resource method. However the interface for various CurationConcern modules leverages the #curation_concern method Thus we have file_set and curation_concern that are aliases for each other.
35 36 37 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 35 def file_set @file_set end |
Instance Method Details
#citation ⇒ Object
GET /files/:id/citation
89 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 89 def citation; end |
#destroy ⇒ Object
DELETE /concern/file_sets/:id
60 61 62 63 64 65 66 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 60 def destroy guard_for_workflow_restriction_on!(parent: parent) delete(file_set: curation_concern) redirect_to [main_app, parent], notice: view_context.t('hyrax.file_sets.asset_deleted_flash.message') end |
#edit ⇒ Object
GET /concern/file_sets/:id
45 46 47 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 45 def edit initialize_edit_form end |
#show ⇒ Object
GET /concern/parent/:parent_id/file_sets/:id
50 51 52 53 54 55 56 57 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 50 def show guard_for_workflow_restriction_on!(parent: parent(file_set: presenter)) respond_to do |wants| wants.html wants.json additional_response_formats(wants) end end |
#stats ⇒ Object
GET /files/:id/stats
84 85 86 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 84 def stats @stats = FileUsage.new(params[:id]) end |
#update ⇒ Object
PATCH /concern/file_sets/:id
69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'app/controllers/hyrax/file_sets_controller.rb', line 69 def update guard_for_workflow_restriction_on!(parent: parent) if attempt_update after_update_response else after_update_failure_response end rescue RSolr::Error::Http => error flash[:error] = error. logger.error "FileSetsController::update rescued #{error.class}\n\t#{error.}\n #{error.backtrace.join("\n")}\n\n" render action: 'edit' end |