2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-06-11 03:33:37 +08:00
|
|
|
module Email
|
|
|
|
class Renderer
|
|
|
|
def initialize(message, opts = nil)
|
|
|
|
@message = message
|
|
|
|
@opts = opts || {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def text
|
2013-11-29 06:20:56 +08:00
|
|
|
return @text if @text
|
2018-06-05 15:29:17 +08:00
|
|
|
@text =
|
|
|
|
(+(@message.text_part ? @message.text_part : @message).body.to_s).force_encoding("UTF-8")
|
2014-10-07 01:57:38 +08:00
|
|
|
@text = CGI.unescapeHTML(@text)
|
2013-06-11 03:33:37 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def html
|
2019-07-31 03:05:08 +08:00
|
|
|
style =
|
|
|
|
if @message.html_part
|
|
|
|
Email::Styles.new(@message.html_part.body.to_s, @opts)
|
2013-06-11 03:33:37 +08:00
|
|
|
else
|
2019-10-10 05:50:48 +08:00
|
|
|
unstyled =
|
|
|
|
UserNotificationRenderer.render(
|
2019-07-31 03:05:08 +08:00
|
|
|
template: "layouts/email_template",
|
|
|
|
format: :html,
|
|
|
|
locals: {
|
|
|
|
html_body: PrettyText.cook(text).html_safe,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
Email::Styles.new(unstyled, @opts)
|
2013-06-11 03:33:37 +08:00
|
|
|
end
|
2013-11-29 06:20:56 +08:00
|
|
|
|
2019-07-31 03:05:08 +08:00
|
|
|
style.format_basic
|
|
|
|
style.format_html
|
2024-01-12 23:14:55 +08:00
|
|
|
DiscoursePluginRegistry.apply_modifier(:email_renderer_html, style, @message)
|
2013-11-29 06:20:56 +08:00
|
|
|
style.to_html
|
2013-06-11 03:33:37 +08:00
|
|
|
end
|
|
|
|
end
|
2014-10-07 01:57:38 +08:00
|
|
|
end
|