Class: TaxonNameRelationship::CurrentCombination

Inherits:
TaxonNameRelationship
  • Object
show all
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

Instance Method Summary collapse

Class Method Details

.assignableObject



45
46
47
# File 'app/models/taxon_name_relationship/current_combination.rb', line 45

def self.assignable
  true
end

.assignment_methodObject



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_methodObject

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_ranksObject

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_protonymObject (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_statusObject

Returns String the status inferred by the relationship to the object name.

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_subjectObject

Returns String.

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_namesObject (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.get_author_and_year,
        cached_nomenclature_date: t.nomenclature_date)
    end
  end
  true
end

#subject_is_combinationObject (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_statusObject

Returns String the status inferred by the relationship to the subject name.

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_objectObject

Returns String.

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_combinationObject (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_taxaObject (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_objectObject (protected)



80
81
82
# File 'app/models/taxon_name_relationship/current_combination.rb', line 80

def sv_coordinated_taxa_object
  true # not applicable
end