1 class MessageController < ApplicationController
4 before_filter :authorize_web
5 before_filter :set_locale
6 before_filter :require_user
7 before_filter :lookup_this_user, :only => [:new]
8 before_filter :check_database_readable
9 before_filter :check_database_writable, :only => [:new, :reply, :mark]
11 # Allow the user to write a new message to another user. This action also
12 # deals with the sending of that message to the other user when the user
14 # The display_name param is the display name of the user that the message is being sent to.
17 if @user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= MAX_MESSAGES_PER_HOUR
18 flash[:error] = t 'message.new.limit_exceeded'
20 @message = Message.new(params[:message])
21 @message.to_user_id = @this_user.id
22 @message.from_user_id = @user.id
23 @message.sent_on = Time.now.getutc
26 flash[:notice] = t 'message.new.message_sent'
27 Notifier.message_notification(@message).deliver
28 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
32 @title = t 'message.new.title'
36 # Allow the user to reply to another message.
38 message = Message.find(params[:message_id])
40 if message.to_user_id == @user.id then
41 @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}"
42 @title = @subject = "Re: #{message.title.sub(/^Re:\s*/, '')}"
43 @this_user = User.find(message.from_user_id)
45 render :action => 'new'
47 flash[:notice] = t 'message.reply.wrong_user', :user => @user.display_name
48 redirect_to :controller => "user", :action => "login", :referer => request.fullpath
50 rescue ActiveRecord::RecordNotFound
51 @title = t'message.no_such_message.title'
52 render :action => 'no_such_message', :status => :not_found
57 @title = t 'message.read.title'
58 @message = Message.find(params[:message_id])
60 if @message.to_user_id == @user.id or @message.from_user_id == @user.id then
61 @message.message_read = true if @message.to_user_id == @user.id
64 flash[:notice] = t 'message.read.wrong_user', :user => @user.display_name
65 redirect_to :controller => "user", :action => "login", :referer => request.fullpath
67 rescue ActiveRecord::RecordNotFound
68 @title = t'message.no_such_message.title'
69 render :action => 'no_such_message', :status => :not_found
72 # Display the list of messages that have been sent to the user.
74 @title = t 'message.inbox.title'
75 if @user and params[:display_name] == @user.display_name
77 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
81 # Display the list of messages that the user has sent to other users.
83 @title = t 'message.outbox.title'
84 if @user and params[:display_name] == @user.display_name
86 redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
90 # Set the message as being read or unread.
92 @message = Message.where("to_user_id = ? OR from_user_id = ?", @user.id, @user.id).find(params[:message_id])
93 if params[:mark] == 'unread'
95 notice = t 'message.mark.as_unread'
98 notice = t 'message.mark.as_read'
100 @message.message_read = message_read
103 flash[:notice] = notice
104 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
107 rescue ActiveRecord::RecordNotFound
108 @title = t'message.no_such_message.title'
109 render :action => 'no_such_message', :status => :not_found
112 # Delete the message.
114 message = Message.where("to_user_id = ? OR from_user_id = ?", @user.id, @user.id).find(params[:message_id])
115 message.from_user_visible = false if message.sender == @user
116 message.to_user_visible = false if message.recipient == @user
118 flash[:notice] = t 'message.delete.deleted'
121 redirect_to params[:referer]
123 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
126 rescue ActiveRecord::RecordNotFound
127 @title = t'message.no_such_message.title'
128 render :action => 'no_such_message', :status => :not_found