Class: TaxonNameRelationship::Icn::Accepting::SanctionedName

Inherits:
TaxonNameRelationship::Icn::Accepting show all
Defined in:
app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb

Constant Summary collapse

NOMEN_URI =
'http://purl.obolibrary.org/obo/NOMEN_0000035'.freeze

Constants included from SoftValidation

SoftValidation::ANCESTORS_WITH_SOFT_VALIDATIONS

Instance Attribute Summary

Attributes inherited from TaxonNameRelationship

#no_cached, #object_taxon_name_id, #project_id, #subject_taxon_name_id, #type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TaxonNameRelationship::Icn::Accepting

disjoint_subject_classes, disjoint_taxon_name_relationships, #subject_properties

Methods inherited from TaxonNameRelationship::Icn

disjoint_object_classes, disjoint_subject_classes, valid_object_ranks, valid_subject_ranks

Methods inherited from TaxonNameRelationship

collect_descendants_and_itself_to_s, collect_descendants_to_s, collect_to_s, disjoint_object_classes, disjoint_subject_classes, disjoint_taxon_name_relationships, #is_combination?, #is_invalidating?, nomen_uri, #nomenclature_date, #object_properties, #object_status_connector_to_subject, #object_status_tag, parent, required_taxon_name_relationships, #set_cached_names_for_taxon_names, #subject_and_object_in_same_project, #subject_invalid_statuses, #subject_properties, #subject_status_connector_to_object, #subject_status_tag, #sv_coordinated_taxa, #sv_coordinated_taxa_object, #sv_fix_combination_relationship, #sv_fix_coordinated_object_taxa, #sv_fix_coordinated_subject_taxa, #sv_fix_not_specific_relationship, #sv_fix_objective_synonym_relationship, #sv_fix_subject_parent_update, #sv_not_specific_relationship, #sv_objective_synonym_relationship, #sv_specific_relationship, #sv_synonym_linked_to_valid_name, #sv_synonym_relationship, #sv_validate_disjoint_object, #sv_validate_disjoint_relationships, #sv_validate_disjoint_subject, #sv_validate_required_relationships, #sv_validate_seniority, #type_class, #type_class=, #type_name, valid_object_ranks, valid_subject_ranks, #validate_object_and_subject_both_protonyms, #validate_object_must_equal_subject_for_uncertain_placement, #validate_rank_group, #validate_subject_and_object_are_not_identical, #validate_subject_and_object_ranks, #validate_subject_and_object_share_code, #validate_type, #validate_uniqueness_of_typification_object

Methods included from SoftValidation

#clear_soft_validations, #fix_for, #fix_soft_validations, #soft_fixed?, #soft_valid?, #soft_validate, #soft_validated?, #soft_validations, #soft_validators

Methods included from Shared::IsData

#errors_excepting, #full_error_messages_excepting, #identical, #is_community?, #is_destroyable?, #is_editable?, #is_in_use?, #is_in_users_projects?, #metamorphosize, #similar

Methods included from Shared::Notes

#concatenated_notes_string, #reject_notes

Methods included from Shared::Citations

#cited?, #mark_citations_for_destruction, #nomenclature_date, #origin_citation_source_id, #reject_citations, #requires_citation?, #sources_by_topic_id

Methods included from Housekeeping

#has_polymorphic_relationship?

Methods inherited from ApplicationRecord

transaction_with_retry

Class Method Details

.assignableObject



5
6
7
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 5

def self.assignable
  true
end

.assignment_methodObject



29
30
31
32
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 29

def self.assignment_method
  # bus.set_as_icn_sanctioned_name_of(aus)
  :icn_set_as_sanctioned_name_of
end

.gbif_status_of_objectObject



21
22
23
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 21

def self.gbif_status_of_object
  'rejiciendum'
end

.gbif_status_of_subjectObject



17
18
19
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 17

def self.gbif_status_of_subject
  'conservandum'
end

.inverse_assignment_methodObject



34
35
36
37
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 34

def self.inverse_assignment_method
  # aus.icn_sanctioned_name = bus
  :icn_sanctioned_name
end

.nomenclatural_priorityObject



25
26
27
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 25

def self.nomenclatural_priority
  :reverse
end

Instance Method Details

#object_statusObject



9
10
11
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 9

def object_status
  'rejected'
end

#subject_statusObject



13
14
15
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 13

def subject_status
  'sanctioned'
end

#sv_validate_priorityObject



39
40
41
42
43
44
45
# File 'app/models/taxon_name_relationship/icn/accepting/sanctioned_name.rb', line 39

def sv_validate_priority
  date1 = self.subject_taxon_name.cached_nomenclature_date
  date2 = self.object_taxon_name.cached_nomenclature_date
  if !!date1 && !!date2 && date1 > date2 && subject_invalid_statuses.empty?
    soft_validations.add(:type, "#{self.subject_status.capitalize} #{self.subject_taxon_name.cached_html_name_and_author_year} should not be younger than #{self.object_taxon_name.cached_html_name_and_author_year}")
  end
end