forked from Gitlink/forgeplus
52 lines
1.9 KiB
Ruby
52 lines
1.9 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: message_templates
|
|
#
|
|
# id :integer not null, primary key
|
|
# type :string(255)
|
|
# sys_notice :text(65535)
|
|
# email :text(65535)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# notification_url :string(255)
|
|
# email_title :string(255)
|
|
#
|
|
|
|
# 账号被拉入组织
|
|
class MessageTemplate::OrganizationJoined < MessageTemplate
|
|
|
|
# MessageTemplate::OrganizationJoined.get_message_content(User.where(login: 'yystopf'), Organization.last)
|
|
def self.get_message_content(receivers, organization)
|
|
receivers.each do |receiver|
|
|
if receiver.user_template_message_setting.present?
|
|
receivers = receivers.where.not(id: receiver.id) unless receiver.user_template_message_setting.notification_body["Normal::Organization"]
|
|
end
|
|
end
|
|
return '', '', '' if receivers.blank?
|
|
content = sys_notice.gsub('{organization}', organization&.real_name)
|
|
url = notification_url.gsub('{login}', organization&.name)
|
|
return receivers_string(receivers), content, url
|
|
rescue => e
|
|
Rails.logger.info("MessageTemplate::OrganizationJoined.get_message_content [ERROR] #{e}")
|
|
return '', '', ''
|
|
end
|
|
|
|
def self.get_email_message_content(receiver, organization)
|
|
if receiver.user_template_message_setting.present?
|
|
return '', '', '' unless receiver.user_template_message_setting.email_body["Normal::Organization"]
|
|
end
|
|
title = email_title
|
|
title.gsub!('{organization}', organization&.real_name)
|
|
content = email
|
|
content.gsub!('{receiver}', receiver&.real_name)
|
|
content.gsub!('{baseurl}', base_url)
|
|
content.gsub!('{login}', organization&.login)
|
|
content.gsub!('{organization}', organization&.real_name)
|
|
|
|
return receiver&.mail, title, content
|
|
rescue => e
|
|
Rails.logger.info("MessageTemplate::OrganizationJoined.get_email_message_content [ERROR] #{e}")
|
|
return '', '', ''
|
|
end
|
|
end
|