2005-04-03 06:52:05 -04:00
|
|
|
class Author < ActiveRecord::Base
|
2005-04-03 13:50:11 -04:00
|
|
|
has_many :posts
|
2005-11-06 15:39:34 -05:00
|
|
|
has_many :posts_with_comments, :include => :comments, :class_name => "Post"
|
|
|
|
has_many :posts_with_categories, :include => :categories, :class_name => "Post"
|
2005-11-07 23:36:37 -05:00
|
|
|
has_many :posts_with_comments_and_categories, :include => [ :comments, :categories ], :order => "posts.id", :class_name => "Post"
|
2006-05-28 17:33:34 -04:00
|
|
|
has_many :posts_with_extension, :class_name => "Post" do #, :extend => ProxyTestExtension
|
|
|
|
def testing_proxy_owner
|
|
|
|
proxy_owner
|
|
|
|
end
|
|
|
|
def testing_proxy_reflection
|
|
|
|
proxy_reflection
|
|
|
|
end
|
|
|
|
def testing_proxy_target
|
|
|
|
proxy_target
|
|
|
|
end
|
|
|
|
end
|
2006-03-18 21:01:40 -05:00
|
|
|
has_many :comments, :through => :posts
|
2006-03-24 09:46:17 -05:00
|
|
|
has_many :funky_comments, :through => :posts, :source => :comments
|
2005-11-06 15:39:34 -05:00
|
|
|
|
2006-03-18 18:14:31 -05:00
|
|
|
has_many :special_posts, :class_name => "Post"
|
|
|
|
has_many :hello_posts, :class_name => "Post", :conditions=>"\#{aliased_table_name}.body = 'hello'"
|
|
|
|
has_many :nonexistent_posts, :class_name => "Post", :conditions=>"\#{aliased_table_name}.body = 'nonexistent'"
|
2005-07-04 04:43:57 -04:00
|
|
|
has_many :posts_with_callbacks, :class_name => "Post", :before_add => :log_before_adding,
|
2006-03-18 18:14:31 -05:00
|
|
|
:after_add => :log_after_adding,
|
|
|
|
:before_remove => :log_before_removing,
|
|
|
|
:after_remove => :log_after_removing
|
2005-11-07 23:36:37 -05:00
|
|
|
has_many :posts_with_proc_callbacks, :class_name => "Post",
|
2006-03-18 18:14:31 -05:00
|
|
|
:before_add => Proc.new {|o, r| o.post_log << "before_adding#{r.id}"},
|
|
|
|
:after_add => Proc.new {|o, r| o.post_log << "after_adding#{r.id}"},
|
2005-11-07 23:36:37 -05:00
|
|
|
:before_remove => Proc.new {|o, r| o.post_log << "before_removing#{r.id}"},
|
2006-03-18 18:14:31 -05:00
|
|
|
:after_remove => Proc.new {|o, r| o.post_log << "after_removing#{r.id}"}
|
2005-11-07 23:36:37 -05:00
|
|
|
has_many :posts_with_multiple_callbacks, :class_name => "Post",
|
2005-07-04 04:43:57 -04:00
|
|
|
:before_add => [:log_before_adding, Proc.new {|o, r| o.post_log << "before_adding_proc#{r.id}"}],
|
2006-03-18 18:14:31 -05:00
|
|
|
:after_add => [:log_after_adding, Proc.new {|o, r| o.post_log << "after_adding_proc#{r.id}"}]
|
2005-07-04 04:43:57 -04:00
|
|
|
has_many :unchangable_posts, :class_name => "Post", :before_add => :raise_exception, :after_add => :log_after_adding
|
|
|
|
|
2005-12-11 13:06:51 -05:00
|
|
|
has_many :categorizations
|
|
|
|
has_many :categories, :through => :categorizations
|
2006-03-20 20:07:16 -05:00
|
|
|
|
2006-05-06 19:37:56 -04:00
|
|
|
has_many :categorized_posts, :through => :categorizations, :source => :post
|
|
|
|
has_many :unique_categorized_posts, :through => :categorizations, :source => :post, :uniq => true
|
|
|
|
|
2006-03-17 22:39:18 -05:00
|
|
|
has_many :nothings, :through => :kateggorisatons, :class_name => 'Category'
|
2005-12-11 13:06:51 -05:00
|
|
|
|
2006-03-20 20:07:16 -05:00
|
|
|
has_many :author_favorites
|
|
|
|
has_many :favorite_authors, :through => :author_favorites, :order => 'name'
|
|
|
|
|
2006-04-05 11:36:02 -04:00
|
|
|
has_many :tagging, :through => :posts # through polymorphic has_one
|
|
|
|
has_many :taggings, :through => :posts, :source => :taggings # through polymorphic has_many
|
|
|
|
has_many :tags, :through => :posts # through has_many :through
|
|
|
|
has_many :post_categories, :through => :posts, :source => :categories
|
|
|
|
|
2006-03-19 14:32:07 -05:00
|
|
|
belongs_to :author_address
|
|
|
|
|
2005-07-04 04:43:57 -04:00
|
|
|
attr_accessor :post_log
|
|
|
|
|
|
|
|
def after_initialize
|
2005-11-07 23:36:37 -05:00
|
|
|
@post_log = []
|
2005-07-04 04:43:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2005-11-07 23:36:37 -05:00
|
|
|
def log_before_adding(object)
|
|
|
|
@post_log << "before_adding#{object.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_after_adding(object)
|
|
|
|
@post_log << "after_adding#{object.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_before_removing(object)
|
|
|
|
@post_log << "before_removing#{object.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def log_after_removing(object)
|
|
|
|
@post_log << "after_removing#{object.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def raise_exception(object)
|
|
|
|
raise Exception.new("You can't add a post")
|
|
|
|
end
|
|
|
|
end
|
2006-03-19 14:32:07 -05:00
|
|
|
|
|
|
|
class AuthorAddress < ActiveRecord::Base
|
|
|
|
has_one :author
|
2006-03-20 20:07:16 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
class AuthorFavorite < ActiveRecord::Base
|
|
|
|
belongs_to :author
|
|
|
|
belongs_to :favorite_author, :class_name => "Author", :foreign_key => 'favorite_author_id'
|
2006-05-06 19:37:56 -04:00
|
|
|
end
|