discourse/lib/system_message.rb

60 lines
1.8 KiB
Ruby

# Handle sending a message to a user from the system.
require_dependency 'post_creator'
require_dependency 'topic_subtype'
require_dependency 'discourse'
class SystemMessage
def self.create(recipient, type, params = {})
self.new(recipient).create(type, params)
end
def self.create_from_system_user(recipient, type, params = {})
self.new(recipient).create_from_system_user(type, params)
end
def initialize(recipient)
@recipient = recipient
end
def create(type, params = {})
params = defaults.merge(params)
title = I18n.t("system_messages.#{type}.subject_template", params)
raw = I18n.t("system_messages.#{type}.text_body_template", params)
PostCreator.create(Discourse.site_contact_user,
title: title,
raw: raw,
archetype: Archetype.private_message,
target_usernames: @recipient.username,
subtype: TopicSubtype.system_message)
end
def create_from_system_user(type, params = {})
params = defaults.merge(params)
title = I18n.t("system_messages.#{type}.subject_template", params)
raw = I18n.t("system_messages.#{type}.text_body_template", params)
PostCreator.create(Discourse.system_user,
title: title,
raw: raw,
archetype: Archetype.private_message,
target_usernames: @recipient.username,
subtype: TopicSubtype.system_message)
end
def defaults
{
site_name: SiteSetting.title,
username: @recipient.username,
user_preferences_url: "#{Discourse.base_url}/users/#{@recipient.username_lower}/preferences",
new_user_tips: SiteText.text_for(:usage_tips),
site_password: "",
base_url: Discourse.base_url,
}
end
end