discourse/lib/system_message.rb

71 lines
2.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 self.create_from_system_user(recipient, type, params = {})
self.new(recipient).create_from_system_user(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)
title = I18n.t("system_messages.#{type}.subject_template", params)
2014-02-12 23:09:26 -05:00
raw = I18n.t("system_messages.#{type}.text_body_template", params)
2013-02-05 14:16:51 -05:00
creator = PostCreator.new(Discourse.site_contact_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,
subtype: TopicSubtype.system_message,
skip_validations: true)
post = creator.create
if creator.errors.present?
raise StandardError, creator.errors.full_messages.join(" ")
end
UserArchivedMessage.create!(user: Discourse.site_contact_user, topic: post.topic)
post
2013-02-05 14:16:51 -05:00
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,
skip_validations: true)
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.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