Class: TaxonNameRelationship::Iczn::Invalidating

Inherits:
TaxonNameRelationship::Iczn show all
Defined in:
app/models/taxon_name_relationship/iczn/invalidating.rb

Direct Known Subclasses

Homonym, Misapplication, Synonym, Unavailable, Usage

Defined Under Namespace

Classes: Homonym, Misapplication, Synonym, Unavailable, Usage

Constant Summary collapse

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from TaxonNameRelationship::Iczn

#sv_validate_priority, valid_object_ranks, valid_subject_ranks

Class Method Details

.assignableObject



24
25
26
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 24

def self.assignable
  true
end

.assignment_methodObject

as.



56
57
58
59
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 56

def self.assignment_method
  # bus.set_as_iczn_invalid_of(aus)
  :iczn_set_as_invalid_of
end

.disjoint_object_classesObject



16
17
18
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 16

def self.disjoint_object_classes
  ICN_TAXON_NAME_CLASSIFICATION_NAMES + ICNP_TAXON_NAME_CLASSIFICATION_NAMES + ICVCN_TAXON_NAME_CLASSIFICATION_NAMES
end

.disjoint_subject_classesObject



10
11
12
13
14
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 10

def self.disjoint_subject_classes
  self.parent.disjoint_subject_classes +
      self.collect_descendants_to_s(TaxonNameClassification::Iczn::Available::Valid) +
      self.collect_to_s(TaxonNameClassification::Iczn::Available)
end

.disjoint_taxon_name_relationshipsObject



5
6
7
8
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 5

def self.disjoint_taxon_name_relationships
  self.parent.disjoint_taxon_name_relationships +
      self.collect_descendants_and_itself_to_s(TaxonNameRelationship::Iczn::Validating)
end

.gbif_status_of_subjectObject



50
51
52
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 50

def self.gbif_status_of_subject
  'invalidum'
end

.inverse_assignment_methodObject



61
62
63
64
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 61

def self.inverse_assignment_method
  # aus.iczn_invalid = bus   ## Equal to synonym in broad sense
  :iczn_invalid
end

.nomenclatural_priorityObject



20
21
22
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 20

def self.nomenclatural_priority
  :direct
end

Instance Method Details

#object_statusObject



37
38
39
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 37

def object_status
  'valid'
end

#object_status_connector_to_subjectObject



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

def object_status_connector_to_subject
  ' for'
end

#similar_homonym_stringBoolean

Returns See use in Protonym.becomes_combination. It does not make sense to run this on all relationships.

Returns:

  • (Boolean)

    See use in Protonym.becomes_combination. It does not make sense to run this on all relationships.



68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 68

def similar_homonym_string
  a = subject_taxon_name
  b = object_taxon_name
  if a.is_species_rank? && a.cached_secondary_homonym_alternative_spelling.nil? && a.cached_valid_taxon_name_id == b.cached_valid_taxon_name_id
    return true if a.name == b.name || a.name == b.masculine_name || a.name == b.feminine_name || a.name == b.neuter_name
  elsif a.is_species_rank?
    return true if a.cached_secondary_homonym_alternative_spelling && (a.cached_secondary_homonym_alternative_spelling == b.cached_secondary_homonym_alternative_spelling)
  elsif a.is_genus_rank?
    return true if a.cached_primary_homonym_alternative_spelling && (a.cached_primary_homonym_alternative_spelling == b.cached_primary_homonym_alternative_spelling)
  else
    return false
  end
  false
end

#subject_propertiesObject



28
29
30
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 28

def subject_properties
  [ TaxonNameClassification::Iczn::Available::Invalid ]
end

#subject_statusObject



33
34
35
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 33

def subject_status
  'unavailable or invalid'
end

#subject_status_connector_to_objectObject



41
42
43
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 41

def subject_status_connector_to_object
  ', linked to'
end

#sv_fix_not_specific_relationshipObject



89
90
91
92
93
94
95
96
97
98
99
100
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 89

def sv_fix_not_specific_relationship
  new_relationship_name = self.type_name
  unless self.subject_taxon_name.is_available?
    new_relationship_name = 'TaxonNameRelationship::Iczn::Invalidating::Unavailable'
  end
  if new_relationship_name && self.type_name != new_relationship_name
    self.type = new_relationship_name
    self.save
    return true
  end
  false
end

#sv_not_specific_relationshipObject



83
84
85
86
87
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 83

def sv_not_specific_relationship
  soft_validations.add(:type, 'Please specify the reason for the name being Unavailable or Invalid',
                       success_message: 'Unavailable or Invalid is updated to Unavailable',
                       failure_message:  'Failed to update the Unavailable or Invalid relationship')
end

#sv_synonym_relationshipObject



102
103
104
105
106
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 102

def sv_synonym_relationship
  unless self.source
    soft_validations.add(:base, 'The original publication is not selected')
  end
end