Class: TaxonNameRelationship::Iczn::Invalidating
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
#sv_validate_priority, valid_object_ranks, valid_subject_ranks
Class Method Details
.assignable ⇒ Object
24
25
26
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 24
def self.assignable
true
end
|
.assignment_method ⇒ Object
56
57
58
59
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 56
def self.assignment_method
:iczn_set_as_invalid_of
end
|
.disjoint_object_classes ⇒ Object
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_classes ⇒ Object
.disjoint_taxon_name_relationships ⇒ Object
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_subject ⇒ Object
50
51
52
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 50
def self.gbif_status_of_subject
'invalidum'
end
|
.inverse_assignment_method ⇒ Object
61
62
63
64
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 61
def self.inverse_assignment_method
:iczn_invalid
end
|
.nomenclatural_priority ⇒ Object
20
21
22
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 20
def self.nomenclatural_priority
:direct
end
|
Instance Method Details
#object_status ⇒ Object
37
38
39
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 37
def object_status
'valid'
end
|
#object_status_connector_to_subject ⇒ Object
45
46
47
|
# File 'app/models/taxon_name_relationship/iczn/invalidating.rb', line 45
def object_status_connector_to_subject
' for'
end
|
#similar_homonym_string ⇒ Boolean
Returns 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_properties ⇒ Object
#subject_status ⇒ Object
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_object ⇒ Object
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_relationship ⇒ Object
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_relationship ⇒ Object
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_relationship ⇒ Object
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
|