scinote-web/app/models/comment.rb

105 lines
3 KiB
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class Comment < ActiveRecord::Base
include SearchableModel
auto_strip_attributes :message, nullify: false
validates :message,
presence: true,
length: { maximum: Constants::TEXT_MAX_LENGTH }
2016-02-12 23:52:43 +08:00
validates :user, presence: true
validate :belongs_to_only_one_object
belongs_to :user, inverse_of: :comments
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User'
2016-08-24 20:00:30 +08:00
has_one :step_comment, inverse_of: :comment, dependent: :destroy
has_one :my_module_comment, inverse_of: :comment, dependent: :destroy
has_one :result_comment, inverse_of: :comment, dependent: :destroy
has_one :sample_comment, inverse_of: :comment, dependent: :destroy
has_one :project_comment, inverse_of: :comment, dependent: :destroy
2016-02-12 23:52:43 +08:00
def self.search(
user,
include_archived,
query = nil,
page = 1
)
project_ids =
Project
.search(user, include_archived, nil, Constants::SEARCH_NO_LIMIT)
2016-02-12 23:52:43 +08:00
.select("id")
my_module_ids =
MyModule
.search(user, include_archived, nil, Constants::SEARCH_NO_LIMIT)
2016-02-12 23:52:43 +08:00
.select("id")
step_ids =
Step
.search(user, include_archived, nil, Constants::SEARCH_NO_LIMIT)
2016-02-12 23:52:43 +08:00
.select("id")
result_ids =
Result
.search(user, include_archived, nil, Constants::SEARCH_NO_LIMIT)
2016-02-12 23:52:43 +08:00
.select("id")
2016-07-21 19:11:15 +08:00
if query
a_query = query.strip
.gsub("_","\\_")
.gsub("%","\\%")
.split(/\s+/)
.map {|t| "%" + t + "%" }
else
a_query = query
end
2016-02-12 23:52:43 +08:00
new_query = Comment
.distinct
.joins(:user)
.joins("LEFT JOIN project_comments ON project_comments.comment_id = comments.id")
.joins("LEFT JOIN my_module_comments ON my_module_comments.comment_id = comments.id")
.joins("LEFT JOIN step_comments ON step_comments.comment_id = comments.id")
.joins("LEFT JOIN result_comments ON result_comments.comment_id = comments.id")
.where(
"project_comments.project_id IN (?) OR " +
"my_module_comments.my_module_id IN (?) OR " +
"step_comments.step_id IN (?) OR " +
"result_comments.result_id IN (?)",
project_ids,
my_module_ids,
step_ids,
result_ids
)
.where_attributes_like(
[ :message, "users.full_name" ],
2016-07-21 19:11:15 +08:00
a_query
2016-02-12 23:52:43 +08:00
)
# Show all results if needed
if page == Constants::SEARCH_NO_LIMIT
2016-02-12 23:52:43 +08:00
new_query
else
new_query
.limit(Constants::SEARCH_LIMIT)
.offset((page - 1) * Constants::SEARCH_LIMIT)
2016-02-12 23:52:43 +08:00
end
end
private
def belongs_to_only_one_object
# We must allow all elements to be blank because of GUI
# (eventhough it's not really a "valid" comment)
cntr = 0
cntr += 1 if step_comment.present?
cntr += 1 if my_module_comment.present?
cntr += 1 if result_comment.present?
cntr += 1 if sample_comment.present?
cntr += 1 if project_comment.present?
if cntr > 1
errors.add(:base, "Comment can only belong to 1 'parent' object.")
end
end
end