2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2006-02-10 00:19:41 -05:00
|
|
|
class Person < ActiveRecord::Base
|
|
|
|
has_many :readers
|
2012-03-04 22:45:17 -05:00
|
|
|
has_many :secure_readers
|
2011-05-01 17:30:07 -04:00
|
|
|
has_one :reader
|
2011-02-14 18:14:42 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :posts, through: :readers
|
|
|
|
has_many :secure_posts, through: :secure_readers
|
2016-08-06 12:26:20 -04:00
|
|
|
has_many :posts_with_no_comments, -> { includes(:comments).where("comments.id is null").references(:comments) },
|
2016-08-06 13:37:57 -04:00
|
|
|
through: :readers, source: :post
|
2008-04-25 18:23:48 -04:00
|
|
|
|
2016-08-06 12:26:20 -04:00
|
|
|
has_many :friendships, foreign_key: "friend_id"
|
2013-03-16 12:32:07 -04:00
|
|
|
# friends_too exists to test a bug, and probably shouldn't be used elsewhere
|
2016-08-06 12:26:20 -04:00
|
|
|
has_many :friends_too, foreign_key: "friend_id", class_name: "Friendship"
|
2013-03-16 12:32:07 -04:00
|
|
|
has_many :followers, through: :friendships
|
2012-02-28 13:20:27 -05:00
|
|
|
|
2008-04-25 18:23:48 -04:00
|
|
|
has_many :references
|
2010-07-19 21:26:57 -04:00
|
|
|
has_many :bad_references
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :fixed_bad_references, -> { where favourite: true }, class_name: "BadReference"
|
|
|
|
has_one :favourite_reference, -> { where "favourite=?", true }, class_name: "Reference"
|
|
|
|
has_many :posts_with_comments_sorted_by_comment_id, -> { includes(:comments).order("comments.id") }, through: :readers, source: :post
|
2013-01-27 15:31:01 -05:00
|
|
|
has_many :first_posts, -> { where(id: [1, 2]) }, through: :readers
|
2008-12-18 20:02:21 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :jobs, through: :references
|
|
|
|
has_many :jobs_with_dependent_destroy, source: :job, through: :references, dependent: :destroy
|
|
|
|
has_many :jobs_with_dependent_delete_all, source: :job, through: :references, dependent: :delete_all
|
|
|
|
has_many :jobs_with_dependent_nullify, source: :job, through: :references, dependent: :nullify
|
2011-02-01 17:56:04 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
belongs_to :primary_contact, class_name: "Person"
|
|
|
|
has_many :agents, class_name: "Person", foreign_key: "primary_contact_id"
|
|
|
|
has_many :agents_of_agents, through: :agents, source: :agents
|
|
|
|
belongs_to :number1_fan, class_name: "Person"
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :personal_legacy_things, dependent: :destroy
|
2014-09-06 07:06:40 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :agents_posts, through: :agents, source: :posts
|
|
|
|
has_many :agents_posts_authors, through: :agents_posts, source: :author
|
2013-05-21 11:59:37 -04:00
|
|
|
has_many :essays, primary_key: "first_name", foreign_key: "writer_id"
|
2008-12-18 20:02:21 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
scope :males, -> { where(gender: "M") }
|
2006-02-10 00:19:41 -05:00
|
|
|
end
|
2011-02-01 17:56:04 -05:00
|
|
|
|
|
|
|
class PersonWithDependentDestroyJobs < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2011-02-01 17:56:04 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :references, foreign_key: :person_id
|
|
|
|
has_many :jobs, source: :job, through: :references, dependent: :destroy
|
2011-02-01 17:56:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class PersonWithDependentDeleteAllJobs < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2011-02-01 17:56:04 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :references, foreign_key: :person_id
|
|
|
|
has_many :jobs, source: :job, through: :references, dependent: :delete_all
|
2011-02-01 17:56:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class PersonWithDependentNullifyJobs < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2011-02-01 17:56:04 -05:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :references, foreign_key: :person_id
|
|
|
|
has_many :jobs, source: :job, through: :references, dependent: :nullify
|
2011-02-01 17:56:04 -05:00
|
|
|
end
|
2011-04-23 09:00:24 -04:00
|
|
|
|
|
|
|
class LoosePerson < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2011-04-23 09:00:24 -04:00
|
|
|
self.abstract_class = true
|
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :best_friend, class_name: "LoosePerson", foreign_key: :best_friend_id
|
|
|
|
belongs_to :best_friend_of, class_name: "LoosePerson", foreign_key: :best_friend_of_id
|
|
|
|
has_many :best_friends, class_name: "LoosePerson", foreign_key: :best_friend_id
|
2011-06-13 08:02:51 -04:00
|
|
|
|
|
|
|
accepts_nested_attributes_for :best_friend, :best_friend_of, :best_friends
|
2011-04-23 09:00:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class LooseDescendant < LoosePerson; end
|
|
|
|
|
|
|
|
class TightPerson < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2011-05-01 17:30:07 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :best_friend, class_name: "TightPerson", foreign_key: :best_friend_id
|
|
|
|
belongs_to :best_friend_of, class_name: "TightPerson", foreign_key: :best_friend_of_id
|
|
|
|
has_many :best_friends, class_name: "TightPerson", foreign_key: :best_friend_id
|
2011-06-13 08:02:51 -04:00
|
|
|
|
|
|
|
accepts_nested_attributes_for :best_friend, :best_friend_of, :best_friends
|
2011-04-23 09:00:24 -04:00
|
|
|
end
|
|
|
|
|
2011-12-21 09:28:24 -05:00
|
|
|
class TightDescendant < TightPerson; end
|
2012-03-07 23:56:23 -05:00
|
|
|
|
|
|
|
class RichPerson < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2012-06-10 11:23:34 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_and_belongs_to_many :treasures, join_table: "peoples_treasures"
|
2014-03-14 19:17:03 -04:00
|
|
|
|
|
|
|
before_validation :run_before_create, on: :create
|
|
|
|
before_validation :run_before_validation
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def run_before_create
|
|
|
|
self.first_name = first_name.to_s + "run_before_create"
|
|
|
|
end
|
2014-03-14 19:17:03 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def run_before_validation
|
|
|
|
self.first_name = first_name.to_s + "run_before_validation"
|
|
|
|
end
|
2012-03-07 23:56:23 -05:00
|
|
|
end
|
2012-06-10 11:23:34 -04:00
|
|
|
|
|
|
|
class NestedPerson < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2012-06-10 11:23:34 -04:00
|
|
|
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :best_friend, class_name: "NestedPerson", foreign_key: :best_friend_id
|
|
|
|
accepts_nested_attributes_for :best_friend, update_only: true
|
2013-01-24 07:44:02 -05:00
|
|
|
|
|
|
|
def comments=(new_comments)
|
|
|
|
raise RuntimeError
|
|
|
|
end
|
|
|
|
|
|
|
|
def best_friend_first_name=(new_name)
|
2016-08-06 13:44:11 -04:00
|
|
|
assign_attributes(best_friend_attributes: { first_name: new_name })
|
2013-01-24 07:44:02 -05:00
|
|
|
end
|
2012-07-13 14:34:40 -04:00
|
|
|
end
|
2012-12-21 12:15:33 -05:00
|
|
|
|
|
|
|
class Insure
|
|
|
|
INSURES = %W{life annuality}
|
|
|
|
|
2016-08-06 14:20:22 -04:00
|
|
|
def self.load(mask)
|
2012-12-21 12:15:33 -05:00
|
|
|
INSURES.select do |insure|
|
2012-12-21 13:56:07 -05:00
|
|
|
(1 << INSURES.index(insure)) & mask.to_i > 0
|
2012-12-21 12:15:33 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-06 14:20:22 -04:00
|
|
|
def self.dump(insures)
|
2012-12-21 12:15:33 -05:00
|
|
|
numbers = insures.map { |insure| INSURES.index(insure) }
|
|
|
|
numbers.inject(0) { |sum, n| sum + (1 << n) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class SerializedPerson < ActiveRecord::Base
|
2016-08-06 12:26:20 -04:00
|
|
|
self.table_name = "people"
|
2012-12-21 12:15:33 -05:00
|
|
|
|
|
|
|
serialize :insures, Insure
|
|
|
|
end
|