2013-09-12 17:46:43 -04:00
|
|
|
class ComposerMessagesFinder
|
|
|
|
|
|
|
|
def initialize(user, details)
|
|
|
|
@user = user
|
|
|
|
@details = details
|
2015-11-27 13:29:44 -05:00
|
|
|
@topic = Topic.find_by(id: details[:topic_id]) if details[:topic_id]
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def find
|
2015-11-27 13:29:44 -05:00
|
|
|
check_reviving_old_topic ||
|
|
|
|
check_education_message ||
|
2013-12-19 13:45:55 -05:00
|
|
|
check_new_user_many_replies ||
|
2015-11-27 13:29:44 -05:00
|
|
|
check_avatar_notification ||
|
|
|
|
check_sequential_replies ||
|
2013-09-17 14:38:39 -04:00
|
|
|
check_dominating_topic
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Determines whether to show the user education text
|
|
|
|
def check_education_message
|
|
|
|
if creating_topic?
|
|
|
|
count = @user.created_topic_count
|
2015-11-27 17:00:26 -05:00
|
|
|
education_key = 'education.new-topic'
|
2013-09-12 17:46:43 -04:00
|
|
|
else
|
2013-09-14 00:32:18 -04:00
|
|
|
count = @user.post_count
|
2015-11-27 17:00:26 -05:00
|
|
|
education_key = 'education.new-reply'
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
2013-09-17 12:11:17 -04:00
|
|
|
if count < SiteSetting.educate_until_posts
|
2013-09-12 17:46:43 -04:00
|
|
|
education_posts_text = I18n.t('education.until_posts', count: SiteSetting.educate_until_posts)
|
2015-01-02 06:37:17 -05:00
|
|
|
return {
|
|
|
|
templateName: 'composer/education',
|
|
|
|
wait_for_typing: true,
|
2015-11-23 16:45:05 -05:00
|
|
|
body: PrettyText.cook(I18n.t(education_key, education_posts_text: education_posts_text))
|
2015-01-02 06:37:17 -05:00
|
|
|
}
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2013-12-19 13:45:55 -05:00
|
|
|
# New users have a limited number of replies in a topic
|
|
|
|
def check_new_user_many_replies
|
|
|
|
return unless replying? && @user.posted_too_much_in_topic?(@details[:topic_id])
|
2015-01-02 06:37:17 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
templateName: 'composer/education',
|
|
|
|
body: PrettyText.cook(I18n.t('education.too_many_replies', newuser_max_replies_per_topic: SiteSetting.newuser_max_replies_per_topic))
|
|
|
|
}
|
2013-12-19 13:45:55 -05:00
|
|
|
end
|
|
|
|
|
2013-09-12 17:46:43 -04:00
|
|
|
# Should a user be contacted to update their avatar?
|
|
|
|
def check_avatar_notification
|
|
|
|
|
|
|
|
# A user has to be basic at least to be considered for an avatar notification
|
2014-09-05 01:20:39 -04:00
|
|
|
return unless @user.has_trust_level?(TrustLevel[1])
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
# We don't notify users who have avatars or who have been notified already.
|
2014-05-22 03:37:02 -04:00
|
|
|
return if @user.uploaded_avatar_id || UserHistory.exists_for_user?(@user, :notified_about_avatar)
|
2013-09-12 17:46:43 -04:00
|
|
|
|
|
|
|
# If we got this far, log that we've nagged them about the avatar
|
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_avatar], target_user_id: @user.id )
|
|
|
|
|
|
|
|
# Return the message
|
2015-01-02 06:37:17 -05:00
|
|
|
{
|
|
|
|
templateName: 'composer/education',
|
|
|
|
body: PrettyText.cook(I18n.t('education.avatar', profile_path: "/users/#{@user.username_lower}"))
|
|
|
|
}
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
2013-09-13 13:49:34 -04:00
|
|
|
# Is a user replying too much in succession?
|
|
|
|
def check_sequential_replies
|
|
|
|
|
|
|
|
# We only care about replies to topics
|
|
|
|
return unless replying? && @details[:topic_id] &&
|
|
|
|
|
2013-09-14 00:32:18 -04:00
|
|
|
# And who have posted enough
|
2013-09-17 12:11:17 -04:00
|
|
|
(@user.post_count >= SiteSetting.educate_until_posts) &&
|
2013-09-13 13:49:34 -04:00
|
|
|
|
2015-11-27 13:29:44 -05:00
|
|
|
# And it's not a message
|
|
|
|
(@topic.present? && !@topic.private_message?) &&
|
|
|
|
|
2013-09-13 13:49:34 -04:00
|
|
|
# And who haven't been notified about sequential replies already
|
2013-09-17 14:38:39 -04:00
|
|
|
!UserHistory.exists_for_user?(@user, :notified_about_sequential_replies, topic_id: @details[:topic_id])
|
2013-09-13 13:49:34 -04:00
|
|
|
|
|
|
|
# Count the topics made by this user in the last day
|
|
|
|
recent_posts_user_ids = Post.where(topic_id: @details[:topic_id])
|
|
|
|
.where("created_at > ?", 1.day.ago)
|
|
|
|
.order('created_at desc')
|
|
|
|
.limit(SiteSetting.sequential_replies_threshold)
|
|
|
|
.pluck(:user_id)
|
|
|
|
|
|
|
|
# Did we get back as many posts as we asked for, and are they all by the current user?
|
|
|
|
return if recent_posts_user_ids.size != SiteSetting.sequential_replies_threshold ||
|
|
|
|
recent_posts_user_ids.detect {|u| u != @user.id }
|
|
|
|
|
|
|
|
# If we got this far, log that we've nagged them about the sequential replies
|
2013-09-17 14:38:39 -04:00
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_sequential_replies],
|
|
|
|
target_user_id: @user.id,
|
|
|
|
topic_id: @details[:topic_id] )
|
2013-09-13 13:49:34 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
{
|
|
|
|
templateName: 'composer/education',
|
|
|
|
wait_for_typing: true,
|
|
|
|
extraClass: 'urgent',
|
|
|
|
body: PrettyText.cook(I18n.t('education.sequential_replies'))
|
|
|
|
}
|
2013-09-13 13:49:34 -04:00
|
|
|
end
|
|
|
|
|
2013-09-17 14:38:39 -04:00
|
|
|
def check_dominating_topic
|
|
|
|
|
|
|
|
# We only care about replies to topics for a user who has posted enough
|
|
|
|
return unless replying? &&
|
|
|
|
@details[:topic_id] &&
|
|
|
|
(@user.post_count >= SiteSetting.educate_until_posts) &&
|
2014-02-06 19:19:45 -05:00
|
|
|
!UserHistory.exists_for_user?(@user, :notified_about_dominating_topic, topic_id: @details[:topic_id])
|
2013-09-17 14:38:39 -04:00
|
|
|
|
2015-11-27 13:29:44 -05:00
|
|
|
return if @topic.blank? ||
|
|
|
|
@topic.user_id == @user.id ||
|
|
|
|
@topic.posts_count < SiteSetting.summary_posts_required ||
|
|
|
|
@topic.private_message?
|
2013-09-17 14:38:39 -04:00
|
|
|
|
2015-11-27 13:29:44 -05:00
|
|
|
posts_by_user = @user.posts.where(topic_id: @topic.id).count
|
2013-09-17 14:38:39 -04:00
|
|
|
|
2015-11-27 13:29:44 -05:00
|
|
|
ratio = (posts_by_user.to_f / @topic.posts_count.to_f)
|
2013-09-17 14:38:39 -04:00
|
|
|
return if ratio < (SiteSetting.dominating_topic_minimum_percent.to_f / 100.0)
|
|
|
|
|
|
|
|
# Log the topic notification
|
2014-02-06 19:19:45 -05:00
|
|
|
UserHistory.create!(action: UserHistory.actions[:notified_about_dominating_topic],
|
2013-09-17 14:38:39 -04:00
|
|
|
target_user_id: @user.id,
|
|
|
|
topic_id: @details[:topic_id])
|
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
{
|
|
|
|
templateName: 'composer/education',
|
|
|
|
wait_for_typing: true,
|
|
|
|
extraClass: 'urgent',
|
|
|
|
body: PrettyText.cook(I18n.t('education.dominating_topic', percent: (ratio * 100).round))
|
|
|
|
}
|
2013-09-17 14:38:39 -04:00
|
|
|
end
|
|
|
|
|
2014-03-12 10:44:08 -04:00
|
|
|
def check_reviving_old_topic
|
2014-03-19 20:04:42 -04:00
|
|
|
return unless replying?
|
2015-11-27 13:29:44 -05:00
|
|
|
return if @topic.nil? ||
|
2014-03-12 10:44:08 -04:00
|
|
|
SiteSetting.warn_reviving_old_topic_age < 1 ||
|
2015-11-27 13:29:44 -05:00
|
|
|
@topic.last_posted_at.nil? ||
|
|
|
|
@topic.last_posted_at > SiteSetting.warn_reviving_old_topic_age.days.ago
|
2014-03-12 10:44:08 -04:00
|
|
|
|
2015-01-02 06:37:17 -05:00
|
|
|
{
|
|
|
|
templateName: 'composer/education',
|
|
|
|
wait_for_typing: false,
|
2015-11-25 06:01:17 -05:00
|
|
|
extraClass: 'old-topic',
|
2015-11-27 13:29:44 -05:00
|
|
|
body: PrettyText.cook(I18n.t('education.reviving_old_topic', days: (Time.zone.now - @topic.last_posted_at).round / 1.day))
|
2015-01-02 06:37:17 -05:00
|
|
|
}
|
2014-03-12 10:44:08 -04:00
|
|
|
end
|
|
|
|
|
2013-09-12 17:46:43 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def creating_topic?
|
2015-01-02 06:37:17 -05:00
|
|
|
@details[:composerAction] == "createTopic"
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def replying?
|
2015-01-02 06:37:17 -05:00
|
|
|
@details[:composerAction] == "reply"
|
2013-09-12 17:46:43 -04:00
|
|
|
end
|
|
|
|
|
2014-02-06 19:19:45 -05:00
|
|
|
end
|