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
|
|
|
|
2006-02-10 00:19:41 -05:00
|
|
|
has_many :posts, :through => :readers
|
2012-03-04 22:45:17 -05:00
|
|
|
has_many :secure_posts, :through => :secure_readers
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :posts_with_no_comments, -> { includes(:comments).where('comments.id is null').references(:comments) },
|
|
|
|
:through => :readers, :source => :post
|
2008-04-25 18:23:48 -04:00
|
|
|
|
2013-03-16 12:32:07 -04:00
|
|
|
has_many :friendships, foreign_key: 'friend_id'
|
|
|
|
# friends_too exists to test a bug, and probably shouldn't be used elsewhere
|
|
|
|
has_many :friends_too, foreign_key: 'friend_id', class_name: 'Friendship'
|
|
|
|
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
|
2012-07-13 14:34:40 -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
|
|
|
|
2011-02-01 17:56:04 -05:00
|
|
|
has_many :jobs, :through => :references
|
2011-05-01 17:30:07 -04:00
|
|
|
has_many :jobs_with_dependent_destroy, :source => :job, :through => :references, :dependent => :destroy
|
2011-02-01 17:56:04 -05:00
|
|
|
has_many :jobs_with_dependent_delete_all, :source => :job, :through => :references, :dependent => :delete_all
|
2011-05-01 17:30:07 -04:00
|
|
|
has_many :jobs_with_dependent_nullify, :source => :job, :through => :references, :dependent => :nullify
|
2011-02-01 17:56:04 -05:00
|
|
|
|
2008-12-18 20:02:21 -05:00
|
|
|
belongs_to :primary_contact, :class_name => 'Person'
|
|
|
|
has_many :agents, :class_name => 'Person', :foreign_key => 'primary_contact_id'
|
2010-05-03 20:47:42 -04:00
|
|
|
has_many :agents_of_agents, :through => :agents, :source => :agents
|
2009-05-18 02:35:47 -04:00
|
|
|
belongs_to :number1_fan, :class_name => 'Person'
|
2010-10-31 07:21:28 -04:00
|
|
|
|
2011-05-01 17:30:07 -04:00
|
|
|
has_many :agents_posts, :through => :agents, :source => :posts
|
2010-10-09 17:00:33 -04:00
|
|
|
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
|
|
|
|
2012-03-21 18:18:18 -04:00
|
|
|
scope :males, -> { where(:gender => 'M') }
|
|
|
|
scope :females, -> { where(:gender => 'F') }
|
2006-02-10 00:19:41 -05:00
|
|
|
end
|
2011-02-01 17:56:04 -05:00
|
|
|
|
|
|
|
class PersonWithDependentDestroyJobs < ActiveRecord::Base
|
|
|
|
self.table_name = 'people'
|
|
|
|
|
|
|
|
has_many :references, :foreign_key => :person_id
|
|
|
|
has_many :jobs, :source => :job, :through => :references, :dependent => :destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
class PersonWithDependentDeleteAllJobs < ActiveRecord::Base
|
|
|
|
self.table_name = 'people'
|
|
|
|
|
|
|
|
has_many :references, :foreign_key => :person_id
|
|
|
|
has_many :jobs, :source => :job, :through => :references, :dependent => :delete_all
|
|
|
|
end
|
|
|
|
|
|
|
|
class PersonWithDependentNullifyJobs < ActiveRecord::Base
|
|
|
|
self.table_name = 'people'
|
|
|
|
|
|
|
|
has_many :references, :foreign_key => :person_id
|
|
|
|
has_many :jobs, :source => :job, :through => :references, :dependent => :nullify
|
|
|
|
end
|
2011-04-23 09:00:24 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LoosePerson < ActiveRecord::Base
|
|
|
|
self.table_name = 'people'
|
|
|
|
self.abstract_class = true
|
|
|
|
|
2011-05-01 17:30:07 -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
|
|
|
|
self.table_name = 'people'
|
2011-05-01 17:30:07 -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
|
|
|
|
self.table_name = 'people'
|
2012-06-10 11:23:34 -04:00
|
|
|
|
2012-03-07 23:56:23 -05:00
|
|
|
has_and_belongs_to_many :treasures, :join_table => 'peoples_treasures'
|
|
|
|
end
|
2012-06-10 11:23:34 -04:00
|
|
|
|
|
|
|
class NestedPerson < ActiveRecord::Base
|
|
|
|
self.table_name = 'people'
|
|
|
|
|
|
|
|
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)
|
|
|
|
assign_attributes({ :best_friend_attributes => { :first_name => new_name } })
|
|
|
|
end
|
2012-07-13 14:34:40 -04:00
|
|
|
end
|
2012-12-21 12:15:33 -05:00
|
|
|
|
|
|
|
class Insure
|
|
|
|
INSURES = %W{life annuality}
|
|
|
|
|
|
|
|
def self.load mask
|
|
|
|
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
|
|
|
|
|
|
|
|
def self.dump insures
|
|
|
|
numbers = insures.map { |insure| INSURES.index(insure) }
|
|
|
|
numbers.inject(0) { |sum, n| sum + (1 << n) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class SerializedPerson < ActiveRecord::Base
|
|
|
|
self.table_name = 'people'
|
|
|
|
|
|
|
|
serialize :insures, Insure
|
|
|
|
end
|