1 class MessageController < ApplicationController
4 before_filter :authorize_web
5 before_filter :require_user
6 before_filter :check_database_readable
7 before_filter :check_database_writable, :only => [:new, :reply, :mark]
9 # Allow the user to write a new message to another user. This action also
10 # deals with the sending of that message to the other user when the user
12 # The user_id param is the id of the user that the message is being sent to.
14 @title = 'send message'
15 @to_user = User.find(params[:user_id])
17 @message = Message.new(params[:message])
18 @message.to_user_id = @to_user.id
19 @message.from_user_id = @user.id
20 @message.sent_on = Time.now.getutc
23 flash[:notice] = 'Message sent'
24 Notifier::deliver_message_notification(@message)
25 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
28 @title = params[:title]
30 rescue ActiveRecord::RecordNotFound
31 render :action => 'no_such_user', :status => :not_found
34 # Allow the user to reply to another message.
36 message = Message.find(params[:message_id], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
37 @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}"
38 @title = "Re: #{message.title.sub(/^Re:\s*/, '')}"
39 @to_user = User.find(message.from_user_id)
40 render :action => 'new'
41 rescue ActiveRecord::RecordNotFound
42 render :action => 'no_such_user', :status => :not_found
47 @title = 'read message'
48 @message = Message.find(params[:message_id], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
49 @message.message_read = true if @message.to_user_id == @user.id
51 rescue ActiveRecord::RecordNotFound
52 render :action => 'no_such_user', :status => :not_found
55 # Display the list of messages that have been sent to the user.
58 if @user and params[:display_name] == @user.display_name
60 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
64 # Display the list of messages that the user has sent to other users.
67 if @user and params[:display_name] == @user.display_name
69 redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
73 # Set the message as being read or unread.
75 if params[:message_id]
76 id = params[:message_id]
77 message = Message.find_by_id(id)
78 if params[:mark] == 'unread'
85 message.message_read = message_read
87 flash[:notice] = "Message marked as #{mark_type}"
88 redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
91 rescue ActiveRecord::RecordNotFound
92 render :action => 'no_such_user', :status => :not_found