company.rb 5.8 KB
Newer Older
1 2 3 4 5
class AbstractCompany < ActiveRecord::Base
  self.abstract_class = true
end

class Company < AbstractCompany
D
Initial  
David Heinemeier Hansson 已提交
6
  attr_protected :rating
7
  set_sequence_name :companies_nonstd_seq
8 9

  validates_presence_of :name
10 11

  has_one :dummy_account, :foreign_key => "firm_id", :class_name => "Account"
J
Jeremy Kemper 已提交
12

13 14 15
  def arbitrary_method
    "I am Jack's profound disappointment"
  end
D
Initial  
David Heinemeier Hansson 已提交
16 17
end

18 19 20
module Namespaced
  class Company < ::Company
  end
21 22 23 24 25 26 27

  class Firm < ::Company
    has_many :clients, :class_name => 'Namespaced::Client'
  end

  class Client < ::Company
  end
28
end
D
Initial  
David Heinemeier Hansson 已提交
29 30

class Firm < Company
31
  has_many :clients, :order => "id", :dependent => :destroy, :counter_sql =>
32 33
      "SELECT COUNT(*) FROM companies WHERE firm_id = 1 " +
      "AND (#{QUOTED_TYPE} = 'Client' OR #{QUOTED_TYPE} = 'SpecialClient' OR #{QUOTED_TYPE} = 'VerySpecialClient' )"
D
Initial  
David Heinemeier Hansson 已提交
34 35
  has_many :clients_sorted_desc, :class_name => "Client", :order => "id DESC"
  has_many :clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id"
36
  has_many :unvalidated_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :validate => false
37 38
  has_many :dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :destroy
  has_many :exclusively_dependent_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all
39
  has_many :limited_clients, :class_name => "Client", :order => "id", :limit => 1
D
Initial  
David Heinemeier Hansson 已提交
40
  has_many :clients_like_ms, :conditions => "name = 'Microsoft'", :class_name => "Client", :order => "id"
41
  has_many :clients_with_interpolated_conditions, :class_name => "Client", :conditions => 'rating > #{rating}'
J
Jeremy Kemper 已提交
42
  has_many :clients_like_ms_with_hash_conditions, :conditions => { :name => 'Microsoft' }, :class_name => "Client", :order => "id"
D
Initial  
David Heinemeier Hansson 已提交
43
  has_many :clients_using_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE client_of = #{id}'
44
  has_many :clients_using_counter_sql, :class_name => "Client",
45
           :finder_sql  => 'SELECT * FROM companies WHERE client_of = #{id}',
46 47
           :counter_sql => 'SELECT COUNT(*) FROM companies WHERE client_of = #{id}'
  has_many :clients_using_zero_counter_sql, :class_name => "Client",
48
           :finder_sql  => 'SELECT * FROM companies WHERE client_of = #{id}',
49
           :counter_sql => 'SELECT 0 FROM companies WHERE client_of = #{id}'
50 51 52
  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'
53
  has_many :clients_using_finder_sql, :class_name => "Client", :finder_sql => 'SELECT * FROM companies WHERE 1=1'
54
  has_many :plain_clients, :class_name => 'Client'
55
  has_many :readonly_clients, :class_name => 'Client', :readonly => true
56 57
  has_many :clients_using_primary_key, :class_name => 'Client',
           :primary_key => 'name', :foreign_key => 'firm_name'
58 59
  has_many :clients_grouped_by_firm_id, :class_name => "Client", :group => "firm_id", :select => "firm_id"
  has_many :clients_grouped_by_name, :class_name => "Client", :group => "name", :select => "name"
D
Initial  
David Heinemeier Hansson 已提交
60

61 62
  has_one :account, :foreign_key => "firm_id", :dependent => :destroy, :validate => true
  has_one :unvalidated_account, :foreign_key => "firm_id", :class_name => 'Account', :validate => false
63
  has_one :account_with_select, :foreign_key => "firm_id", :select => "id, firm_id", :class_name=>'Account'
64
  has_one :readonly_account, :foreign_key => "firm_id", :class_name => "Account", :readonly => true
65
  has_one :account_using_primary_key, :primary_key => "firm_id", :class_name => "Account"
D
Initial  
David Heinemeier Hansson 已提交
66 67
end

68 69 70 71 72
class DependentFirm < Company
  has_one :account, :foreign_key => "firm_id", :dependent => :nullify
  has_many :companies, :foreign_key => 'client_of', :order => "id", :dependent => :nullify
end

73 74
class ExclusivelyDependentFirm < Company
  has_one :account, :foreign_key => "firm_id", :dependent => :delete
75 76
  has_many :dependent_sanitized_conditional_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all, :conditions => "name = 'BigShot Inc.'"
  has_many :dependent_conditional_clients_of_firm, :foreign_key => "client_of", :class_name => "Client", :order => "id", :dependent => :delete_all, :conditions => ["name = ?", 'BigShot Inc.']
77
end
78

D
Initial  
David Heinemeier Hansson 已提交
79 80 81
class Client < Company
  belongs_to :firm, :foreign_key => "client_of"
  belongs_to :firm_with_basic_id, :class_name => "Firm", :foreign_key => "firm_id"
82
  belongs_to :firm_with_select, :class_name => "Firm", :foreign_key => "firm_id", :select => "id"
D
Initial  
David Heinemeier Hansson 已提交
83
  belongs_to :firm_with_other_name, :class_name => "Firm", :foreign_key => "client_of"
84
  belongs_to :firm_with_condition, :class_name => "Firm", :foreign_key => "client_of", :conditions => ["1 = ?", 1]
85
  belongs_to :readonly_firm, :class_name => "Firm", :foreign_key => "firm_id", :readonly => true
86 87 88 89 90 91 92 93 94 95 96 97 98 99

  # 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
J
Jeremy Kemper 已提交
100

101 102 103 104
  # Used to test that read and question methods are not generated for these attributes
  def ruby_type
    read_attribute :ruby_type
  end
J
Jeremy Kemper 已提交
105

106 107 108
  def rating?
    query_attribute :rating
  end
D
Initial  
David Heinemeier Hansson 已提交
109 110 111 112 113 114 115 116 117 118 119
end


class SpecialClient < Client
end

class VerySpecialClient < SpecialClient
end

class Account < ActiveRecord::Base
  belongs_to :firm
J
Jeremy Kemper 已提交
120

121 122 123 124 125 126 127 128 129 130
  def self.destroyed_account_ids
    @destroyed_account_ids ||= Hash.new { |h,k| h[k] = [] }
  end

  before_destroy do |account|
    if account.firm
      Account.destroyed_account_ids[account.firm.id] << account.id
    end
    true
  end
J
Jeremy Kemper 已提交
131 132


D
Initial  
David Heinemeier Hansson 已提交
133 134 135 136
  protected
    def validate
      errors.add_on_empty "credit_limit"
    end
J
Jeremy Kemper 已提交
137
end