1 class Notifier < ActionMailer::Base
2 default :from => EMAIL_FROM,
3 :return_path => EMAIL_RETURN_PATH,
4 :auto_submitted => "auto-generated"
6 before_action :set_shared_template_vars
8 def signup_confirm(user, token)
9 with_recipient_locale user do
10 @url = url_for(:host => SERVER_URL,
11 :controller => "user", :action => "confirm",
12 :display_name => user.display_name,
13 :confirm_string => token.token)
15 mail :to => user.email,
16 :subject => I18n.t("notifier.signup_confirm.subject")
20 def email_confirm(user, token)
21 with_recipient_locale user do
22 @address = user.new_email
23 @url = url_for(:host => SERVER_URL,
24 :controller => "user", :action => "confirm_email",
25 :confirm_string => token.token)
27 mail :to => user.new_email,
28 :subject => I18n.t("notifier.email_confirm.subject")
32 def lost_password(user, token)
33 with_recipient_locale user do
34 @url = url_for(:host => SERVER_URL,
35 :controller => "user", :action => "reset_password",
36 :token => token.token)
38 mail :to => user.email,
39 :subject => I18n.t("notifier.lost_password.subject")
43 def gpx_success(trace, possible_points)
44 with_recipient_locale trace.user do
45 @trace_name = trace.name
46 @trace_points = trace.size
47 @trace_description = trace.description
48 @trace_tags = trace.tags
49 @possible_points = possible_points
51 mail :to => trace.user.email,
52 :subject => I18n.t("notifier.gpx_notification.success.subject")
56 def gpx_failure(trace, error)
57 with_recipient_locale trace.user do
58 @trace_name = trace.name
59 @trace_description = trace.description
60 @trace_tags = trace.tags
63 mail :to => trace.user.email,
64 :subject => I18n.t("notifier.gpx_notification.failure.subject")
68 def message_notification(message)
69 with_recipient_locale message.recipient do
70 @to_user = message.recipient.display_name
71 @from_user = message.sender.display_name
73 @title = message.title
74 @readurl = url_for(:host => SERVER_URL,
75 :controller => "message", :action => "read",
76 :message_id => message.id)
77 @replyurl = url_for(:host => SERVER_URL,
78 :controller => "message", :action => "reply",
79 :message_id => message.id)
80 @user_message_author = @from_user
82 attach_user_avatar(message.sender)
84 mail :from => from_address(message.sender.display_name, "m", message.id, message.digest),
85 :to => message.recipient.email,
86 :subject => I18n.t("notifier.message_notification.subject_header", :subject => message.title)
90 def diary_comment_notification(comment, recipient)
91 with_recipient_locale recipient do
92 @to_user = recipient.display_name
93 @from_user = comment.user.display_name
95 @title = comment.diary_entry.title
96 @readurl = url_for(:host => SERVER_URL,
97 :controller => "diary_entry",
99 :display_name => comment.diary_entry.user.display_name,
100 :id => comment.diary_entry.id,
101 :anchor => "comment#{comment.id}")
102 @commenturl = url_for(:host => SERVER_URL,
103 :controller => "diary_entry",
105 :display_name => comment.diary_entry.user.display_name,
106 :id => comment.diary_entry.id,
107 :anchor => "newcomment")
108 @replyurl = url_for(:host => SERVER_URL,
109 :controller => "message",
111 :display_name => comment.user.display_name,
112 :title => "Re: #{comment.diary_entry.title}")
113 @user_message_author = @from_user
115 attach_user_avatar(comment.user)
117 mail :from => from_address(comment.user.display_name, "c", comment.id, comment.digest, recipient.id),
118 :to => recipient.email,
119 :subject => I18n.t("notifier.diary_comment_notification.subject", :user => comment.user.display_name)
123 def friend_notification(friend)
124 with_recipient_locale friend.befriendee do
126 @viewurl = url_for(:host => SERVER_URL,
127 :controller => "user", :action => "view",
128 :display_name => @friend.befriender.display_name)
129 @friendurl = url_for(:host => SERVER_URL,
130 :controller => "user", :action => "make_friend",
131 :display_name => @friend.befriender.display_name)
133 mail :to => friend.befriendee.email,
134 :subject => I18n.t("notifier.friend_notification.subject", :user => friend.befriender.display_name)
138 def note_comment_notification(comment, recipient)
139 with_recipient_locale recipient do
140 @noteurl = browse_note_url(comment.note, :host => SERVER_URL)
141 @place = Nominatim.describe_location(comment.note.lat, comment.note.lon, 14, I18n.locale)
142 @comment = comment.body
143 @owner = recipient == comment.note.author
144 @event = comment.event
146 @commenter = if comment.author
147 comment.author.display_name
149 I18n.t("notifier.note_comment_notification.anonymous")
153 I18n.t("notifier.note_comment_notification.#{@event}.subject_own", :commenter => @commenter)
155 I18n.t("notifier.note_comment_notification.#{@event}.subject_other", :commenter => @commenter)
158 mail :to => recipient.email, :subject => subject
162 def changeset_comment_notification(comment, recipient)
163 with_recipient_locale recipient do
164 @to_user = recipient.display_name
165 @changeset_url = changeset_url(comment.changeset, :host => SERVER_URL)
166 @comment = comment.body
167 @owner = recipient == comment.changeset.user
168 @commenter = comment.author.display_name
169 @changeset_comment = comment.changeset.tags["comment"].presence
170 @time = comment.created_at
171 @changeset_author = comment.changeset.user.display_name
172 @user_message_author = @commenter
175 I18n.t("notifier.changeset_comment_notification.commented.subject_own", :commenter => @commenter)
177 I18n.t("notifier.changeset_comment_notification.commented.subject_other", :commenter => @commenter)
181 attach_user_avatar(comment.author)
183 mail :to => recipient.email, :subject => subject
189 def set_shared_template_vars
190 @root_url = root_url(:host => SERVER_URL)
194 def attach_project_logo
195 attachments.inline["logo.png"] = File.read("#{Rails.root}/app/assets/images/osm_logo_30.png")
198 def attach_user_avatar(user)
199 attachments.inline["avatar.png"] = File.read(user_avatar_file_path(user))
202 def user_avatar_file_path(user)
205 return image.path(:small)
207 return "#{Rails.root}/app/assets/images/users/images/small.png"
211 def with_recipient_locale(recipient)
212 I18n.with_locale Locale.available.preferred(recipient.preferred_languages) do
217 def from_address(name, type, id, digest, user_id = nil)
218 if Object.const_defined?(:MESSAGES_DOMAIN) && domain = MESSAGES_DOMAIN
220 "#{name} <#{type}-#{id}-#{user_id}-#{digest[0, 6]}@#{domain}>"
222 "#{name} <#{type}-#{id}-#{digest[0, 6]}@#{domain}>"