1 class MessageController < ApplicationController
4 before_filter :authorize_web
5 before_filter :set_locale
6 before_filter :require_user
7 before_filter :check_database_readable
8 before_filter :check_database_writable, :only => [:new, :reply, :mark]
10 # Allow the user to write a new message to another user. This action also
11 # deals with the sending of that message to the other user when the user
13 # The display_name param is the display name of the user that the message is being sent to.
15 @to_user = User.find_by_display_name(params[:display_name])
18 if @user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= MAX_MESSAGES_PER_HOUR
19 flash[:error] = t 'message.new.limit_exceeded'
21 @message = Message.new(params[:message])
22 @message.to_user_id = @to_user.id
23 @message.from_user_id = @user.id
24 @message.sent_on = Time.now.getutc
27 flash[:notice] = t 'message.new.message_sent'
28 Notifier.message_notification(@message).deliver
29 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
34 # ?title= is set when someone reponds to this user's diary
35 # entry. Then we pre-fill out the subject and the <title>
36 @title = @subject = params[:title]
38 # The default /message/new/$user view
39 @title = t 'message.new.title'
43 @title = t'message.no_such_user.title'
44 render :action => 'no_such_user', :status => :not_found
48 # Allow the user to reply to another message.
50 message = Message.find(params[:message_id])
52 if message.to_user_id == @user.id then
53 @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}"
54 @title = @subject = "Re: #{message.title.sub(/^Re:\s*/, '')}"
55 @to_user = User.find(message.from_user_id)
57 render :action => 'new'
59 flash[:notice] = t 'message.reply.wrong_user', :user => @user.display_name
60 redirect_to :controller => "user", :action => "login", :referer => request.fullpath
62 rescue ActiveRecord::RecordNotFound
63 @title = t'message.no_such_message.title'
64 render :action => 'no_such_message', :status => :not_found
69 @title = t 'message.read.title'
70 @message = Message.find(params[:message_id])
72 if @message.to_user_id == @user.id or @message.from_user_id == @user.id then
73 @message.message_read = true if @message.to_user_id == @user.id
76 flash[:notice] = t 'message.read.wrong_user', :user => @user.display_name
77 redirect_to :controller => "user", :action => "login", :referer => request.fullpath
79 rescue ActiveRecord::RecordNotFound
80 @title = t'message.no_such_message.title'
81 render :action => 'no_such_message', :status => :not_found
84 # Display the list of messages that have been sent to the user.
86 @title = t 'message.inbox.title'
87 if @user and params[:display_name] == @user.display_name
89 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
93 # Display the list of messages that the user has sent to other users.
95 @title = t 'message.outbox.title'
96 if @user and params[:display_name] == @user.display_name
98 redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
102 # Set the message as being read or unread.
104 if params[:message_id]
105 id = params[:message_id]
106 @message = Message.where(:id => id).where("to_user_id = ? OR from_user_id = ?", @user.id, @user.id).first
107 if params[:mark] == 'unread'
109 notice = t 'message.mark.as_unread'
112 notice = t 'message.mark.as_read'
114 @message.message_read = message_read
117 flash[:notice] = notice
118 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
122 rescue ActiveRecord::RecordNotFound
123 @title = t'message.no_such_message.title'
124 render :action => 'no_such_message', :status => :not_found
127 # Delete the message.
129 if params[:message_id]
130 id = params[:message_id]
131 message = Message.where(:id => id).where("to_user_id = ? OR from_user_id = ?", @user.id, @user.id).first
132 message.from_user_visible = false if message.sender == @user
133 message.to_user_visible = false if message.recipient == @user
135 flash[:notice] = t 'message.delete.deleted'
138 redirect_to params[:referer]
140 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
144 rescue ActiveRecord::RecordNotFound
145 @title = t'message.no_such_message.title'
146 render :action => 'no_such_message', :status => :not_found