Class: TaxonNameRelationship::Combination
- Inherits:
-
TaxonNameRelationship
- Object
- ActiveRecord::Base
- ApplicationRecord
- TaxonNameRelationship
- TaxonNameRelationship::Combination
- Defined in:
- app/models/taxon_name_relationship/combination.rb
Overview
The class relationships used to create Combinations.
Direct Known Subclasses
Family, Form, Genus, Section, Series, Species, Subform, Subgenus, Subsection, Subseries, Subspecies, Subvariety, Variety
Defined Under Namespace
Classes: Family, Form, Genus, Section, Series, Species, Subform, Subgenus, Subsection, Subseries, Subspecies, Subvariety, Variety
Constant Summary
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
-
.nomenclatural_priority ⇒ Object
def self.disjoint_object_classes self.disjoint_classes end.
- .order_index ⇒ Integer?
-
.rank_name ⇒ String
The human readable rank this relationship pertains to.
Instance Method Summary collapse
-
#object_status ⇒ Object
String the status inferred by the relationship to the object name.
-
#object_status_connector_to_subject ⇒ Object
String.
- #rank_name ⇒ Object
- #set_cached_names_for_taxon_names ⇒ Object protected
- #subject_is_protonym ⇒ Object protected
-
#subject_status ⇒ Object
String the status inferred by the relationship to the subject name.
-
#subject_status_connector_to_object ⇒ Object
String.
- #sv_coordinated_taxa_object ⇒ Object protected
- #sv_validate_priority ⇒ Object protected
Methods inherited from TaxonNameRelationship
assignable, collect_descendants_and_itself_to_s, collect_descendants_to_s, collect_to_s, disjoint_object_classes, disjoint_subject_classes, disjoint_taxon_name_relationships, #dwc_occurrences, gbif_status_of_object, gbif_status_of_subject, #is_combination?, #is_invalidating?, nomen_uri, #nomenclature_date, #object_properties, #object_status_tag, parent, required_taxon_name_relationships, #subject_and_object_in_same_project, #subject_invalid_statuses, #subject_properties, #subject_status_tag, #sv_coordinated_taxa, #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 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 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::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
Class Method Details
.nomenclatural_priority ⇒ Object
def self.disjoint_object_classes
self.disjoint_classes
end
30 31 32 |
# File 'app/models/taxon_name_relationship/combination.rb', line 30 def self.nomenclatural_priority :reverse end |
.order_index ⇒ Integer?
14 15 16 |
# File 'app/models/taxon_name_relationship/combination.rb', line 14 def self.order_index RANKS.index(::ICN_LOOKUP[self.name.demodulize.underscore.humanize.downcase]) end |
.rank_name ⇒ String
Returns the human readable rank this relationship pertains to.
36 37 38 |
# File 'app/models/taxon_name_relationship/combination.rb', line 36 def self.rank_name name.demodulize.humanize.downcase end |
Instance Method Details
#object_status ⇒ Object
Returns String the status inferred by the relationship to the object name.
46 47 48 |
# File 'app/models/taxon_name_relationship/combination.rb', line 46 def object_status rank_name + ' in combination' end |
#object_status_connector_to_subject ⇒ Object
Returns String.
62 63 64 |
# File 'app/models/taxon_name_relationship/combination.rb', line 62 def object_status_connector_to_subject ' with' end |
#rank_name ⇒ Object
40 41 42 |
# File 'app/models/taxon_name_relationship/combination.rb', line 40 def rank_name type_name.demodulize.humanize.downcase end |
#set_cached_names_for_taxon_names ⇒ Object (protected)
68 69 70 71 72 73 |
# File 'app/models/taxon_name_relationship/combination.rb', line 68 def set_cached_names_for_taxon_names t = object_taxon_name return true if t.destroyed? # Are we sure this is right? t.send(:set_cached) true end |
#subject_is_protonym ⇒ Object (protected)
75 76 77 |
# File 'app/models/taxon_name_relationship/combination.rb', line 75 def subject_is_protonym errors.add(:subject_taxon_name, 'Must be a protonym') if subject_taxon_name.type == 'Combination' end |
#subject_status ⇒ Object
Returns String the status inferred by the relationship to the subject name.
52 53 54 |
# File 'app/models/taxon_name_relationship/combination.rb', line 52 def subject_status ' as ' + rank_name + ' in combination' end |
#subject_status_connector_to_object ⇒ Object
Returns String.
57 58 59 |
# File 'app/models/taxon_name_relationship/combination.rb', line 57 def subject_status_connector_to_object '' end |
#sv_coordinated_taxa_object ⇒ Object (protected)
87 88 89 |
# File 'app/models/taxon_name_relationship/combination.rb', line 87 def sv_coordinated_taxa_object true # not applicable end |
#sv_validate_priority ⇒ Object (protected)
79 80 81 82 83 84 85 |
# File 'app/models/taxon_name_relationship/combination.rb', line 79 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.} should not be younger than citation (#{self.object_taxon_name.source&.}) of #{self.object_taxon_name.}") end end |