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 user_id param is the id of the user that the message is being sent to.
 
  15     @title = t 'message.new.title'
 
  16     @to_user = User.find(params[:user_id])
 
  18       @message = Message.new(params[:message])
 
  19       @message.to_user_id = @to_user.id
 
  20       @message.from_user_id = @user.id
 
  21       @message.sent_on = Time.now.getutc
 
  24         flash[:notice] = t 'message.new.message_sent'
 
  25         Notifier::deliver_message_notification(@message)
 
  26         redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
 
  29       @title = params[:title]
 
  31   rescue ActiveRecord::RecordNotFound
 
  32     @title = t'message.no_such_user.title'
 
  33     render :action => 'no_such_user', :status => :not_found
 
  36   # Allow the user to reply to another message.
 
  38     message = Message.find(params[:message_id], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
 
  39     @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}" 
 
  40     @title = "Re: #{message.title.sub(/^Re:\s*/, '')}"
 
  41     @to_user = User.find(message.from_user_id)
 
  42     render :action => 'new'
 
  43   rescue ActiveRecord::RecordNotFound
 
  44     @title = t'message.no_such_user.title'
 
  45     render :action => 'no_such_user', :status => :not_found
 
  50     @title = t 'message.read.title'
 
  51     @message = Message.find(params[:message_id], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
 
  52     @message.message_read = true if @message.to_user_id == @user.id
 
  54   rescue ActiveRecord::RecordNotFound
 
  55     @title = t'message.no_such_user.title'
 
  56     render :action => 'no_such_user', :status => :not_found
 
  59   # Display the list of messages that have been sent to the user.
 
  61     @title = t 'message.inbox.title'
 
  62     if @user and params[:display_name] == @user.display_name
 
  64       redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
 
  68   # Display the list of messages that the user has sent to other users.
 
  70     @title = t 'message.outbox.title'
 
  71     if @user and params[:display_name] == @user.display_name
 
  73       redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
 
  77   # Set the message as being read or unread.
 
  79     if params[:message_id]
 
  80       id = params[:message_id]
 
  81       message = Message.find_by_id(id)
 
  82       if params[:mark] == 'unread'
 
  84         notice = t 'message.mark.as_unread'
 
  87         notice = t 'message.mark.as_read'
 
  89       message.message_read = message_read
 
  91         flash[:notice] = notice
 
  92         redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
 
  95   rescue ActiveRecord::RecordNotFound
 
  96     @title = t'message.no_such_user.title'
 
  97     render :action => 'no_such_user', :status => :not_found