discourse/lib/oneboxer/open_graph_onebox.rb
Régis Hanol 239cbd2d58 enforce coding convention
replaced every `and` by `&&` and every `or` by `||`
2013-03-05 01:42:44 +01:00

30 lines
854 B
Ruby

require_dependency 'oneboxer/handlebars_onebox'
module Oneboxer
class OpenGraphOnebox < HandlebarsOnebox
def template
template_path('simple_onebox')
end
def onebox
# We expect to have the options we need already
return nil unless @opts.present?
# A site is supposed to supply all the basic og attributes, but some don't (like deviant art)
# If it just has image and no title, embed it as an image.
return BaseOnebox.image_html(@opts['image'], nil, @url) if @opts['image'].present? && @opts['title'].blank?
@opts['title'] ||= @opts['description']
return nil if @opts['title'].blank?
@opts[:original_url] = @url
@opts[:text] = @opts['description']
@opts[:unsafe] = true
@opts[:host] = nice_host
Mustache.render(File.read(template), @opts)
end
end
end