Class: TaxonNameRelationship::CurrentCombination
- Inherits:
-
TaxonNameRelationship
- Object
- ActiveRecord::Base
- ApplicationRecord
- TaxonNameRelationship
- TaxonNameRelationship::CurrentCombination
- Defined in:
- app/models/taxon_name_relationship/current_combination.rb
Overview
The class relationships used to indication current combination for plant names
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
- .assignable ⇒ Object
- .assignment_method ⇒ Object
-
.inverse_assignment_method ⇒ Object
as.
-
.valid_object_ranks ⇒ Object
right_side.
Instance Method Summary collapse
- #object_is_protonym ⇒ Object protected
-
#object_status ⇒ Object
String the status inferred by the relationship to the object name.
-
#object_status_connector_to_subject ⇒ Object
String.
- #set_cached_names_for_taxon_names ⇒ Object protected
- #subject_is_combination ⇒ Object protected
-
#subject_status ⇒ Object
String the status inferred by the relationship to the subject name.
-
#subject_status_connector_to_object ⇒ Object
String.
- #sv_classification_matches_current_combination ⇒ Object protected
- #sv_coordinated_taxa ⇒ Object protected
- #sv_coordinated_taxa_object ⇒ Object protected
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, #dwc_occurrences, gbif_status_of_object, gbif_status_of_subject, #is_combination?, #is_invalidating?, nomen_uri, nomenclatural_priority, #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_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_priority, #sv_validate_required_relationships, #sv_validate_seniority, #type_class, #type_class=, #type_name, 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
.assignable ⇒ Object
45 46 47 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 45 def self.assignable true end |
.assignment_method ⇒ Object
49 50 51 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 49 def self.assignment_method :combination_in_current_combination end |
.inverse_assignment_method ⇒ Object
as.
54 55 56 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 54 def self.inverse_assignment_method :protonym_in_current_combination end |
.valid_object_ranks ⇒ Object
right_side
41 42 43 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 41 def self.valid_object_ranks GENUS_AND_SPECIES_RANK_NAMES_ICN end |
Instance Method Details
#object_is_protonym ⇒ Object (protected)
76 77 78 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 76 def object_is_protonym errors.add(:object_taxon_name, 'Must be a protonym') if object_taxon_name.type == 'Combination' end |
#object_status ⇒ Object
Returns String the status inferred by the relationship to the object name.
20 21 22 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 20 def object_status 'has current combination ' end |
#object_status_connector_to_subject ⇒ Object
Returns String.
36 37 38 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 36 def object_status_connector_to_subject ' of' end |
#set_cached_names_for_taxon_names ⇒ Object (protected)
60 61 62 63 64 65 66 67 68 69 70 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 60 def set_cached_names_for_taxon_names begin TaxonName.transaction do t = object_taxon_name t.update_columns( cached_author_year: t., cached_nomenclature_date: t.nomenclature_date) end end true end |
#subject_is_combination ⇒ Object (protected)
72 73 74 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 72 def subject_is_combination errors.add(:subject_taxon_name, 'Must be a combination') unless subject_taxon_name.type == 'Combination' end |
#subject_status ⇒ Object
Returns String the status inferred by the relationship to the subject name.
26 27 28 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 26 def subject_status 'current combination ' end |
#subject_status_connector_to_object ⇒ Object
Returns String.
31 32 33 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 31 def subject_status_connector_to_object '' end |
#sv_classification_matches_current_combination ⇒ Object (protected)
88 89 90 91 92 93 94 95 96 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 88 def sv_classification_matches_current_combination c = subject_taxon_name.protonyms_by_rank return true if c.empty? || c.count == 1 t1 = c[c.keys[-2]] if object_taxon_name.parent_id != t1.id soft_validations.add(:object_taxon_name_id, "Current combination <i>#{subject_taxon_name.cached}</i> is conflicting with the parent of protonym <i>#{object_taxon_name.cached}</i>") end end |
#sv_coordinated_taxa ⇒ Object (protected)
84 85 86 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 84 def sv_coordinated_taxa true # not applicable end |
#sv_coordinated_taxa_object ⇒ Object (protected)
80 81 82 |
# File 'app/models/taxon_name_relationship/current_combination.rb', line 80 def sv_coordinated_taxa_object true # not applicable end |