- common_headers friend.befriendee
- subject I18n.t('notifier.friend_notification.subject', :user => friend.befriender.display_name, :locale => locale)
- body :friend => friend
- end
-
- def bug_comment_notification(bug_comment, recipient)
- common_headers recipient
- commenter_name = bug_comment.user.display_name if bug_comment.user
- commenter_name = bug_comment.commenter_name unless bug_comment.user
- owner = (recipient == bug_comment.map_bug.map_bug_comment[0].user);
- subject I18n.t('notifier.map_bug_plain.subject_own', :commenter => commenter_name) if owner
- subject I18n.t('notifier.map_bug_plain.subject_other', :commenter => commenter_name) unless owner
-
- body :bugurl => url_for(:host => SERVER_URL,
- :controller => "browse",
- :action => "bug",
- :id => bug_comment.bug_id),
- :place => bug_comment.map_bug.nearby_place,
- :comment => bug_comment.comment,
- :owner => owner,
- :commenter => commenter_name
- end
-
-private
-
- def common_headers(recipient)
- recipients recipient.email
- locale recipient.preferred_language_from(I18n.available_locales)
- from EMAIL_FROM
- headers "return-path" => EMAIL_RETURN_PATH,
- "Auto-Submitted" => "auto-generated"
- end
-
- def from_header(name, type, id, digest)
- if domain = MESSAGES_DOMAIN
- from quote_address_if_necessary("#{name} <#{type}-#{id}-#{digest[0,6]}@#{domain}>", "utf-8")
+ with_recipient_locale friend.befriendee do
+ @friend = friend
+ @viewurl = url_for(:host => SERVER_URL,
+ :controller => "user", :action => "view",
+ :display_name => @friend.befriender.display_name)
+ @friendurl = url_for(:host => SERVER_URL,
+ :controller => "user", :action => "make_friend",
+ :display_name => @friend.befriender.display_name)
+ @author = @friend.befriender.display_name
+
+ attach_user_avatar(@friend.befriender)
+ mail :to => friend.befriendee.email,
+ :subject => I18n.t("notifier.friend_notification.subject", :user => friend.befriender.display_name)
+ end
+ end
+
+ def note_comment_notification(comment, recipient)
+ with_recipient_locale recipient do
+ @noteurl = browse_note_url(comment.note, :host => SERVER_URL)
+ @place = Nominatim.describe_location(comment.note.lat, comment.note.lon, 14, I18n.locale)
+ @comment = comment.body
+ @owner = recipient == comment.note.author
+ @event = comment.event
+
+ @commenter = if comment.author
+ comment.author.display_name
+ else
+ I18n.t("notifier.note_comment_notification.anonymous")
+ end
+
+ @author = @commenter
+ attach_user_avatar(comment.author)
+
+ subject = if @owner
+ I18n.t("notifier.note_comment_notification.#{@event}.subject_own", :commenter => @commenter)
+ else
+ I18n.t("notifier.note_comment_notification.#{@event}.subject_other", :commenter => @commenter)
+ end
+
+ mail :to => recipient.email, :subject => subject
+ end
+ end
+
+ def changeset_comment_notification(comment, recipient)
+ with_recipient_locale recipient do
+ @changeset_url = changeset_url(comment.changeset, :host => SERVER_URL)
+ @comment = comment.body
+ @owner = recipient == comment.changeset.user
+ @commenter = comment.author.display_name
+ @changeset_comment = comment.changeset.tags["comment"].presence
+ @time = comment.created_at
+ @changeset_author = comment.changeset.user.display_name
+ @author = @commenter
+
+ subject = if @owner
+ I18n.t("notifier.changeset_comment_notification.commented.subject_own", :commenter => @commenter)
+ else
+ I18n.t("notifier.changeset_comment_notification.commented.subject_other", :commenter => @commenter)
+ end
+
+ attach_user_avatar(comment.author)
+
+ mail :to => recipient.email, :subject => subject
+ end
+ end
+
+ private
+
+ def set_shared_template_vars
+ @root_url = root_url(:host => SERVER_URL)
+ end
+
+ def attach_project_logo
+ attachments.inline["logo.png"] = File.read(Rails.root.join("app", "assets", "images", "osm_logo_30.png"))
+ end
+
+ def attach_user_avatar(user)
+ attachments.inline["avatar.png"] = File.read(user_avatar_file_path(user))
+ end
+
+ def user_avatar_file_path(user)
+ image = user && user.image
+ if image && image.file?
+ return image.path(:small)
+ else
+ return Rails.root.join("app", "assets", "images", "users", "images", "small.png")
+ end
+ end
+
+ def with_recipient_locale(recipient)
+ I18n.with_locale Locale.available.preferred(recipient.preferred_languages) do
+ yield
+ end
+ end
+
+ def from_address(name, type, id, digest, user_id = nil)
+ if Object.const_defined?(:MESSAGES_DOMAIN) && domain = MESSAGES_DOMAIN
+ if user_id
+ "#{name} <#{type}-#{id}-#{user_id}-#{digest[0, 6]}@#{domain}>"
+ else
+ "#{name} <#{type}-#{id}-#{digest[0, 6]}@#{domain}>"
+ end
+ else
+ EMAIL_FROM