mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
134 lines
3.2 KiB
Ruby
134 lines
3.2 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: topics
|
|
#
|
|
# id :integer not null, primary key
|
|
# state :integer default(0), not null
|
|
# title :string(255)
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
# forum_id :integer
|
|
# user_id :integer
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_topics_on_forum_id (forum_id)
|
|
# index_topics_on_user_id (user_id)
|
|
#
|
|
|
|
class Topic < ActiveRecord::Base
|
|
POSTS_PAGE = 30
|
|
STATE_NORMAL = 0
|
|
STATE_STICKY = 1
|
|
LATEST_PER_PAGE = 5
|
|
|
|
RULES = 12
|
|
|
|
include Extra
|
|
#attr_protected :id, :updated_at, :created_at
|
|
attr_accessor :first_post
|
|
|
|
belongs_to :user, :optional => true
|
|
belongs_to :forum, :optional => true
|
|
has_one :lock, :as => :lockable
|
|
has_one :latest, -> { order("id DESC") }, :class_name => "Post"
|
|
has_many :posts, -> { order("id ASC") }, :dependent => :destroy
|
|
has_many :view_counts, :as => :viewable, :dependent => :destroy
|
|
|
|
scope :basic, -> { includes([:latest, { forum: :forumer }, :user]) }
|
|
scope :ordered, -> { order("state DESC, posts.id DESC") }
|
|
|
|
validates_presence_of :user_id, :forum_id
|
|
validates_length_of :title, :in => 1..50
|
|
validates_length_of :first_post, :in => 1..10000, :on => :create
|
|
|
|
after_create :make_post
|
|
|
|
acts_as_readable
|
|
|
|
def self.recent_topics
|
|
find_by_sql %q{
|
|
SELECT DISTINCT topics.*
|
|
FROM (SELECT max(id) as max_id, topic_id
|
|
FROM posts
|
|
GROUP BY topic_id
|
|
ORDER BY max_id DESC
|
|
LIMIT 200) AS T
|
|
INNER JOIN topics
|
|
ON T.topic_id = topics.id
|
|
INNER JOIN forums
|
|
ON forums.id = topics.forum_id
|
|
LEFT OUTER JOIN forumers
|
|
ON forumers.forum_id = forums.id
|
|
WHERE forumers.id IS NULL
|
|
LIMIT 5
|
|
}
|
|
end
|
|
|
|
def to_s
|
|
title
|
|
end
|
|
|
|
def record_view_count(ip_address, logged_in = false)
|
|
self.view_counts.create(:viewable => self, :ip_address => ip_address, :logged_in => logged_in)
|
|
self
|
|
end
|
|
|
|
def view_count
|
|
view_counts.length
|
|
end
|
|
|
|
def cache_key(key)
|
|
"/topics/#{id}/#{key}"
|
|
end
|
|
|
|
def cached_view_count
|
|
Rails.cache.fetch(cache_key('view_count'), expires_in: 1.hours) do
|
|
self.view_count
|
|
end
|
|
end
|
|
|
|
def cached_posts_count
|
|
Rails.cache.fetch(cache_key('posts'), expires_in: 10.minutes) do
|
|
posts.count - 1
|
|
end
|
|
end
|
|
|
|
def make_post
|
|
c = posts.build
|
|
c.text = first_post
|
|
c.user = user
|
|
c.save!
|
|
end
|
|
|
|
def can_show? cuser
|
|
forum.can_show? cuser
|
|
end
|
|
|
|
def can_create? cuser
|
|
return false unless cuser
|
|
errors.add :bans, I18n.t(:bans_mute) if cuser.banned?(Ban::TYPE_MUTE) and forum != Forum::BANS
|
|
errors.add :bans, I18n.t(:registered_for_week) unless cuser.verified?
|
|
Forum.available_to(cuser, Forumer::ACCESS_TOPIC).where(id: forum_id) and errors.size == 0
|
|
end
|
|
|
|
def can_update? cuser
|
|
cuser and cuser.admin?
|
|
end
|
|
|
|
def can_destroy? cuser
|
|
cuser and cuser.admin?
|
|
end
|
|
|
|
def last_page
|
|
[((posts.count - 1) / POSTS_PAGE) + 1, 1].max
|
|
end
|
|
|
|
def states
|
|
{STATE_NORMAL => "Normal", STATE_STICKY => "Sticky"}
|
|
end
|
|
|
|
def self.params(params, cuser)
|
|
params.require(:topic).permit(:state, :title, :forum_id, :user_id, :first_post)
|
|
end
|
|
end
|