@@ -1,149 +1,149 | |||
|
1 |
# |
|
|
2 |
# Copyright (C) 2006-20 |
|
|
1 | # Redmine - project management software | |
|
2 | # Copyright (C) 2006-2011 Jean-Philippe Lang | |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 |
# |
|
|
8 | # | |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 |
# |
|
|
13 | # | |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
17 | 17 | |
|
18 | 18 | class MessagesController < ApplicationController |
|
19 | 19 | menu_item :boards |
|
20 | 20 | default_search_scope :messages |
|
21 | 21 | before_filter :find_board, :only => [:new, :preview] |
|
22 | 22 | before_filter :find_message, :except => [:new, :preview] |
|
23 | 23 | before_filter :authorize, :except => [:preview, :edit, :destroy] |
|
24 | 24 | |
|
25 | 25 | verify :method => :post, :only => [ :reply, :destroy ], :redirect_to => { :action => :show } |
|
26 | 26 | verify :xhr => true, :only => :quote |
|
27 | 27 | |
|
28 | 28 | helper :watchers |
|
29 | 29 | helper :attachments |
|
30 |
include AttachmentsHelper |
|
|
30 | include AttachmentsHelper | |
|
31 | 31 | |
|
32 | 32 | REPLIES_PER_PAGE = 25 unless const_defined?(:REPLIES_PER_PAGE) |
|
33 | ||
|
33 | ||
|
34 | 34 | # Show a topic and its replies |
|
35 | 35 | def show |
|
36 | 36 | page = params[:page] |
|
37 | 37 | # Find the page of the requested reply |
|
38 | 38 | if params[:r] && page.nil? |
|
39 | 39 | offset = @topic.children.count(:conditions => ["#{Message.table_name}.id < ?", params[:r].to_i]) |
|
40 | 40 | page = 1 + offset / REPLIES_PER_PAGE |
|
41 | 41 | end |
|
42 | ||
|
42 | ||
|
43 | 43 | @reply_count = @topic.children.count |
|
44 | 44 | @reply_pages = Paginator.new self, @reply_count, REPLIES_PER_PAGE, page |
|
45 | 45 | @replies = @topic.children.find(:all, :include => [:author, :attachments, {:board => :project}], |
|
46 | 46 | :order => "#{Message.table_name}.created_on ASC", |
|
47 | 47 | :limit => @reply_pages.items_per_page, |
|
48 | 48 | :offset => @reply_pages.current.offset) |
|
49 | ||
|
49 | ||
|
50 | 50 | @reply = Message.new(:subject => "RE: #{@message.subject}") |
|
51 | 51 | render :action => "show", :layout => false if request.xhr? |
|
52 | 52 | end |
|
53 | ||
|
53 | ||
|
54 | 54 | # Create a new topic |
|
55 | 55 | def new |
|
56 | 56 | @message = Message.new(params[:message]) |
|
57 | 57 | @message.author = User.current |
|
58 | 58 | @message.board = @board |
|
59 | 59 | if params[:message] && User.current.allowed_to?(:edit_messages, @project) |
|
60 | 60 | @message.locked = params[:message]['locked'] |
|
61 | 61 | @message.sticky = params[:message]['sticky'] |
|
62 | 62 | end |
|
63 | 63 | if request.post? && @message.save |
|
64 | 64 | call_hook(:controller_messages_new_after_save, { :params => params, :message => @message}) |
|
65 | 65 | attachments = Attachment.attach_files(@message, params[:attachments]) |
|
66 | 66 | render_attachment_warning_if_needed(@message) |
|
67 | 67 | redirect_to :action => 'show', :id => @message |
|
68 | 68 | end |
|
69 | 69 | end |
|
70 | 70 | |
|
71 | 71 | # Reply to a topic |
|
72 | 72 | def reply |
|
73 | 73 | @reply = Message.new(params[:reply]) |
|
74 | 74 | @reply.author = User.current |
|
75 | 75 | @reply.board = @board |
|
76 | 76 | @topic.children << @reply |
|
77 | 77 | if !@reply.new_record? |
|
78 | 78 | call_hook(:controller_messages_reply_after_save, { :params => params, :message => @reply}) |
|
79 | 79 | attachments = Attachment.attach_files(@reply, params[:attachments]) |
|
80 | 80 | render_attachment_warning_if_needed(@reply) |
|
81 | 81 | end |
|
82 | 82 | redirect_to :action => 'show', :id => @topic, :r => @reply |
|
83 | 83 | end |
|
84 | 84 | |
|
85 | 85 | # Edit a message |
|
86 | 86 | def edit |
|
87 | 87 | (render_403; return false) unless @message.editable_by?(User.current) |
|
88 | 88 | if params[:message] |
|
89 | 89 | @message.locked = params[:message]['locked'] |
|
90 | 90 | @message.sticky = params[:message]['sticky'] |
|
91 | 91 | end |
|
92 | 92 | if request.post? && @message.update_attributes(params[:message]) |
|
93 | 93 | attachments = Attachment.attach_files(@message, params[:attachments]) |
|
94 | 94 | render_attachment_warning_if_needed(@message) |
|
95 | 95 | flash[:notice] = l(:notice_successful_update) |
|
96 | 96 | @message.reload |
|
97 | 97 | redirect_to :action => 'show', :board_id => @message.board, :id => @message.root, :r => (@message.parent_id && @message.id) |
|
98 | 98 | end |
|
99 | 99 | end |
|
100 | ||
|
100 | ||
|
101 | 101 | # Delete a messages |
|
102 | 102 | def destroy |
|
103 | 103 | (render_403; return false) unless @message.destroyable_by?(User.current) |
|
104 | 104 | @message.destroy |
|
105 | 105 | redirect_to @message.parent.nil? ? |
|
106 | 106 | { :controller => 'boards', :action => 'show', :project_id => @project, :id => @board } : |
|
107 | 107 | { :action => 'show', :id => @message.parent, :r => @message } |
|
108 | 108 | end |
|
109 | ||
|
109 | ||
|
110 | 110 | def quote |
|
111 | 111 | user = @message.author |
|
112 | 112 | text = @message.content |
|
113 | 113 | subject = @message.subject.gsub('"', '\"') |
|
114 | 114 | subject = "RE: #{subject}" unless subject.starts_with?('RE:') |
|
115 | 115 | content = "#{ll(Setting.default_language, :text_user_wrote, user)}\\n> " |
|
116 | 116 | content << text.to_s.strip.gsub(%r{<pre>((.|\s)*?)</pre>}m, '[...]').gsub('"', '\"').gsub(/(\r?\n|\r\n?)/, "\\n> ") + "\\n\\n" |
|
117 | 117 | render(:update) { |page| |
|
118 | 118 | page << "$('reply_subject').value = \"#{subject}\";" |
|
119 | 119 | page.<< "$('message_content').value = \"#{content}\";" |
|
120 | 120 | page.show 'reply' |
|
121 | 121 | page << "Form.Element.focus('message_content');" |
|
122 | 122 | page << "Element.scrollTo('reply');" |
|
123 | 123 | page << "$('message_content').scrollTop = $('message_content').scrollHeight - $('message_content').clientHeight;" |
|
124 | 124 | } |
|
125 | 125 | end |
|
126 | ||
|
126 | ||
|
127 | 127 | def preview |
|
128 | 128 | message = @board.messages.find_by_id(params[:id]) |
|
129 | 129 | @attachements = message.attachments if message |
|
130 | 130 | @text = (params[:message] || params[:reply])[:content] |
|
131 | 131 | render :partial => 'common/preview' |
|
132 | 132 | end |
|
133 | ||
|
133 | ||
|
134 | 134 | private |
|
135 | 135 | def find_message |
|
136 | 136 | find_board |
|
137 | 137 | @message = @board.messages.find(params[:id], :include => :parent) |
|
138 | 138 | @topic = @message.root |
|
139 | 139 | rescue ActiveRecord::RecordNotFound |
|
140 | 140 | render_404 |
|
141 | 141 | end |
|
142 | ||
|
142 | ||
|
143 | 143 | def find_board |
|
144 | 144 | @board = Board.find(params[:board_id], :include => :project) |
|
145 | 145 | @project = @board.project |
|
146 | 146 | rescue ActiveRecord::RecordNotFound |
|
147 | 147 | render_404 |
|
148 | 148 | end |
|
149 | 149 | end |
General Comments 0
You need to be logged in to leave comments.
Login now