Class: Hyrax::SingleUseLinksController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Hyrax::SingleUseLinksController
- Includes:
- Blacklight::SearchHelper
- Defined in:
- app/controllers/hyrax/single_use_links_controller.rb
Instance Method Summary collapse
- #create_download ⇒ Object
- #create_show ⇒ Object
- #deny_link_access(exception) ⇒ Object
- #destroy ⇒ Object
- #index ⇒ Object
Instance Method Details
#create_download ⇒ Object
20 21 22 23 |
# File 'app/controllers/hyrax/single_use_links_controller.rb', line 20 def create_download @su = SingleUseLink.create itemId: params[:id], path: hyrax.download_path(id: params[:id]) render plain: hyrax.download_single_use_link_url(@su.downloadKey) end |
#create_show ⇒ Object
25 26 27 28 |
# File 'app/controllers/hyrax/single_use_links_controller.rb', line 25 def create_show @su = SingleUseLink.create(itemId: params[:id], path: asset_show_path) render plain: hyrax.show_single_use_link_url(@su.downloadKey) end |
#deny_link_access(exception) ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'app/controllers/hyrax/single_use_links_controller.rb', line 11 def deny_link_access(exception) if current_user && current_user.persisted? redirect_to main_app.root_url, alert: "You do not have sufficient privileges to create links to this document" else session["user_return_to"] = request.url redirect_to new_user_session_url, alert: exception. end end |
#destroy ⇒ Object
35 36 37 38 |
# File 'app/controllers/hyrax/single_use_links_controller.rb', line 35 def destroy SingleUseLink.find_by_downloadKey(params[:link_id]).destroy head :ok end |
#index ⇒ Object
30 31 32 33 |
# File 'app/controllers/hyrax/single_use_links_controller.rb', line 30 def index links = SingleUseLink.where(itemId: params[:id]).map { |link| show_presenter.new(link) } render partial: 'hyrax/file_sets/single_use_link_rows', locals: { single_use_links: links } end |