]> git.openstreetmap.org Git - rails.git/blob - app/controllers/message_controller.rb
Use one "no_such_user" view everywhere
[rails.git] / app / controllers / message_controller.rb
1 class MessageController < ApplicationController
2   layout 'site'
3
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]
9
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
12   # clicks send.
13   # The display_name param is the display name of the user that the message is being sent to.
14   def new
15     @to_user = User.find_by_display_name(params[:display_name])
16     if @to_user
17       if params[:message]
18         if @user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= MAX_MESSAGES_PER_HOUR
19           flash[:error] = t 'message.new.limit_exceeded'
20         else
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
25
26           if @message.save
27             flash[:notice] = t 'message.new.message_sent'
28             Notifier.message_notification(@message).deliver
29             redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
30           end
31         end
32       else
33         if params[:title]
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]
37         else
38           # The default /message/new/$user view
39           @title = t 'message.new.title'
40         end
41       end
42     else
43       render_unknown_user params[:display_name]
44     end
45   end
46
47   # Allow the user to reply to another message.
48   def reply
49     message = Message.find(params[:message_id])
50
51     if message.to_user_id == @user.id then
52       @body = "On #{message.sent_on} #{message.sender.display_name} wrote:\n\n#{message.body.gsub(/^/, '> ')}" 
53       @title = @subject = "Re: #{message.title.sub(/^Re:\s*/, '')}"
54       @to_user = User.find(message.from_user_id)
55
56       render :action => 'new'
57     else
58       flash[:notice] = t 'message.reply.wrong_user', :user => @user.display_name
59       redirect_to :controller => "user", :action => "login", :referer => request.fullpath
60     end
61   rescue ActiveRecord::RecordNotFound
62     @title = t'message.no_such_message.title'
63     render :action => 'no_such_message', :status => :not_found
64   end
65
66   # Show a message
67   def read
68     @title = t 'message.read.title'
69     @message = Message.find(params[:message_id])
70
71     if @message.to_user_id == @user.id or @message.from_user_id == @user.id then
72       @message.message_read = true if @message.to_user_id == @user.id
73       @message.save
74     else
75       flash[:notice] = t 'message.read.wrong_user', :user => @user.display_name
76       redirect_to :controller => "user", :action => "login", :referer => request.fullpath
77     end
78   rescue ActiveRecord::RecordNotFound
79     @title = t'message.no_such_message.title'
80     render :action => 'no_such_message', :status => :not_found
81   end
82
83   # Display the list of messages that have been sent to the user.
84   def inbox
85     @title = t 'message.inbox.title'
86     if @user and params[:display_name] == @user.display_name
87     else
88       redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
89     end
90   end
91
92   # Display the list of messages that the user has sent to other users.
93   def outbox
94     @title = t 'message.outbox.title'
95     if @user and params[:display_name] == @user.display_name
96     else
97       redirect_to :controller => 'message', :action => 'outbox', :display_name => @user.display_name
98     end
99   end
100
101   # Set the message as being read or unread.
102   def mark
103     if params[:message_id]
104       id = params[:message_id]
105       @message = Message.where(:id => id).where("to_user_id = ? OR from_user_id = ?", @user.id, @user.id).first
106       if params[:mark] == 'unread'
107         message_read = false 
108         notice = t 'message.mark.as_unread'
109       else
110         message_read = true
111         notice = t 'message.mark.as_read'
112       end
113       @message.message_read = message_read
114       if @message.save
115         if not request.xhr?
116           flash[:notice] = notice
117           redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
118         end
119       end
120     end
121   rescue ActiveRecord::RecordNotFound
122     @title = t'message.no_such_message.title'
123     render :action => 'no_such_message', :status => :not_found
124   end
125
126   # Delete the message.
127   def delete
128     if params[:message_id]
129       id = params[:message_id]
130       message = Message.where(:id => id).where("to_user_id = ? OR from_user_id = ?", @user.id, @user.id).first
131       message.from_user_visible = false if message.sender == @user
132       message.to_user_visible = false if message.recipient == @user
133       if message.save
134         flash[:notice] = t 'message.delete.deleted'
135
136         if params[:referer]
137           redirect_to params[:referer]
138         else
139           redirect_to :controller => 'message', :action => 'inbox', :display_name => @user.display_name
140         end
141       end
142     end
143   rescue ActiveRecord::RecordNotFound
144     @title = t'message.no_such_message.title'
145     render :action => 'no_such_message', :status => :not_found
146   end
147 end