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.count(:conditions => ["sent_on >= ?", Time.now.getutc - 1.hour]) >= APP_CONFIG['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::deliver_message_notification(@message)
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], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
51 @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}"
52 @title = @subject = "Re: #{message.title.sub(/^Re:\s*/, '')}"
53 @to_user = User.find(message.from_user_id)
54 render :action => 'new'
55 rescue ActiveRecord::RecordNotFound
56 @title = t'message.no_such_user.title'
57 render :action => 'no_such_user', :status => :not_found
62 @title = t 'message.read.title'
63 @message = Message.find(params[:message_id], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
64 @message.message_read = true if @message.to_user_id == @user.id
66 rescue ActiveRecord::RecordNotFound
67 @title = t'message.no_such_user.title'
68 render :action => 'no_such_user', :status => :not_found
71 # Display the list of messages that have been sent to the user.
73 @title = t 'message.inbox.title'
74 if @user and params[:display_name] == @user.display_name
76 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
80 # Display the list of messages that the user has sent to other users.
82 @title = t 'message.outbox.title'
83 if @user and params[:display_name] == @user.display_name
85 redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
89 # Set the message as being read or unread.
91 if params[:message_id]
92 id = params[:message_id]
93 message = Message.find_by_id(id)
94 if params[:mark] == 'unread'
96 notice = t 'message.mark.as_unread'
99 notice = t 'message.mark.as_read'
101 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_user.title'
109 render :action => 'no_such_user', :status => :not_found
112 # Delete the message.
114 if params[:message_id]
115 id = params[:message_id]
116 message = Message.find_by_id(id)
117 message.from_user_visible = false if message.sender == @user
118 message.to_user_visible = false if message.recipient == @user
120 flash[:notice] = t 'message.delete.deleted'
123 redirect_to params[:referer]
125 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
129 rescue ActiveRecord::RecordNotFound
130 @title = t'message.no_such_user.title'
131 render :action => 'no_such_user', :status => :not_found