Sha256: 994a764f74c9f9c9b8126fb2897e0810740428f830acffd16b0b96b411056772

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 KB

Contents

module Pupa
  # A group with a common purpose or reason for existence that goes beyond the set
  # of people belonging to it.
  class Organization
    include Model

    self.schema = 'popolo/organization'

    include Concerns::Timestamps
    include Concerns::Sourceable
    include Concerns::Nameable
    include Concerns::Identifiable
    include Concerns::Contactable
    include Concerns::Linkable

    attr_accessor :name, :classification, :parent_id, :area_id, :founding_date, :dissolution_date, :image, :parent
    dump          :name, :classification, :parent_id, :area_id, :founding_date, :dissolution_date, :image, :parent

    foreign_key :parent_id, :area_id

    foreign_object :parent # for testing

    # Returns the name of the organization.
    #
    # @return [String] the name of the organization
    def to_s
      name
    end

    # @todo Parentless organizations in different jurisdictions can have the
    #   same name. Add a `jurisdiction` property?
    def fingerprint
      hash = super.slice(:classification, :parent_id)
      if name
        {
          '$or' => [
            hash.merge('name' => name),
            hash.merge('other_names.name' => name),
          ],
        }
      else
        hash
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
pupa-0.2.3 lib/pupa/models/organization.rb
pupa-0.2.2 lib/pupa/models/organization.rb
pupa-0.2.1 lib/pupa/models/organization.rb
pupa-0.2.0 lib/pupa/models/organization.rb
pupa-0.1.11 lib/pupa/models/organization.rb
pupa-0.1.10 lib/pupa/models/organization.rb
pupa-0.1.9 lib/pupa/models/organization.rb
pupa-0.1.8 lib/pupa/models/organization.rb