]> git.openstreetmap.org Git - rails.git/blob - app/controllers/message_controller.rb
8f866e512c388fda530304d0da6a84f793268f73
[rails.git] / app / controllers / message_controller.rb
1 class MessageController < ApplicationController
2   layout 'site'
3
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]
8
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
11   # clicks send.
12   # The user_id param is the id of the user that the message is being sent to.
13   def new
14     @title = 'send message'
15     @to_user = User.find(params[:user_id])
16     if params[:message]
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
21    
22       if @message.save
23         flash[:notice] = 'Message sent'
24         Notifier::deliver_message_notification(@message)
25         redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
26       end
27     else
28       @title = params[:title]
29     end
30   rescue ActiveRecord::RecordNotFound
31     render :action => 'no_such_user', :status => :not_found
32   end
33
34   # Allow the user to reply to another message.
35   def reply
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     @user_id = message.from_user_id
40     @to_user = User.find(message.to_user_id)
41     render :action => 'new'
42   rescue ActiveRecord::RecordNotFound
43     render :action => 'no_such_user', :status => :not_found
44   end
45
46   # Show a message
47   def read
48     @title = 'read message'
49     @message = Message.find(params[:message_id], :conditions => ["to_user_id = ? or from_user_id = ?", @user.id, @user.id ])
50     @message.message_read = true if @message.to_user_id == @user.id
51     @message.save
52   rescue ActiveRecord::RecordNotFound
53     render :action => 'no_such_user', :status => :not_found
54   end
55
56   # Display the list of messages that have been sent to the user.
57   def inbox
58     @title = 'inbox'
59     if @user and params[:display_name] == @user.display_name
60     else
61       redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
62     end
63   end
64
65   # Display the list of messages that the user has sent to other users.
66   def outbox
67     @title = 'outbox'
68     if @user and params[:display_name] == @user.display_name
69     else
70       redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
71     end
72   end
73
74   # Set the message as being read or unread.
75   def mark
76     if params[:message_id]
77       id = params[:message_id]
78       message = Message.find_by_id(id)
79       if params[:mark] == 'unread'
80         message_read = false 
81         mark_type = 'unread'
82       else
83         message_read = true
84         mark_type = 'read'
85       end
86       message.message_read = message_read
87       if message.save
88         flash[:notice] = "Message marked as #{mark_type}"
89         redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
90       end
91     end
92   rescue ActiveRecord::RecordNotFound
93     render :action => 'no_such_user', :status => :not_found
94   end
95 end