docbrown/app/models/badge_achievement.rb
Andy Zhao a1010201f2 Notifications part 2 (#1156)
* Remove stream and add new notification views

* Actually remove Stream

* Move followers query to async method

* Remove unused tests and fix query

* Try using without delay instead

* Add without delay and escape HTML

* Make all tests pending for now
2018-11-19 18:14:24 -05:00

41 lines
1.1 KiB
Ruby

class BadgeAchievement < ApplicationRecord
belongs_to :user
belongs_to :badge
belongs_to :rewarder, class_name: "User", optional: true
counter_culture :user, column_name: "badge_achievements_count"
validates :badge_id, uniqueness: { scope: :user_id }
after_create :notify_recipient
after_create :send_email_notification
before_validation :render_rewarding_context_message_html
def render_rewarding_context_message_html
return if rewarding_context_message_markdown.blank?
parsed_markdown = MarkdownParser.new(rewarding_context_message_markdown)
html = parsed_markdown.finalize
final_html = ActionController::Base.helpers.sanitize html,
tags: %w(strong em i b u a code),
attributes: %w(href name)
self.rewarding_context_message = final_html
end
def name_of_user
user.name
end
private
def notify_recipient
Notification.send_new_badge_notification(self)
end
def send_email_notification
if user.class.name == "User" && user.email.present? && user.email_badge_notifications
NotifyMailer.new_badge_email(self).deliver
end
end
handle_asynchronously :send_email_notification
end