Class: TaxonNameRelationship::CurrentCombination
- Inherits:
-
TaxonNameRelationship
- Object
- 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
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
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 |