discourse/lib/system_message.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
2.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
# Handle sending a message to a user from the system.
class SystemMessage
def self.create(recipient, type, params = {})
self.new(recipient).create(type, params)
end
def self.create_from_system_user(recipient, type, params = {})
params = params.merge(from_system: true)
self.new(recipient).create(type, params)
end
2013-02-05 14:16:51 -05:00
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
params = defaults.merge(params)
from_system = params[:from_system] || false
title = I18n.with_locale(@recipient.effective_locale) { I18n.t("system_messages.#{type}.subject_template", params) }
raw = I18n.with_locale(@recipient.effective_locale) { I18n.t("system_messages.#{type}.text_body_template", params) }
2013-02-05 14:16:51 -05:00
if from_system
user = Discourse.system_user
target_group_names = nil
else
user = Discourse.site_contact_user
target_group_names = Group.exists?(name: SiteSetting.site_contact_group_name) ? SiteSetting.site_contact_group_name : nil
end
2013-02-05 14:16:51 -05:00
creator = PostCreator.new(user,
2013-02-05 14:16:51 -05:00
title: title,
2014-02-12 23:09:26 -05:00
raw: raw,
2013-02-05 14:16:51 -05:00
archetype: Archetype.private_message,
2014-02-12 23:09:26 -05:00
target_usernames: @recipient.username,
target_group_names: target_group_names,
subtype: TopicSubtype.system_message,
skip_validations: true)
post = I18n.with_locale(@recipient.effective_locale) { creator.create }
if creator.errors.present?
raise StandardError, creator.errors.full_messages.join(" ")
end
unless from_system
UserArchivedMessage.create!(user: Discourse.site_contact_user, topic: post.topic)
end
post
2013-02-05 14:16:51 -05:00
end
2014-02-12 23:09:26 -05:00
def defaults
{
site_name: SiteSetting.title,
username: @recipient.username,
2017-03-28 14:27:54 -04:00
user_preferences_url: "#{Discourse.base_url}/u/#{@recipient.username_lower}/preferences",
new_user_tips: I18n.with_locale(@recipient.effective_locale) { I18n.t('system_messages.usage_tips.text_body_template', base_url: Discourse.base_url) },
2014-02-12 23:09:26 -05:00
site_password: "",
base_url: Discourse.base_url,
}
end
2013-02-05 14:16:51 -05:00
end