mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
24 lines
600 B
Ruby
24 lines
600 B
Ruby
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
|
|
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
|