2004-11-23 20:04:44 -05:00
|
|
|
class Topic < ActiveRecord::Base
|
2012-07-27 12:27:47 -04:00
|
|
|
scope :base, -> { all }
|
2011-04-17 15:47:52 -04:00
|
|
|
scope :written_before, lambda { |time|
|
|
|
|
if time
|
2012-04-26 07:03:25 -04:00
|
|
|
where 'written_on < ?', time
|
2011-04-17 15:47:52 -04:00
|
|
|
end
|
|
|
|
}
|
2012-03-21 18:18:18 -04:00
|
|
|
scope :approved, -> { where(:approved => true) }
|
|
|
|
scope :rejected, -> { where(:approved => false) }
|
2009-01-24 12:54:10 -05:00
|
|
|
|
2012-07-27 12:27:47 -04:00
|
|
|
scope :scope_with_lambda, lambda { all }
|
2011-12-17 06:41:17 -05:00
|
|
|
|
2012-03-21 18:18:18 -04:00
|
|
|
scope :by_lifo, -> { where(:author_name => 'lifo') }
|
2012-04-27 05:30:52 -04:00
|
|
|
scope :replied, -> { where 'replies_count > 0' }
|
2012-03-21 18:18:18 -04:00
|
|
|
|
|
|
|
scope 'approved_as_string', -> { where(:approved => true) }
|
2012-07-27 12:27:47 -04:00
|
|
|
scope :anonymous_extension, -> { all } do
|
2008-03-23 22:50:02 -04:00
|
|
|
def one
|
|
|
|
1
|
|
|
|
end
|
|
|
|
end
|
2010-10-19 20:27:50 -04:00
|
|
|
|
2011-04-17 15:47:52 -04:00
|
|
|
scope :with_object, Class.new(Struct.new(:klass)) {
|
|
|
|
def call
|
|
|
|
klass.where(:approved => true)
|
|
|
|
end
|
|
|
|
}.new(self)
|
|
|
|
|
2013-01-24 07:44:02 -05:00
|
|
|
module NamedExtension
|
|
|
|
def two
|
|
|
|
2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-03-18 15:25:50 -05:00
|
|
|
has_many :replies, :dependent => :destroy, :foreign_key => "parent_id"
|
2012-11-04 11:09:25 -05:00
|
|
|
has_many :approved_replies, -> { approved }, class_name: 'Reply', foreign_key: "parent_id", counter_cache: 'replies_count'
|
2011-01-09 12:13:05 -05:00
|
|
|
|
|
|
|
has_many :unique_replies, :dependent => :destroy, :foreign_key => "parent_id"
|
|
|
|
has_many :silly_unique_replies, :dependent => :destroy, :foreign_key => "parent_id"
|
|
|
|
|
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
|
|
|
|
2009-08-10 10:25:53 -04:00
|
|
|
# Explicitly define as :date column so that returned Oracle DATE values would be typecasted to Date and not Time.
|
|
|
|
# Some tests depend on assumption that this attribute will have Date values.
|
|
|
|
if current_adapter?(:OracleEnhancedAdapter)
|
|
|
|
set_date_columns :last_read
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
2012-06-22 10:44:01 -04:00
|
|
|
alias_attribute :heading, :title
|
|
|
|
|
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
|
|
|
|
|
2012-01-07 04:11:04 -05:00
|
|
|
class_attribute :after_initialize_called
|
|
|
|
after_initialize do
|
|
|
|
self.class.after_initialize_called = true
|
|
|
|
end
|
|
|
|
|
2011-09-10 04:41:42 -04:00
|
|
|
def approved=(val)
|
|
|
|
@custom_approved = val
|
|
|
|
write_attribute(:approved, val)
|
|
|
|
end
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
protected
|
2007-09-17 05:29:02 -04:00
|
|
|
|
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
|
2010-11-07 09:05:18 -05:00
|
|
|
unless self.persisted?
|
2007-10-08 02:21:38 -04:00
|
|
|
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
|
|
|
|
2011-12-20 19:10:17 -05:00
|
|
|
class ImportantTopic < Topic
|
|
|
|
serialize :important, Hash
|
|
|
|
end
|
|
|
|
|
2013-11-24 04:47:17 -05:00
|
|
|
class DefaultRejectedTopic < Topic
|
|
|
|
default_scope -> { where(approved: false) }
|
|
|
|
end
|
|
|
|
|
2012-11-13 09:39:07 -05:00
|
|
|
class BlankTopic < Topic
|
2013-01-24 08:07:43 -05:00
|
|
|
# declared here to make sure that dynamic finder with a bang can find a model that responds to `blank?`
|
2013-01-24 07:44:02 -05:00
|
|
|
def blank?
|
|
|
|
true
|
|
|
|
end
|
2012-11-13 09:39:07 -05: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
|