Class: ContentDeleteEventJob

Inherits:
EventJob
  • Object
show all
Defined in:
app/jobs/content_delete_event_job.rb

Overview

Log object deletion to activity streams

Constant Summary

Constants included from Sufia::CitationsBehaviors::TitleBehavior

Sufia::CitationsBehaviors::TitleBehavior::EXPANDED_NOCAPS, Sufia::CitationsBehaviors::TitleBehavior::TITLE_NOCAPS

Instance Attribute Summary collapse

Attributes inherited from EventJob

#depositor

Instance Method Summary collapse

Methods inherited from EventJob

#event

Methods included from Sufia::SufiaHelperBehavior

#application_name, #banner_image, #browser_supports_directory_upload?, #collection_thumbnail, #current_search_parameters, #error_messages_for, #has_collection_search_parameters?, #human_readable_date, #iconify_auto_link, #index_field_link, #institution_name, #institution_name_full, #license_links, #link_to_each_facet_field, #link_to_facet, #link_to_facet_list, #link_to_field, #link_to_profile, #link_to_telephone, #orcid_label, #render_visibility_link, #rights_statement_links, #search_form_action, #show_transfer_request_title, #user_display_name_and_key, #zotero_label, #zotero_profile_url

Methods included from Sufia::CitationsBehavior

#export_as_apa_citation, #export_as_chicago_citation, #export_as_mla_citation, #export_as_openurl_ctx_kev

Methods included from Sufia::CitationsBehaviors::TitleBehavior

#chicago_citation_title, #mla_citation_title, #process_title_parts, #setup_title_info

Methods included from Sufia::CitationsBehaviors::CommonBehavior

#clean_end_punctuation, #persistent_url

Methods included from Sufia::CitationsBehaviors::NameBehavior

#abbreviate_name, #all_authors, #author_list, #given_name_first, #surname_first

Methods included from Sufia::CitationsBehaviors::PublicationBehavior

#setup_pub_date, #setup_pub_info, #setup_pub_place, #setup_pub_publisher

Methods included from Sufia::BlacklightOverride

#fields_to_exclude_from_constraint_element

Instance Attribute Details

#deleted_work_idObject (readonly)

The id of the work that has been deleted by the user

Returns:

  • (Object)

    the current value of deleted_work_id



4
5
6
# File 'app/jobs/content_delete_event_job.rb', line 4

def deleted_work_id
  @deleted_work_id
end

Instance Method Details

#actionObject



12
13
14
# File 'app/jobs/content_delete_event_job.rb', line 12

def action
  @action ||= "User #{link_to_profile depositor} has deleted object '#{deleted_work_id}'"
end

#log_user_event(depositor) ⇒ Object

override to log the event to the users profile stream instead of the user’s stream



17
18
19
# File 'app/jobs/content_delete_event_job.rb', line 17

def log_user_event(depositor)
  depositor.log_profile_event(event)
end

#perform(deleted_work_id, depositor) ⇒ Object



7
8
9
10
# File 'app/jobs/content_delete_event_job.rb', line 7

def perform(deleted_work_id, depositor)
  @deleted_work_id = deleted_work_id
  super(depositor)
end