trabajo-afectivo/lib/notification_factory/template.rb

117 lines
2.8 KiB
Ruby
Raw Normal View History

2016-04-13 23:40:37 +00:00
class NotificationFactory::Template
2016-11-11 10:17:53 +00:00
=begin
examples how to use
message_subject = NotificationFactory::Template.new(
{
ticket: Ticket.first,
},
'de-de',
'some template <b><%= d "ticket.title", false %></b> <%= c "fqdn", false %>',
false
).render
message_body = NotificationFactory::Template.new(
{
ticket: Ticket.first,
},
'de-de',
'some template <b><%= d "ticket.title", true %></b> <%= c "fqdn", true %>',
).render
=end
2016-04-13 23:40:37 +00:00
def initialize(objects, locale, template, escape = true)
@objects = objects
@locale = locale || 'en-us'
@template = template
@escape = escape
end
def render
ERB.new(@template).result(binding)
end
2016-04-15 21:56:10 +00:00
# d - data of object
# d('user.firstname', htmlEscape)
2016-04-13 23:40:37 +00:00
def d(key, escape = nil)
# do validaton, ignore some methodes
if key =~ /(`|\.(|\s*)(save|destroy|delete|remove|drop|update\(|update_att|create\(|new|all|where|find))/i
return "#{key} (not allowed)"
end
value = nil
object_methods = key.split('.')
object_name = object_methods.shift.to_sym
object_refs = @objects[object_name]
object_methods_s = ''
2016-06-30 20:04:48 +00:00
object_methods.each { |method|
2016-04-13 23:40:37 +00:00
if object_methods_s != ''
object_methods_s += '.'
end
object_methods_s += method
# if method exists
if !object_refs.respond_to?( method.to_sym )
value = "\#{#{object_name}.#{object_methods_s} / no such method}"
break
end
object_refs = object_refs.send( method.to_sym )
}
placeholder = if !value
object_refs
else
value
end
return placeholder if escape == false || (escape.nil? && !@escape)
h placeholder
end
2016-04-15 21:56:10 +00:00
# c - config
# c('fqdn', htmlEscape)
2016-04-13 23:40:37 +00:00
def c(key, escape = nil)
config = Setting.get(key)
return config if escape == false || (escape.nil? && !@escape)
h config
end
2016-04-15 21:56:10 +00:00
# t - translation
# t('yes', htmlEscape)
2016-04-13 23:40:37 +00:00
def t(key, escape = nil)
translation = Translation.translate(@locale, key)
return translation if escape == false || (escape.nil? && !@escape)
h translation
end
2016-04-15 21:56:10 +00:00
# a_html - article body in html
# a_html(article)
def a_html(article)
2016-04-13 23:40:37 +00:00
content_type = d "#{article}.content_type", false
if content_type =~ /html/
return d "#{article}.body", false
end
d("#{article}.body", false).text2html
end
2016-04-15 21:56:10 +00:00
# a_text - article body in text
# a_text(article)
def a_text(article)
content_type = d "#{article}.content_type", false
body = d "#{article}.body", false
if content_type =~ /html/
body = body.html2text
end
(body.strip + "\n").gsub(/^(.*?)$/, '> \\1')
end
# h - htmlEscape
# h('fqdn', htmlEscape)
2016-04-13 23:40:37 +00:00
def h(key)
return key if !key
CGI.escapeHTML(key.to_s)
end
end