2007-01-22 23:19:16 -05:00
|
|
|
class AbstractCompany < ActiveRecord::Base
|
|
|
|
self.abstract_class = true
|
|
|
|
end
|
|
|
|
|
|
|
|
class Company < AbstractCompany
|
2004-11-23 20:04:44 -05:00
|
|
|
attr_protected :rating
|
2011-11-29 11:33:50 -05:00
|
|
|
self.sequence_name = :companies_nonstd_seq
|
2005-01-15 12:45:16 -05:00
|
|
|
|
|
|
|
validates_presence_of :name
|
2006-02-25 18:32:24 -05:00
|
|
|
|
|
|
|
has_one :dummy_account, :foreign_key => "firm_id", :class_name => "Account"
|
2009-08-08 18:48:11 -04:00
|
|
|
has_many :contracts
|
|
|
|
has_many :developers, :through => :contracts
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-04-29 19:00:47 -04:00
|
|
|
def arbitrary_method
|
|
|
|
"I am Jack's profound disappointment"
|
|
|
|
end
|
2008-10-13 13:01:37 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def private_method
|
|
|
|
"I am Jack's innermost fears and aspirations"
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2008-04-11 11:35:09 -04:00
|
|
|
module Namespaced
|
|
|
|
class Company < ::Company
|
|
|
|
end
|
2008-07-21 15:21:13 -04:00
|
|
|
|
|
|
|
class Firm < ::Company
|
|
|
|
has_many :clients, :class_name => 'Namespaced::Client'
|
|
|
|
end
|
|
|
|
|
|
|
|
class Client < ::Company
|
|
|
|
end
|
2008-04-11 11:35:09 -04:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
class Firm < Company
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :clients, -> { order "id" }, :dependent => :destroy, :counter_sql =>
|
2005-11-16 03:16:54 -05:00
|
|
|
"SELECT COUNT(*) FROM companies WHERE firm_id = 1 " +
|
2010-12-30 16:44:29 -05:00
|
|
|
"AND (#{QUOTED_TYPE} = 'Client' OR #{QUOTED_TYPE} = 'SpecialClient' OR #{QUOTED_TYPE} = 'VerySpecialClient' )",
|
|
|
|
:before_remove => :log_before_remove,
|
|
|
|
:after_remove => :log_after_remove
|
2009-03-09 08:02:31 -04:00
|
|
|
has_many :unsorted_clients, :class_name => "Client"
|
2011-11-04 07:16:55 -04:00
|
|
|
has_many :unsorted_clients_with_symbol, :class_name => :Client
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :clients_sorted_desc, -> { order "id DESC" }, :class_name => "Client"
|
|
|
|
has_many :clients_of_firm, -> { order "id" }, :foreign_key => "client_of", :class_name => "Client"
|
|
|
|
has_many :clients_ordered_by_name, -> { order "name" }, :class_name => "Client"
|
2008-06-11 07:08:35 -04:00
|
|
|
has_many :unvalidated_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :validate => false
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :dependent_clients_of_firm, -> { order "id" }, :foreign_key => "client_of", :class_name => "Client", :dependent => :destroy
|
|
|
|
has_many :exclusively_dependent_clients_of_firm, -> { order "id" }, :foreign_key => "client_of", :class_name => "Client", :dependent => :delete_all
|
|
|
|
has_many :limited_clients, -> { limit 1 }, :class_name => "Client"
|
|
|
|
has_many :clients_with_interpolated_conditions, ->(firm) { where "rating > #{firm.rating}" }, :class_name => "Client"
|
|
|
|
has_many :clients_like_ms, -> { where("name = 'Microsoft'").order("id") }, :class_name => "Client"
|
|
|
|
has_many :clients_like_ms_with_hash_conditions, -> { where(:name => 'Microsoft').order("id") }, :class_name => "Client"
|
2011-02-11 17:22:19 -05:00
|
|
|
has_many :clients_using_sql, :class_name => "Client", :finder_sql => proc { "SELECT * FROM companies WHERE client_of = #{id}" }
|
2004-12-07 07:25:01 -05:00
|
|
|
has_many :clients_using_counter_sql, :class_name => "Client",
|
2011-02-11 17:22:19 -05:00
|
|
|
:finder_sql => proc { "SELECT * FROM companies WHERE client_of = #{id} " },
|
|
|
|
:counter_sql => proc { "SELECT COUNT(*) FROM companies WHERE client_of = #{id}" }
|
2004-12-07 07:25:01 -05:00
|
|
|
has_many :clients_using_zero_counter_sql, :class_name => "Client",
|
2011-02-11 17:22:19 -05:00
|
|
|
:finder_sql => proc { "SELECT * FROM companies WHERE client_of = #{id}" },
|
|
|
|
:counter_sql => proc { "SELECT 0 FROM companies WHERE client_of = #{id}" }
|
2005-04-07 02:29:31 -04:00
|
|
|
has_many :no_clients_using_counter_sql, :class_name => "Client",
|
|
|
|
:finder_sql => 'SELECT * FROM companies WHERE client_of = 1000',
|
|
|
|
:counter_sql => 'SELECT COUNT(*) FROM companies WHERE client_of = 1000'
|
2007-10-25 23:42:28 -04:00
|
|
|
has_many :clients_using_finder_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE 1=1'
|
2006-04-19 17:37:54 -04:00
|
|
|
has_many :plain_clients, :class_name => 'Client'
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :readonly_clients, -> { readonly }, :class_name => 'Client'
|
2008-06-01 02:19:40 -04:00
|
|
|
has_many :clients_using_primary_key, :class_name => 'Client',
|
|
|
|
:primary_key => 'name', :foreign_key => 'firm_name'
|
2009-11-07 14:00:54 -05:00
|
|
|
has_many :clients_using_primary_key_with_delete_all, :class_name => 'Client',
|
|
|
|
:primary_key => 'name', :foreign_key => 'firm_name', :dependent => :delete_all
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :clients_grouped_by_firm_id, -> { group("firm_id").select("firm_id") }, :class_name => "Client"
|
|
|
|
has_many :clients_grouped_by_name, -> { group("name").select("name") }, :class_name => "Client"
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2008-06-11 07:08:35 -04:00
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :destroy, :validate => true
|
|
|
|
has_one :unvalidated_account, :foreign_key => "firm_id", :class_name => 'Account', :validate => false
|
2012-07-13 14:34:40 -04:00
|
|
|
has_one :account_with_select, -> { select("id, firm_id") }, :foreign_key => "firm_id", :class_name=>'Account'
|
|
|
|
has_one :readonly_account, -> { readonly }, :foreign_key => "firm_id", :class_name => "Account"
|
2009-03-22 17:57:24 -04:00
|
|
|
# added order by id as in fixtures there are two accounts for Rails Core
|
|
|
|
# Oracle tests were failing because of that as the second fixture was selected
|
2012-07-13 14:34:40 -04:00
|
|
|
has_one :account_using_primary_key, -> { order('id') }, :primary_key => "firm_id", :class_name => "Account"
|
2009-07-11 14:04:18 -04:00
|
|
|
has_one :account_using_foreign_and_primary_keys, :foreign_key => "firm_name", :primary_key => "name", :class_name => "Account"
|
2009-03-06 14:11:13 -05:00
|
|
|
has_one :deletable_account, :foreign_key => "firm_id", :class_name => "Account", :dependent => :delete
|
2010-03-07 19:53:21 -05:00
|
|
|
|
2012-07-13 14:34:40 -04:00
|
|
|
has_one :account_limit_500_with_hash_conditions, -> { where :credit_limit => 500 }, :foreign_key => "firm_id", :class_name => "Account"
|
2009-09-26 09:33:50 -04:00
|
|
|
|
2009-07-11 11:52:13 -04:00
|
|
|
has_one :unautosaved_account, :foreign_key => "firm_id", :class_name => 'Account', :autosave => false
|
|
|
|
has_many :accounts
|
|
|
|
has_many :unautosaved_accounts, :foreign_key => "firm_id", :class_name => 'Account', :autosave => false
|
2010-12-30 16:44:29 -05:00
|
|
|
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :association_with_references, -> { references(:foo) }, :class_name => 'Client'
|
2012-01-16 16:14:34 -05:00
|
|
|
|
2010-12-30 16:44:29 -05:00
|
|
|
def log
|
|
|
|
@log ||= []
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def log_before_remove(record)
|
|
|
|
log << "before_remove#{record.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_after_remove(record)
|
|
|
|
log << "after_remove#{record.id}"
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2005-10-14 20:46:55 -04:00
|
|
|
class DependentFirm < Company
|
2010-01-18 13:09:19 -05:00
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :nullify
|
|
|
|
has_many :companies, :foreign_key => 'client_of', :dependent => :nullify
|
2005-10-14 20:46:55 -04:00
|
|
|
end
|
|
|
|
|
2010-03-28 10:17:46 -04:00
|
|
|
class RestrictedFirm < Company
|
2012-07-13 14:34:40 -04:00
|
|
|
has_one :account, -> { order("id") }, :foreign_key => "firm_id", :dependent => :restrict
|
|
|
|
has_many :companies, -> { order("id") }, :foreign_key => 'client_of', :dependent => :restrict
|
2010-03-28 10:17:46 -04:00
|
|
|
end
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
class Client < Company
|
|
|
|
belongs_to :firm, :foreign_key => "client_of"
|
|
|
|
belongs_to :firm_with_basic_id, :class_name => "Firm", :foreign_key => "firm_id"
|
2012-07-13 14:34:40 -04:00
|
|
|
belongs_to :firm_with_select, -> { select("id") }, :class_name => "Firm", :foreign_key => "firm_id"
|
2004-11-23 20:04:44 -05:00
|
|
|
belongs_to :firm_with_other_name, :class_name => "Firm", :foreign_key => "client_of"
|
2012-07-13 14:34:40 -04:00
|
|
|
belongs_to :firm_with_condition, -> { where "1 = ?", 1 }, :class_name => "Firm", :foreign_key => "client_of"
|
2009-07-15 16:22:25 -04:00
|
|
|
belongs_to :firm_with_primary_key, :class_name => "Firm", :primary_key => "name", :foreign_key => "firm_name"
|
2010-10-21 00:23:05 -04:00
|
|
|
belongs_to :firm_with_primary_key_symbols, :class_name => "Firm", :primary_key => :name, :foreign_key => :firm_name
|
2012-07-13 14:34:40 -04:00
|
|
|
belongs_to :readonly_firm, -> { readonly }, :class_name => "Firm", :foreign_key => "firm_id"
|
|
|
|
belongs_to :bob_firm, -> { where :name => "Bob" }, :class_name => "Firm", :foreign_key => "client_of"
|
2011-01-02 09:28:53 -05:00
|
|
|
has_many :accounts, :through => :firm
|
2011-01-16 13:25:50 -05:00
|
|
|
belongs_to :account
|
2005-09-27 23:52:57 -04:00
|
|
|
|
2011-06-12 13:09:09 -04:00
|
|
|
class RaisedOnSave < RuntimeError; end
|
|
|
|
attr_accessor :raise_on_save
|
|
|
|
before_save do
|
|
|
|
raise RaisedOnSave if raise_on_save
|
|
|
|
end
|
|
|
|
|
|
|
|
class RaisedOnDestroy < RuntimeError; end
|
|
|
|
attr_accessor :raise_on_destroy
|
|
|
|
before_destroy do
|
|
|
|
raise RaisedOnDestroy if raise_on_destroy
|
|
|
|
end
|
|
|
|
|
2005-09-27 23:52:57 -04:00
|
|
|
# Record destruction so we can test whether firm.clients.clear has
|
|
|
|
# is calling client.destroy, deleting from the database, or setting
|
|
|
|
# foreign keys to NULL.
|
|
|
|
def self.destroyed_client_ids
|
|
|
|
@destroyed_client_ids ||= Hash.new { |h,k| h[k] = [] }
|
|
|
|
end
|
|
|
|
|
|
|
|
before_destroy do |client|
|
|
|
|
if client.firm
|
|
|
|
Client.destroyed_client_ids[client.firm.id] << client.id
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2009-09-08 11:10:14 -04:00
|
|
|
before_destroy :overwrite_to_raise
|
|
|
|
|
2006-03-20 01:45:34 -05:00
|
|
|
# Used to test that read and question methods are not generated for these attributes
|
|
|
|
def ruby_type
|
|
|
|
read_attribute :ruby_type
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-03-20 01:45:34 -05:00
|
|
|
def rating?
|
|
|
|
query_attribute :rating
|
|
|
|
end
|
2008-10-16 17:17:49 -04:00
|
|
|
|
2009-09-08 11:10:14 -04:00
|
|
|
def overwrite_to_raise
|
|
|
|
end
|
|
|
|
|
2008-10-16 17:17:49 -04:00
|
|
|
class << self
|
|
|
|
private
|
|
|
|
|
|
|
|
def private_method
|
|
|
|
"darkness"
|
|
|
|
end
|
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2009-04-20 13:12:40 -04:00
|
|
|
class ExclusivelyDependentFirm < Company
|
|
|
|
has_one :account, :foreign_key => "firm_id", :dependent => :delete
|
2012-07-13 14:34:40 -04:00
|
|
|
has_many :dependent_sanitized_conditional_clients_of_firm, -> { order("id").where("name = 'BigShot Inc.'") }, :foreign_key => "client_of", :class_name => "Client", :dependent => :delete_all
|
|
|
|
has_many :dependent_conditional_clients_of_firm, -> { order("id").where("name = ?", 'BigShot Inc.') }, :foreign_key => "client_of", :class_name => "Client", :dependent => :delete_all
|
|
|
|
has_many :dependent_hash_conditional_clients_of_firm, -> { order("id").where(:name => 'BigShot Inc.') }, :foreign_key => "client_of", :class_name => "Client", :dependent => :delete_all
|
2009-04-20 13:12:40 -04:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
class SpecialClient < Client
|
|
|
|
end
|
|
|
|
|
|
|
|
class VerySpecialClient < SpecialClient
|
|
|
|
end
|
|
|
|
|
|
|
|
class Account < ActiveRecord::Base
|
2010-03-07 19:53:21 -05:00
|
|
|
belongs_to :firm, :class_name => 'Company'
|
2009-07-11 11:52:13 -04:00
|
|
|
belongs_to :unautosaved_firm, :foreign_key => "firm_id", :class_name => "Firm", :autosave => false
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-08-29 13:06:27 -04:00
|
|
|
def self.destroyed_account_ids
|
|
|
|
@destroyed_account_ids ||= Hash.new { |h,k| h[k] = [] }
|
|
|
|
end
|
|
|
|
|
2012-05-02 22:09:40 -04:00
|
|
|
# Test private kernel method through collection proxy using has_many.
|
|
|
|
def self.open
|
|
|
|
where('firm_name = ?', '37signals')
|
|
|
|
end
|
|
|
|
|
2006-08-29 13:06:27 -04:00
|
|
|
before_destroy do |account|
|
|
|
|
if account.firm
|
|
|
|
Account.destroyed_account_ids[account.firm.id] << account.id
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2009-03-21 15:05:09 -04:00
|
|
|
validate :check_empty_credit_limit
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
protected
|
2009-03-21 15:05:09 -04:00
|
|
|
|
|
|
|
def check_empty_credit_limit
|
|
|
|
errors.add_on_empty "credit_limit"
|
|
|
|
end
|
2008-10-13 13:01:37 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def private_method
|
|
|
|
"Sir, yes sir!"
|
|
|
|
end
|
2006-09-01 22:51:01 -04:00
|
|
|
end
|