2019-03-16 09:37:35 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2011-05-17 03:57:34 +00:00
|
|
|
# Redmine - project management software
|
2024-02-26 22:55:54 +00:00
|
|
|
# Copyright (C) 2006- Jean-Philippe Lang
|
2007-05-13 17:09:56 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-17 03:57:34 +00:00
|
|
|
#
|
2007-05-13 17:09:56 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
2011-05-17 03:57:34 +00:00
|
|
|
#
|
2007-05-13 17:09:56 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
2024-01-23 11:52:38 +00:00
|
|
|
class Message < ApplicationRecord
|
2012-03-06 19:46:59 +00:00
|
|
|
include Redmine::SafeAttributes
|
2025-05-11 07:59:16 +00:00
|
|
|
include Redmine::Reaction::Reactable
|
|
|
|
|
|
2007-05-13 17:09:56 +00:00
|
|
|
belongs_to :board
|
2014-10-22 18:41:03 +00:00
|
|
|
belongs_to :author, :class_name => 'User'
|
2007-05-13 17:09:56 +00:00
|
|
|
acts_as_tree :counter_cache => :replies_count, :order => "#{Message.table_name}.created_on ASC"
|
2008-12-09 16:54:46 +00:00
|
|
|
acts_as_attachable
|
2014-10-22 18:41:03 +00:00
|
|
|
belongs_to :last_reply, :class_name => 'Message'
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2007-09-27 22:24:09 +00:00
|
|
|
acts_as_searchable :columns => ['subject', 'content'],
|
2014-12-12 20:49:31 +00:00
|
|
|
:preload => {:board => :project},
|
|
|
|
|
:project_key => "#{Board.table_name}.project_id"
|
|
|
|
|
|
2020-10-27 15:18:01 +00:00
|
|
|
acts_as_event(
|
|
|
|
|
:title => Proc.new {|o| "#{o.board.name}: #{o.subject}"},
|
|
|
|
|
:description => :content,
|
|
|
|
|
:group => :parent,
|
|
|
|
|
:type => Proc.new {|o| o.parent_id.nil? ? 'message' : 'reply'},
|
|
|
|
|
:url =>
|
|
|
|
|
Proc.new do |o|
|
|
|
|
|
{:controller => 'messages', :action => 'show',
|
|
|
|
|
:board_id => o.board_id}.
|
|
|
|
|
merge(
|
|
|
|
|
if o.parent_id.nil?
|
|
|
|
|
{:id => o.id}
|
|
|
|
|
else
|
|
|
|
|
{:id => o.parent_id, :r => o.id, :anchor => "message-#{o.id}"}
|
|
|
|
|
end
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
)
|
2020-11-18 16:15:43 +00:00
|
|
|
acts_as_activity_provider :scope => proc {preload({:board => :project}, :author)},
|
2008-11-30 11:18:22 +00:00
|
|
|
:author_key => :author_id
|
2008-09-19 15:32:52 +00:00
|
|
|
acts_as_watchable
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2009-04-05 10:08:11 +00:00
|
|
|
validates_presence_of :board, :subject, :content
|
2007-05-13 17:09:56 +00:00
|
|
|
validates_length_of :subject, :maximum => 255
|
2011-10-01 01:11:39 +00:00
|
|
|
validate :cannot_reply_to_locked_topic, :on => :create
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2012-07-07 15:09:57 +00:00
|
|
|
after_create :add_author_as_watcher, :reset_counters!
|
2011-09-22 15:41:25 +00:00
|
|
|
after_update :update_messages_board
|
2012-07-07 15:09:57 +00:00
|
|
|
after_destroy :reset_counters!
|
2018-10-10 17:13:09 +00:00
|
|
|
after_create_commit :send_notification
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2020-11-10 11:10:16 +00:00
|
|
|
scope :visible, (lambda do |*args|
|
2014-10-22 17:37:16 +00:00
|
|
|
joins(:board => :project).
|
|
|
|
|
where(Project.allowed_to_condition(args.shift || User.current, :view_messages, *args))
|
2020-11-10 11:10:16 +00:00
|
|
|
end)
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2012-03-06 19:46:59 +00:00
|
|
|
safe_attributes 'subject', 'content'
|
2020-10-27 15:18:01 +00:00
|
|
|
safe_attributes(
|
|
|
|
|
'locked', 'sticky', 'board_id',
|
|
|
|
|
:if =>
|
|
|
|
|
lambda do |message, user|
|
|
|
|
|
user.allowed_to?(:edit_messages, message.project)
|
|
|
|
|
end
|
|
|
|
|
)
|
2009-12-13 12:39:22 +00:00
|
|
|
def visible?(user=User.current)
|
|
|
|
|
!user.nil? && user.allowed_to?(:view_messages, project)
|
|
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2011-10-01 01:11:39 +00:00
|
|
|
def cannot_reply_to_locked_topic
|
2007-11-24 12:25:07 +00:00
|
|
|
# Can not reply to a locked topic
|
2011-10-07 12:24:53 +00:00
|
|
|
errors.add :base, 'Topic is locked' if root.locked? && self != root
|
2007-11-24 12:25:07 +00:00
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2011-09-22 15:41:25 +00:00
|
|
|
def update_messages_board
|
2017-07-23 11:26:04 +00:00
|
|
|
if saved_change_to_board_id?
|
2014-01-08 03:51:50 +00:00
|
|
|
Message.where(["id = ? OR parent_id = ?", root.id, root.id]).update_all({:board_id => board_id})
|
2017-07-23 11:26:04 +00:00
|
|
|
Board.reset_counters!(board_id_before_last_save)
|
2009-04-05 10:08:11 +00:00
|
|
|
Board.reset_counters!(board_id)
|
2007-05-13 17:09:56 +00:00
|
|
|
end
|
|
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2012-07-07 15:09:57 +00:00
|
|
|
def reset_counters!
|
|
|
|
|
if parent && parent.id
|
2014-01-08 03:51:50 +00:00
|
|
|
Message.where({:id => parent.id}).update_all({:last_reply_id => parent.children.maximum(:id)})
|
2012-07-07 15:09:57 +00:00
|
|
|
end
|
2009-04-05 10:08:11 +00:00
|
|
|
board.reset_counters!
|
2007-11-24 12:25:07 +00:00
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2009-06-14 09:19:20 +00:00
|
|
|
def sticky=(arg)
|
|
|
|
|
write_attribute :sticky, (arg == true || arg.to_s == '1' ? 1 : 0)
|
|
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2007-11-24 12:25:07 +00:00
|
|
|
def sticky?
|
|
|
|
|
sticky == 1
|
|
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2007-05-26 15:42:37 +00:00
|
|
|
def project
|
|
|
|
|
board.project
|
|
|
|
|
end
|
2008-11-11 15:07:55 +00:00
|
|
|
|
|
|
|
|
def editable_by?(usr)
|
|
|
|
|
usr && usr.logged? && (usr.allowed_to?(:edit_messages, project) || (self.author == usr && usr.allowed_to?(:edit_own_messages, project)))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def destroyable_by?(usr)
|
|
|
|
|
usr && usr.logged? && (usr.allowed_to?(:delete_messages, project) || (self.author == usr && usr.allowed_to?(:delete_own_messages, project)))
|
|
|
|
|
end
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2015-01-17 14:14:12 +00:00
|
|
|
def notified_users
|
|
|
|
|
project.notified_users.reject {|user| !visible?(user)}
|
|
|
|
|
end
|
|
|
|
|
|
2008-09-19 15:32:52 +00:00
|
|
|
private
|
2011-05-17 03:57:34 +00:00
|
|
|
|
2008-09-19 15:32:52 +00:00
|
|
|
def add_author_as_watcher
|
|
|
|
|
Watcher.create(:watchable => self.root, :user => author)
|
|
|
|
|
end
|
2013-07-14 14:26:27 +00:00
|
|
|
|
|
|
|
|
def send_notification
|
|
|
|
|
if Setting.notified_events.include?('message_posted')
|
2018-10-10 17:13:09 +00:00
|
|
|
Mailer.deliver_message_posted(self)
|
2013-07-14 14:26:27 +00:00
|
|
|
end
|
|
|
|
|
end
|
2007-05-13 17:09:56 +00:00
|
|
|
end
|