Class: Organization
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- Organization
- Includes:
- Housekeeping::Timestamps, Housekeeping::Users, Shared::Identifiers, Shared::IsData, Shared::Notes, Shared::SharedAcrossProjects
- Defined in:
- app/models/organization.rb
Overview
Organization attributes follow schema.org/Organization, with only housekeeping exceptions.
@!attribute alternate_name
@!attribute description
@!attribute disambiguating_description
@!attribute same_as_id
@return [Organization, nil]
@!attribute address
@!attribute email
@!attribute telephone
@!attribute duns
@!attribute global_location_number
@!attribute legal_name
@!attribute area_served_id
@return [GeographicArea, nil]
@!attribute department_id
@return [Organization, nil]
@!attribute parent_organization_id
@return [Organization, nil]
Instance Attribute Summary collapse
Attributes included from Housekeeping::Users
Instance Method Summary collapse
- #names_not_same ⇒ Object protected
- #related_not_self ⇒ Object protected
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 Shared::Identifiers
#dwc_occurrence_id, #identified?, #next_by_identifier, #previous_by_identifier, #reject_identifiers, #uri, #uuid
Methods included from Shared::Notes
#concatenated_notes_string, #reject_notes
Methods included from Housekeeping::Users
#set_created_by_id, #set_updated_by_id
Methods inherited from ApplicationRecord
Instance Attribute Details
#name ⇒ String
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'app/models/organization.rb', line 36 class Organization < ApplicationRecord include Housekeeping::Users include Housekeeping::Timestamps include Shared::Notes include Shared::Identifiers include Shared::SharedAcrossProjects include Shared::IsData belongs_to :parent_organization, class_name: 'Organization' belongs_to :department, class_name: 'Organization' belongs_to :same_as, class_name: 'Organization' belongs_to :area_served, class_name: 'GeographicArea' has_many :roles, dependent: :restrict_with_error, inverse_of: :organization #, before_remove: :set_cached_for_related has_many :author_roles, class_name: 'SourceAuthor', dependent: :restrict_with_error, inverse_of: :organization #, before_remove: :set_cached_for_related has_many :editor_roles, class_name: 'SourceEditor', dependent: :restrict_with_error, inverse_of: :organization has_many :source_roles, class_name: 'SourceSource', dependent: :restrict_with_error, inverse_of: :organization has_many :collector_roles, class_name: 'Collector', dependent: :restrict_with_error, inverse_of: :organization has_many :determiner_roles, class_name: 'Determiner', dependent: :restrict_with_error, inverse_of: :organization has_many :taxon_name_author_roles, class_name: 'TaxonNameAuthor', dependent: :restrict_with_error, inverse_of: :organization has_many :georeferencer_roles, class_name: 'Georeferencer', dependent: :restrict_with_error, inverse_of: :organization has_many :authored_sources, class_name: 'Source::Bibtex', through: :author_roles, source: :role_object, source_type: 'Source', inverse_of: :authors has_many :edited_sources, class_name: 'Source::Bibtex', through: :editor_roles, source: :role_object, source_type: 'Source', inverse_of: :editors has_many :human_sources, class_name: 'Source::Bibtex', through: :source_roles, source: :role_object, source_type: 'Source', inverse_of: :people has_many :authored_taxon_names, through: :taxon_name_author_roles, source: :role_object, source_type: 'TaxonName', class_name: 'Protonym', inverse_of: :taxon_name_authors has_many :collecting_events, through: :collector_roles, source: :role_object, source_type: 'CollectingEvent', inverse_of: :collectors has_many :georeferences, through: :georeferencer_roles, source: :role_object, source_type: 'Georeference', inverse_of: :georeference_authors has_many :taxon_determinations, through: :determiner_roles, source: :role_object, source_type: 'TaxonDetermination', inverse_of: :determiners validates_presence_of :name validates_uniqueness_of :legal_name, allow_nil: true validates :email, format: {with: User::VALID_EMAIL_REGEX}, allow_nil: true # TODO: unify validate :related_not_self validate :names_not_same protected def names_not_same errors.add(:name, 'is same as alternate name') if name == alternate_name end def [:same_as_id, :department_id, :parent_organization_id].each do |a| b = send(a) errors.add(a, 'can not be self') if b && id == b end end end |
Instance Method Details
#names_not_same ⇒ Object (protected)
79 80 81 |
# File 'app/models/organization.rb', line 79 def names_not_same errors.add(:name, 'is same as alternate name') if name == alternate_name end |
#related_not_self ⇒ Object (protected)
84 85 86 87 88 89 |
# File 'app/models/organization.rb', line 84 def [:same_as_id, :department_id, :parent_organization_id].each do |a| b = send(a) errors.add(a, 'can not be self') if b && id == b end end |