discourse/lib/system_message.rb

43 lines
1.2 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
# Handle sending a message to a user from the system.
require_dependency 'post_creator'
require_dependency 'topic_subtype'
require_dependency 'discourse'
2013-02-05 14:16:51 -05:00
class SystemMessage
def self.create(recipient, type, params = {})
self.new(recipient).create(type, params)
end
def initialize(recipient)
2013-02-25 11:42:20 -05:00
@recipient = recipient
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
def create(type, params = {})
2013-02-05 14:16:51 -05:00
defaults = {site_name: SiteSetting.title,
username: @recipient.username,
user_preferences_url: "#{Discourse.base_url}/users/#{@recipient.username_lower}/preferences",
new_user_tips: SiteContent.content_for(:usage_tips),
site_password: "",
base_url: Discourse.base_url}
2013-02-05 14:16:51 -05:00
params = defaults.merge(params)
2013-02-25 11:42:20 -05:00
title = I18n.t("system_messages.#{type}.subject_template", params)
raw_body = I18n.t("system_messages.#{type}.text_body_template", params)
2013-02-05 14:16:51 -05:00
PostCreator.create(Discourse.site_contact_user,
2013-02-05 14:16:51 -05:00
raw: raw_body,
title: title,
archetype: Archetype.private_message,
subtype: TopicSubtype.system_message,
2013-02-05 14:16:51 -05:00
target_usernames: @recipient.username)
end
2013-02-05 14:16:51 -05:00
end