post.rb 7.4 KB
Newer Older
1
class Post < ActiveRecord::Base
P
Pratik Naik 已提交
2 3 4 5 6 7
  module NamedExtension
    def author
      'lifo'
    end
  end

J
Jon Leighton 已提交
8 9 10 11 12 13
  module NamedExtension2
    def greeting
      "hello"
    end
  end

J
Jon Leighton 已提交
14 15
  scope :containing_the_letter_a, -> { where("body LIKE '%a%'") }
  scope :ranked_by_comments,      -> { order("comments_count DESC") }
16

17
  scope :limit_by, lambda {|l| limit(l) }
18

19
  belongs_to :author
20

21 22
  belongs_to :author_with_posts, -> { includes(:posts) }, :class_name => "Author", :foreign_key => :author_id
  belongs_to :author_with_address, -> { includes(:author_address) }, :class_name => "Author", :foreign_key => :author_id
23

24 25 26
  def first_comment
    super.body
  end
27 28
  has_one :first_comment, -> { order('id ASC') }, :class_name => 'Comment'
  has_one :last_comment, -> { order('id desc') }, :class_name => 'Comment'
29

J
Jon Leighton 已提交
30 31
  scope :with_special_comments, -> { joins(:comments).where(:comments => {:type => 'SpecialComment'}) }
  scope :with_very_special_comments, -> { joins(:comments).where(:comments => {:type => 'VerySpecialComment'}) }
J
Jon Leighton 已提交
32
  scope :with_post, ->(post_id) { joins(:comments).where(:comments => { :post_id => post_id }) }
33

34 35 36
  scope :with_comments, -> { preload(:comments) }
  scope :with_tags, -> { preload(:taggings) }

37
  has_many   :comments do
38
    def find_most_recent
39
      order("id DESC").first
40
    end
A
Arun Agrawal 已提交
41 42 43 44

    def newest
      created.last
    end
45 46 47 48

    def the_association
      proxy_association
    end
49
  end
50

J
Jon Leighton 已提交
51 52 53 54 55 56 57 58
  has_many :comments_with_extend, extend: NamedExtension, class_name: "Comment", foreign_key: "post_id" do
    def greeting
      "hello"
    end
  end

  has_many :comments_with_extend_2, extend: [NamedExtension, NamedExtension2], class_name: "Comment", foreign_key: "post_id"

59
  has_many :author_favorites, :through => :author
60
  has_many :author_categorizations, :through => :author, :source => :categorizations
61
  has_many :author_addresses, :through => :author
62

