2004-11-23 20:04:44 -05:00
|
|
|
class Topic < ActiveRecord::Base
|
2010-01-17 18:08:19 -05:00
|
|
|
scope :base
|
|
|
|
scope :written_before, lambda { |time|
|
2009-03-12 11:06:19 -04:00
|
|
|
if time
|
|
|
|
{ :conditions => ['written_on < ?', time] }
|
|
|
|
end
|
2008-03-23 22:50:02 -04:00
|
|
|
}
|
2010-01-17 18:08:19 -05:00
|
|
|
scope :approved, :conditions => {:approved => true}
|
|
|
|
scope :rejected, :conditions => {:approved => false}
|
2009-01-24 12:54:10 -05:00
|
|
|
|
2010-01-17 18:08:19 -05:00
|
|
|
scope :by_lifo, :conditions => {:author_name => 'lifo'}
|
2008-07-09 09:08:04 -04:00
|
|
|
|
2010-01-17 18:08:19 -05:00
|
|
|
scope :approved_as_hash_condition, :conditions => {:topics => {:approved => true}}
|
|
|
|
scope 'approved_as_string', :conditions => {:approved => true}
|
|
|
|
scope :replied, :conditions => ['replies_count > 0']
|
|
|
|
scope :anonymous_extension do
|
2008-03-23 22:50:02 -04:00
|
|
|
def one
|
|
|
|
1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module NamedExtension
|
|
|
|
def two
|
|
|
|
2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module MultipleExtensionOne
|
|
|
|
def extension_one
|
|
|
|
1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module MultipleExtensionTwo
|
|
|
|
def extension_two
|
|
|
|
2
|
|
|
|
end
|
|
|
|
end
|
2010-01-17 18:08:19 -05:00
|
|
|
scope :named_extension, :extend => NamedExtension
|
|
|
|
scope :multiple_extensions, :extend => [MultipleExtensionTwo, MultipleExtensionOne]
|
2008-04-01 02:46:40 -04:00
|
|
|
|
2006-03-18 15:25:50 -05:00
|
|
|
has_many :replies, :dependent => :destroy, :foreign_key => "parent_id"
|
2009-07-15 16:22:25 -04:00
|
|
|
has_many :replies_with_primary_key, :class_name => "Reply", :dependent => :destroy, :primary_key => "title", :foreign_key => "parent_title"
|
2004-11-23 20:04:44 -05:00
|
|
|
serialize :content
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
before_create :default_written_on
|
2004-12-14 07:32:29 -05:00
|
|
|
before_destroy :destroy_children
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
def parent
|
2006-03-05 13:43:56 -05:00
|
|
|
Topic.find(parent_id)
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2006-09-02 17:00:09 -04:00
|
|
|
# trivial method for testing Array#to_xml with :methods
|
|
|
|
def topic_id
|
|
|
|
id
|
|
|
|
end
|
2008-01-18 02:27:03 -05:00
|
|
|
|
2009-09-08 11:22:45 -04:00
|
|
|
before_validation :before_validation_for_transaction
|
|
|
|
before_save :before_save_for_transaction
|
|
|
|
before_destroy :before_destroy_for_transaction
|
|
|
|
|
|
|
|
after_save :after_save_for_transaction
|
|
|
|
after_create :after_create_for_transaction
|
|
|
|
|
|
|
|
after_initialize :set_email_address
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
protected
|
2007-09-17 05:29:02 -04:00
|
|
|
def approved=(val)
|
|
|
|
@custom_approved = val
|
|
|
|
write_attribute(:approved, val)
|
|
|
|
end
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
def default_written_on
|
|
|
|
self.written_on = Time.now unless attribute_present?("written_on")
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_children
|
|
|
|
self.class.delete_all "parent_id = #{id}"
|
|
|
|
end
|
2007-10-08 02:21:38 -04:00
|
|
|
|
2009-09-08 11:22:45 -04:00
|
|
|
def set_email_address
|
2007-10-08 02:21:38 -04:00
|
|
|
if self.new_record?
|
|
|
|
self.author_email_address = 'test@test.com'
|
|
|
|
end
|
|
|
|
end
|
2009-09-08 11:22:45 -04:00
|
|
|
|
|
|
|
def before_validation_for_transaction; end
|
|
|
|
def before_save_for_transaction; end
|
|
|
|
def before_destroy_for_transaction; end
|
|
|
|
def after_save_for_transaction; end
|
|
|
|
def after_create_for_transaction; end
|
2008-04-01 02:46:40 -04:00
|
|
|
end
|
2008-12-31 04:43:13 -05:00
|
|
|
|
|
|
|
module Web
|
|
|
|
class Topic < ActiveRecord::Base
|
|
|
|
has_many :replies, :dependent => :destroy, :foreign_key => "parent_id", :class_name => 'Web::Reply'
|
|
|
|
end
|
2009-09-08 11:10:14 -04:00
|
|
|
end
|