2014-10-23 11:30:34 +08:00
|
|
|
|
# Redmine - project management software
|
|
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
class CommentsController < ApplicationController
|
|
|
|
|
default_search_scope :news
|
2015-04-03 11:19:15 +08:00
|
|
|
|
include ApplicationHelper
|
2014-10-23 11:30:34 +08:00
|
|
|
|
model_object News
|
2015-09-01 16:37:43 +08:00
|
|
|
|
before_filter :find_model_object
|
2014-10-23 11:30:34 +08:00
|
|
|
|
before_filter :find_project_from_association
|
|
|
|
|
before_filter :authorize
|
|
|
|
|
|
|
|
|
|
def create
|
|
|
|
|
raise Unauthorized unless @news.commentable?
|
|
|
|
|
|
|
|
|
|
@comment = Comment.new
|
2015-04-08 18:15:58 +08:00
|
|
|
|
@project ? @comment.comments = params[:comment][:comments] : @comment.comments = params[:comment]
|
2014-10-23 11:30:34 +08:00
|
|
|
|
@comment.author = User.current
|
|
|
|
|
if @news.comments << @comment
|
2015-04-03 16:35:46 +08:00
|
|
|
|
if params[:asset_id]
|
|
|
|
|
ids = params[:asset_id].split(',')
|
|
|
|
|
update_kindeditor_assets_owner ids,@comment.id,OwnerTypeHelper::COMMENT
|
|
|
|
|
end
|
2015-09-02 11:20:21 +08:00
|
|
|
|
# # <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ض<EFBFBD>̬<EFBFBD>ļ<EFBFBD>¼add start
|
|
|
|
|
# if( @comment.id && @news.course )
|
|
|
|
|
# if(@news.author_id != User.current.id)
|
|
|
|
|
# notify = ActivityNotify.new()
|
|
|
|
|
# notify.activity_container_id = @news.course.id
|
|
|
|
|
# notify.activity_container_type = 'Course'
|
|
|
|
|
# notify.activity_id = @comment.id
|
|
|
|
|
# notify.activity_type = 'Comment'
|
|
|
|
|
# notify.notify_to = @news.author_id
|
|
|
|
|
# notify.is_read = 0
|
|
|
|
|
# notify.save()
|
|
|
|
|
# end
|
|
|
|
|
# end
|
|
|
|
|
# # <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ض<EFBFBD>̬<EFBFBD>ļ<EFBFBD>¼add end
|
2014-10-23 11:30:34 +08:00
|
|
|
|
flash[:notice] = l(:label_comment_added)
|
|
|
|
|
end
|
|
|
|
|
|
2015-09-01 16:37:43 +08:00
|
|
|
|
if params[:user_activity_id]
|
|
|
|
|
@user_activity_id = params[:user_activity_id]
|
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.js
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
redirect_to news_url(@news)
|
|
|
|
|
end
|
2014-10-23 11:30:34 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
|
@news.comments.find(params[:comment_id]).destroy
|
|
|
|
|
redirect_to news_url(@news)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
# ApplicationController's find_model_object sets it based on the controller
|
|
|
|
|
# name so it needs to be overriden and set to @news instead
|
|
|
|
|
def find_model_object
|
|
|
|
|
super
|
|
|
|
|
@news = @object
|
|
|
|
|
@comment = nil
|
|
|
|
|
@news
|
|
|
|
|
end
|
2015-09-01 16:37:43 +08:00
|
|
|
|
|
|
|
|
|
|
2014-10-23 11:30:34 +08:00
|
|
|
|
end
|