discourse/lib/oneboxer/gist_onebox.rb

31 lines
617 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require_dependency 'oneboxer/handlebars_onebox'
module Oneboxer
class GistOnebox < HandlebarsOnebox
matcher /^https?:\/\/gist\.github\.com/
favicon 'github.png'
def translate_url
m = @url.match(/gist\.github\.com\/(?<id>[0-9a-f]+)/mi)
return "https://api.github.com/gists/#{m[:id]}" if m
@url
end
def parse(data)
parsed = JSON.parse(data)
result = {files: [], title: parsed['description']}
parsed['files'].each do |filename, attrs|
result[:files] << {filename: filename}.merge!(attrs)
end
result
end
end
end