2013-02-06 03:16:51 +08:00
|
|
|
require_dependency 'markdown_linker'
|
2013-06-11 04:46:08 +08:00
|
|
|
require_dependency 'email/message_builder'
|
2013-07-23 03:06:37 +08:00
|
|
|
require_dependency 'age_words'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
class UserNotifications < ActionMailer::Base
|
2015-01-29 03:56:18 +08:00
|
|
|
helper :application
|
2013-04-26 14:56:28 +08:00
|
|
|
default charset: 'UTF-8'
|
|
|
|
|
2013-06-11 04:46:08 +08:00
|
|
|
include Email::BuildEmailHelper
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def signup(user, opts={})
|
2013-06-11 04:46:08 +08:00
|
|
|
build_email(user.email,
|
2013-06-13 04:35:46 +08:00
|
|
|
template: "user_notifications.signup",
|
|
|
|
email_token: opts[:email_token])
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-06-06 11:16:31 +08:00
|
|
|
def signup_after_approval(user, opts={})
|
2013-06-11 04:46:08 +08:00
|
|
|
build_email(user.email,
|
2013-06-13 04:35:46 +08:00
|
|
|
template: 'user_notifications.signup_after_approval',
|
|
|
|
email_token: opts[:email_token],
|
2015-11-24 05:45:05 +08:00
|
|
|
new_user_tips: I18n.t('system_messages.usage_tips.text_body_template', base_url: Discourse.base_url))
|
2013-06-06 11:16:31 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def authorize_email(user, opts={})
|
2016-02-04 02:27:58 +08:00
|
|
|
build_email(user.email,
|
|
|
|
template: "user_notifications.authorize_email",
|
|
|
|
email_token: opts[:email_token])
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def forgot_password(user, opts={})
|
2016-02-04 02:27:58 +08:00
|
|
|
build_email(user.email,
|
|
|
|
template: user.has_password? ? "user_notifications.forgot_password" : "user_notifications.set_password",
|
|
|
|
email_token: opts[:email_token])
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2015-04-27 18:59:48 +08:00
|
|
|
|
|
|
|
def admin_login(user, opts={})
|
2016-02-04 02:27:58 +08:00
|
|
|
build_email(user.email,
|
|
|
|
template: "user_notifications.admin_login",
|
|
|
|
email_token: opts[:email_token])
|
2015-04-27 18:59:48 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2014-09-12 00:47:17 +08:00
|
|
|
def account_created(user, opts={})
|
2016-02-04 02:27:58 +08:00
|
|
|
build_email(user.email,
|
|
|
|
template: "user_notifications.account_created",
|
|
|
|
email_token: opts[:email_token])
|
2014-09-12 00:47:17 +08:00
|
|
|
end
|
|
|
|
|
2015-05-26 23:59:32 +08:00
|
|
|
def short_date(dt)
|
2015-11-14 04:45:52 +08:00
|
|
|
if dt.year == Time.now.year
|
2016-01-29 02:06:36 +08:00
|
|
|
I18n.l(dt, format: :short_no_year)
|
2015-10-29 00:45:07 +08:00
|
|
|
else
|
2016-01-29 02:06:36 +08:00
|
|
|
I18n.l(dt, format: :date_only)
|
2015-10-29 00:45:07 +08:00
|
|
|
end
|
2015-05-26 23:59:32 +08:00
|
|
|
end
|
2014-04-18 04:42:40 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def digest(user, opts={})
|
|
|
|
@user = user
|
|
|
|
@base_url = Discourse.base_url
|
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
min_date = opts[:since] || @user.last_emailed_at || @user.last_seen_at || 1.month.ago
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2015-06-04 00:49:51 +08:00
|
|
|
@site_name = SiteSetting.email_prefix.presence || SiteSetting.title
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2014-07-18 00:31:37 +08:00
|
|
|
@header_color = ColorScheme.hex_for_name('header_background')
|
2015-05-26 23:59:32 +08:00
|
|
|
@last_seen_at = short_date(@user.last_seen_at || @user.created_at)
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-06-04 04:12:24 +08:00
|
|
|
# A list of topics to show the user
|
2014-04-22 02:44:00 +08:00
|
|
|
@featured_topics = Topic.for_digest(user, min_date, limit: SiteSetting.digest_topics, top_order: true).to_a
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Don't send email unless there is content in it
|
2013-08-10 02:43:02 +08:00
|
|
|
if @featured_topics.present?
|
2014-04-18 04:42:40 +08:00
|
|
|
featured_topic_ids = @featured_topics.map(&:id)
|
2014-04-18 04:04:26 +08:00
|
|
|
|
2014-04-18 04:42:40 +08:00
|
|
|
@new_topics_since_seen = Topic.new_since_last_seen(user, min_date, featured_topic_ids).count
|
2014-11-08 06:16:52 +08:00
|
|
|
if @new_topics_since_seen > SiteSetting.digest_topics
|
2014-04-18 04:42:40 +08:00
|
|
|
category_counts = Topic.new_since_last_seen(user, min_date, featured_topic_ids).group(:category_id).count
|
2013-11-30 02:00:10 +08:00
|
|
|
|
2014-04-18 04:42:40 +08:00
|
|
|
@new_by_category = []
|
|
|
|
if category_counts.present?
|
|
|
|
Category.where(id: category_counts.keys).each do |c|
|
|
|
|
@new_by_category << [c, category_counts[c.id]]
|
|
|
|
end
|
|
|
|
@new_by_category.sort_by! {|c| -c[1]}
|
|
|
|
end
|
|
|
|
end
|
2014-04-18 04:04:26 +08:00
|
|
|
|
2014-04-18 04:42:40 +08:00
|
|
|
@featured_topics, @new_topics = @featured_topics[0..4], @featured_topics[5..-1]
|
|
|
|
@markdown_linker = MarkdownLinker.new(Discourse.base_url)
|
2015-02-14 03:15:49 +08:00
|
|
|
@unsubscribe_key = DigestUnsubscribeKey.create_key_for(@user)
|
2014-04-18 04:04:26 +08:00
|
|
|
|
2013-06-11 04:46:08 +08:00
|
|
|
build_email user.email,
|
2013-06-13 04:35:46 +08:00
|
|
|
from_alias: I18n.t('user_notifications.digest.from', site_name: SiteSetting.title),
|
|
|
|
subject: I18n.t('user_notifications.digest.subject_template',
|
2015-05-26 23:59:32 +08:00
|
|
|
site_name: @site_name,
|
|
|
|
date: short_date(Time.now))
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-06-13 04:35:46 +08:00
|
|
|
def user_replied(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
2014-09-29 13:16:55 +08:00
|
|
|
opts[:use_site_subject] = true
|
2014-10-03 19:44:08 +08:00
|
|
|
opts[:show_category_in_subject] = true
|
2013-06-13 04:35:46 +08:00
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_quoted(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
2014-09-29 13:16:55 +08:00
|
|
|
opts[:use_site_subject] = true
|
2014-10-03 19:44:08 +08:00
|
|
|
opts[:show_category_in_subject] = true
|
2013-06-13 04:35:46 +08:00
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2016-02-17 01:29:23 +08:00
|
|
|
def user_linked(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
|
|
|
opts[:use_site_subject] = true
|
|
|
|
opts[:show_category_in_subject] = true
|
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2013-06-13 04:35:46 +08:00
|
|
|
def user_mentioned(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
2014-09-29 13:16:55 +08:00
|
|
|
opts[:use_site_subject] = true
|
2014-10-03 19:44:08 +08:00
|
|
|
opts[:show_category_in_subject] = true
|
2013-06-13 04:35:46 +08:00
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2015-12-01 09:12:55 +08:00
|
|
|
def group_mentioned(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
|
|
|
opts[:use_site_subject] = true
|
|
|
|
opts[:show_category_in_subject] = true
|
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2013-06-13 04:35:46 +08:00
|
|
|
def user_posted(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
2014-09-29 13:16:55 +08:00
|
|
|
opts[:use_site_subject] = true
|
|
|
|
opts[:add_re_to_subject] = true
|
2014-10-03 19:44:08 +08:00
|
|
|
opts[:show_category_in_subject] = true
|
2013-06-13 04:35:46 +08:00
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2013-08-08 01:02:49 +08:00
|
|
|
def user_private_message(user, opts)
|
|
|
|
opts[:allow_reply_by_email] = true
|
2014-09-29 13:16:55 +08:00
|
|
|
opts[:use_site_subject] = true
|
|
|
|
opts[:add_re_to_subject] = true
|
2014-10-03 19:44:08 +08:00
|
|
|
opts[:show_category_in_subject] = false
|
2013-08-08 01:02:49 +08:00
|
|
|
|
|
|
|
# We use the 'user_posted' event when you are emailed a post in a PM.
|
2014-06-16 14:36:02 +08:00
|
|
|
opts[:notification_type] = 'posted'
|
2013-08-08 01:02:49 +08:00
|
|
|
|
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2015-04-07 14:21:38 +08:00
|
|
|
def user_invited_to_private_message(user, opts)
|
|
|
|
opts[:use_template_html] = true
|
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2015-03-31 02:36:47 +08:00
|
|
|
def user_invited_to_topic(user, opts)
|
2015-04-07 14:21:38 +08:00
|
|
|
opts[:use_template_html] = true
|
2015-03-31 02:36:47 +08:00
|
|
|
opts[:show_category_in_subject] = true
|
|
|
|
notification_email(user, opts)
|
|
|
|
end
|
|
|
|
|
2014-02-07 08:06:35 +08:00
|
|
|
def mailing_list_notify(user, post)
|
2016-02-04 02:27:58 +08:00
|
|
|
opts = {
|
2014-02-07 08:06:35 +08:00
|
|
|
post: post,
|
|
|
|
allow_reply_by_email: true,
|
2014-09-29 13:16:55 +08:00
|
|
|
use_site_subject: true,
|
|
|
|
add_re_to_subject: true,
|
2014-10-03 19:44:08 +08:00
|
|
|
show_category_in_subject: true,
|
2014-02-07 08:06:35 +08:00
|
|
|
notification_type: "posted",
|
2016-02-04 02:27:58 +08:00
|
|
|
notification_data_hash: {
|
|
|
|
original_username: post.user.username,
|
|
|
|
topic_title: post.topic.title,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
notification_email(user, opts)
|
2014-02-07 08:06:35 +08:00
|
|
|
end
|
|
|
|
|
2013-06-13 04:35:46 +08:00
|
|
|
protected
|
|
|
|
|
2013-07-23 03:06:37 +08:00
|
|
|
def email_post_markdown(post)
|
|
|
|
result = "[email-indent]\n"
|
|
|
|
result << "#{post.raw}\n\n"
|
2013-07-24 15:13:15 +08:00
|
|
|
result << "#{I18n.t('user_notifications.posted_by', username: post.username, post_date: post.created_at.strftime("%m/%d/%Y"))}\n\n"
|
2013-07-23 03:06:37 +08:00
|
|
|
result << "[/email-indent]\n"
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2013-07-24 15:13:15 +08:00
|
|
|
class UserNotificationRenderer < ActionView::Base
|
|
|
|
include UserNotificationsHelper
|
|
|
|
end
|
|
|
|
|
2014-01-31 13:37:40 +08:00
|
|
|
def self.get_context_posts(post, topic_user)
|
2016-02-12 19:10:30 +08:00
|
|
|
allowed_post_types = [Post.types[:regular]]
|
|
|
|
allowed_post_types << Post.types[:whisper] if topic_user.try(:user).try(:staff?)
|
|
|
|
|
2014-01-31 13:37:40 +08:00
|
|
|
context_posts = Post.where(topic_id: post.topic_id)
|
|
|
|
.where("post_number < ?", post.post_number)
|
|
|
|
.where(user_deleted: false)
|
|
|
|
.where(hidden: false)
|
2016-02-12 19:10:30 +08:00
|
|
|
.where(post_type: allowed_post_types)
|
2014-01-31 13:37:40 +08:00
|
|
|
.order('created_at desc')
|
|
|
|
.limit(SiteSetting.email_posts_context)
|
|
|
|
|
|
|
|
if topic_user && topic_user.last_emailed_post_number
|
|
|
|
context_posts = context_posts.where("post_number > ?", topic_user.last_emailed_post_number)
|
|
|
|
end
|
|
|
|
|
|
|
|
context_posts
|
|
|
|
end
|
|
|
|
|
2013-06-13 04:35:46 +08:00
|
|
|
def notification_email(user, opts)
|
2016-02-04 02:27:58 +08:00
|
|
|
notification_type = opts[:notification_type]
|
|
|
|
notification_data = opts[:notification_data_hash]
|
|
|
|
post = opts[:post]
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2016-01-27 09:19:49 +08:00
|
|
|
unless String === notification_type
|
|
|
|
if Numeric === notification_type
|
|
|
|
notification_type = Notification.types[notification_type]
|
|
|
|
end
|
|
|
|
notification_type = notification_type.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
user_name = notification_data[:original_username]
|
|
|
|
|
|
|
|
if post && SiteSetting.enable_names && SiteSetting.display_name_on_email_from
|
|
|
|
name = User.where(id: post.user_id).pluck(:name).first
|
2015-05-06 10:55:33 +08:00
|
|
|
user_name = name unless name.blank?
|
2014-10-21 22:06:55 +08:00
|
|
|
end
|
|
|
|
|
2016-01-27 09:19:49 +08:00
|
|
|
title = notification_data[:topic_title]
|
2014-05-07 03:01:19 +08:00
|
|
|
allow_reply_by_email = opts[:allow_reply_by_email] unless user.suspended?
|
2014-09-29 13:16:55 +08:00
|
|
|
use_site_subject = opts[:use_site_subject]
|
|
|
|
add_re_to_subject = opts[:add_re_to_subject]
|
2014-10-03 19:44:08 +08:00
|
|
|
show_category_in_subject = opts[:show_category_in_subject]
|
2015-04-07 14:21:38 +08:00
|
|
|
use_template_html = opts[:use_template_html]
|
2016-01-27 09:19:49 +08:00
|
|
|
original_username = notification_data[:original_username] || notification_data[:display_username]
|
2014-02-07 08:06:35 +08:00
|
|
|
|
|
|
|
send_notification_email(
|
|
|
|
title: title,
|
2016-01-27 09:19:49 +08:00
|
|
|
post: post,
|
2015-03-31 02:36:47 +08:00
|
|
|
username: original_username,
|
2014-10-21 22:06:55 +08:00
|
|
|
from_alias: user_name,
|
2014-02-07 08:06:35 +08:00
|
|
|
allow_reply_by_email: allow_reply_by_email,
|
2014-09-29 13:16:55 +08:00
|
|
|
use_site_subject: use_site_subject,
|
|
|
|
add_re_to_subject: add_re_to_subject,
|
2014-10-03 19:44:08 +08:00
|
|
|
show_category_in_subject: show_category_in_subject,
|
2014-02-07 08:06:35 +08:00
|
|
|
notification_type: notification_type,
|
2015-04-07 14:21:38 +08:00
|
|
|
use_template_html: use_template_html,
|
2014-02-07 08:06:35 +08:00
|
|
|
user: user
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def send_notification_email(opts)
|
|
|
|
post = opts[:post]
|
|
|
|
title = opts[:title]
|
|
|
|
allow_reply_by_email = opts[:allow_reply_by_email]
|
2014-09-29 13:16:55 +08:00
|
|
|
use_site_subject = opts[:use_site_subject]
|
|
|
|
add_re_to_subject = opts[:add_re_to_subject] && post.post_number > 1
|
2014-10-21 22:06:55 +08:00
|
|
|
username = opts[:username]
|
2014-02-07 08:06:35 +08:00
|
|
|
from_alias = opts[:from_alias]
|
|
|
|
notification_type = opts[:notification_type]
|
|
|
|
user = opts[:user]
|
|
|
|
|
2014-10-03 19:44:08 +08:00
|
|
|
# category name
|
|
|
|
category = Topic.find_by(id: post.topic_id).category
|
2015-06-01 13:43:16 +08:00
|
|
|
if opts[:show_category_in_subject] && post.topic_id && category && !category.uncategorized?
|
2014-10-03 19:44:08 +08:00
|
|
|
show_category_in_subject = category.name
|
|
|
|
|
|
|
|
# subcategory case
|
|
|
|
if !category.parent_category_id.nil?
|
|
|
|
show_category_in_subject = "#{Category.find_by(id: category.parent_category_id).name}/#{show_category_in_subject}"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
show_category_in_subject = nil
|
|
|
|
end
|
|
|
|
|
2013-07-23 03:06:37 +08:00
|
|
|
context = ""
|
2014-02-07 08:06:35 +08:00
|
|
|
tu = TopicUser.get(post.topic_id, user)
|
|
|
|
context_posts = self.class.get_context_posts(post, tu)
|
2013-12-30 10:02:12 +08:00
|
|
|
|
|
|
|
# make .present? cheaper
|
|
|
|
context_posts = context_posts.to_a
|
|
|
|
|
2013-07-23 03:06:37 +08:00
|
|
|
if context_posts.present?
|
2016-02-12 01:48:09 +08:00
|
|
|
context << "-- \n*#{I18n.t('user_notifications.previous_discussion')}*\n"
|
2013-07-23 03:06:37 +08:00
|
|
|
context_posts.each do |cp|
|
|
|
|
context << email_post_markdown(cp)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-07 14:21:38 +08:00
|
|
|
topic_excerpt = ""
|
|
|
|
if opts[:use_template_html]
|
|
|
|
topic_excerpt = post.excerpt.gsub("\n", " ") if post.is_first_post? && post.excerpt
|
|
|
|
else
|
|
|
|
html = UserNotificationRenderer.new(Rails.configuration.paths["app/views"]).render(
|
|
|
|
template: 'email/notification',
|
|
|
|
format: :html,
|
|
|
|
locals: { context_posts: context_posts,
|
|
|
|
post: post,
|
|
|
|
classes: RTL.new(user).css_class
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
2013-07-24 15:13:15 +08:00
|
|
|
|
2014-01-21 14:24:05 +08:00
|
|
|
template = "user_notifications.user_#{notification_type}"
|
2015-12-10 02:45:46 +08:00
|
|
|
if post.topic.private_message?
|
|
|
|
template << "_pm"
|
|
|
|
template << "_staged" if user.staged?
|
|
|
|
end
|
2013-07-24 15:13:15 +08:00
|
|
|
|
2013-02-28 07:30:14 +08:00
|
|
|
email_opts = {
|
2014-02-07 08:06:35 +08:00
|
|
|
topic_title: title,
|
2015-04-07 14:21:38 +08:00
|
|
|
topic_excerpt: topic_excerpt,
|
2014-02-07 08:06:35 +08:00
|
|
|
message: email_post_markdown(post),
|
|
|
|
url: post.url,
|
|
|
|
post_id: post.id,
|
|
|
|
topic_id: post.topic_id,
|
2013-07-23 03:06:37 +08:00
|
|
|
context: context,
|
2014-10-21 22:06:55 +08:00
|
|
|
username: username,
|
2015-11-24 23:58:26 +08:00
|
|
|
add_unsubscribe_link: !user.staged,
|
2016-02-17 12:46:19 +08:00
|
|
|
add_unsubscribe_via_email_link: user.user_option.mailing_list_mode,
|
2015-08-13 05:00:16 +08:00
|
|
|
unsubscribe_url: post.topic.unsubscribe_url,
|
2014-02-07 08:06:35 +08:00
|
|
|
allow_reply_by_email: allow_reply_by_email,
|
2014-09-29 13:16:55 +08:00
|
|
|
use_site_subject: use_site_subject,
|
|
|
|
add_re_to_subject: add_re_to_subject,
|
2014-10-03 19:44:08 +08:00
|
|
|
show_category_in_subject: show_category_in_subject,
|
2014-06-06 21:09:00 +08:00
|
|
|
private_reply: post.topic.private_message?,
|
2014-05-07 03:01:19 +08:00
|
|
|
include_respond_instructions: !user.suspended?,
|
2014-01-21 14:24:05 +08:00
|
|
|
template: template,
|
2013-07-26 15:27:46 +08:00
|
|
|
html_override: html,
|
2015-04-07 14:21:38 +08:00
|
|
|
site_description: SiteSetting.site_description,
|
|
|
|
site_title: SiteSetting.title,
|
2014-01-21 14:24:05 +08:00
|
|
|
style: :notification
|
2013-02-28 07:30:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# If we have a display name, change the from address
|
2015-08-13 05:00:16 +08:00
|
|
|
email_opts[:from_alias] = from_alias if from_alias.present?
|
2013-02-28 07:30:14 +08:00
|
|
|
|
2014-02-07 08:06:35 +08:00
|
|
|
TopicUser.change(user.id, post.topic_id, last_emailed_post_number: post.post_number)
|
2013-12-30 10:02:12 +08:00
|
|
|
|
2013-06-11 04:46:08 +08:00
|
|
|
build_email(user.email, email_opts)
|
2013-02-07 23:45:24 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|