63 64 65
  has_many :comments_with_interpolated_conditions,
    ->(p) { where "#{"#{p.aliased_table_name}." rescue ""}body = ?", 'Thank you for the welcome' },
    :class_name => 'Comment'
66

67
  has_one  :very_special_comment
68
  has_one  :very_special_comment_with_post, -> { includes(:post) }, :class_name => "VerySpecialComment"
69
  has_many :special_comments
70
  has_many :nonexistant_comments, -> { where 'comments.id < 0' }, :class_name => 'Comment'
J
Jon Leighton 已提交
71

72
  has_many :special_comments_ratings, :through => :special_comments, :source => :ratings
73
  has_many :special_comments_ratings_taggings, :through => :special_comments_ratings, :source => :taggings
74

75
  has_and_belongs_to_many :categories
76
  has_and_belongs_to_many :special_categories, :join_table => "categories_posts", :association_foreign_key => 'category_id'
77 78

  has_many :taggings, :as => :taggable
79
  has_many :tags, :through => :taggings do
80
    def add_joins_and_select
81 82 83
      select('tags.*, authors.id as author_id')
        .joins('left outer join posts on taggings.taggable_id = posts.id left outer join authors on posts.author_id = authors.id')
        .to_a
84 85
    end
  end
J
Jeremy Kemper 已提交
86

87
  has_many :taggings_with_delete_all, :class_name => 'Tagging', :as => :taggable, :dependent => :delete_all
88 89 90 91
  has_many :taggings_with_destroy, :class_name => 'Tagging', :as => :taggable, :dependent => :destroy

  has_many :tags_with_destroy, :through => :taggings, :source => :tag, :dependent => :destroy
  has_many :tags_with_nullify, :through => :taggings, :source => :tag, :dependent => :nullify
92

93
  has_many :misc_tags, -> { where :tags => { :name => 'Misc' } }, :through => :taggings, :source => :tag
94
  has_many :funky_tags, :through => :taggings, :source => :tag
95
  has_many :super_tags, :through => :taggings
96
  has_many :tags_with_primary_key, :through => :taggings, :source => :tag_with_primary_key
97
  has_one :tagging, :as => :taggable
J
Jon Leighton 已提交
98

99 100
  has_many :first_taggings, -> { where :taggings => { :comment => 'first' } }, :as => :taggable, :class_name => 'Tagging'
  has_many :first_blue_tags, -> { where :tags => { :name => 'Blue' } }, :through => :first_taggings, :source => :tag
101

102
  has_many :first_blue_tags_2, -> { where :taggings => { :comment => 'first' } }, :through => :taggings, :source => :blue_tag
103

104
  has_many :invalid_taggings, -> { where 'taggings.id < 0' }, :as => :taggable, :class_name => "Tagging"
105
  has_many :invalid_tags, :through => :invalid_taggings, :source => :tag
106

107 108 109
  has_many :categorizations, :foreign_key => :category_id
  has_many :authors, :through => :categorizations

110 111 112 113 114 115 116 117 118
  has_many :categorizations_using_author_id, :primary_key => :author_id, :foreign_key => :post_id, :class_name => 'Categorization'
  has_many :authors_using_author_id, :through => :categorizations_using_author_id, :source => :author

  has_many :taggings_using_author_id, :primary_key => :author_id, :as => :taggable, :class_name => 'Tagging'
  has_many :tags_using_author_id, :through => :taggings_using_author_id, :source => :tag

  has_many :standard_categorizations, :class_name => 'Categorization', :foreign_key => :post_id
  has_many :author_using_custom_pk,  :through => :standard_categorizations
  has_many :authors_using_custom_pk, :through => :standard_categorizations
119
  has_many :named_categories, :through => :standard_categorizations
120

121
  has_many :readers
122
  has_many :secure_readers
123
  has_many :readers_with_person, -> { includes(:person) }, :class_name => "Reader"
124
  has_many :people, :through => :readers
125
  has_many :secure_people, :through => :secure_readers
126
  has_many :single_people, :through => :readers
127 128 129 130 131
  has_many :people_with_callbacks, :source=>:person, :through => :readers,
              :before_add    => lambda {|owner, reader| log(:added,   :before, reader.first_name) },
              :after_add     => lambda {|owner, reader| log(:added,   :after,  reader.first_name) },
              :before_remove => lambda {|owner, reader| log(:removed, :before, reader.first_name) },
              :after_remove  => lambda {|owner, reader| log(:removed, :after,  reader.first_name) }
132
  has_many :skimmers, -> { where :skimmer => true }, :class_name => 'Reader'
133
  has_many :impatient_people, :through => :skimmers, :source => :person
134

135 136 137
  has_many :lazy_readers
  has_many :lazy_readers_skimmers_or_not, -> { where(skimmer: [ true, false ]) }, :class_name => 'LazyReader'

138
  def self.top(limit)
139
    ranked_by_comments.limit_by(limit)
140 141
  end

142 143 144
  def self.reset_log
    @log = []
  end
145

146 147 148 149
  def self.log(message=nil, side=nil, new_record=nil)
    return @log if message.nil?
    @log << [message, side, new_record]
  end
150

151 152 153
  def self.what_are_you
    'a post...'
  end
154 155
end

156
class SpecialPost < Post; end
157 158

class StiPost < Post
159
  self.abstract_class = true
160 161
  has_one :special_comment, :class_name => "SpecialComment"
end
162 163

class SubStiPost < StiPost
164
  self.table_name = Post.table_name
165
end
166

167 168
class FirstPost < ActiveRecord::Base
  self.table_name = 'posts'
J
Jon Leighton 已提交
169
  default_scope { where(:id => 1) }
170

171 172 173
  has_many :comments, :foreign_key => :post_id
  has_one  :comment,  :foreign_key => :post_id
end
174 175 176

class PostWithDefaultInclude < ActiveRecord::Base
  self.table_name = 'posts'
J
Jon Leighton 已提交
177
  default_scope { includes(:comments) }
178
  has_many :comments, :foreign_key => :post_id
179 180
end

181 182 183 184 185
class PostWithSpecialCategorization < Post
  has_many :categorizations, :foreign_key => :post_id
  default_scope { where(:type => 'PostWithSpecialCategorization').joins(:categorizations).where(:categorizations => { :special => true }) }
end

186 187
class PostWithDefaultScope < ActiveRecord::Base
  self.table_name = 'posts'
J
Jon Leighton 已提交
188
  default_scope { order(:title) }
189 190 191 192
end

class SpecialPostWithDefaultScope < ActiveRecord::Base
  self.table_name = 'posts'
J
Jon Leighton 已提交
193
  default_scope { where(:id => [1, 5,6]) }
194
end