mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
25 lines
597 B
Ruby
25 lines
597 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
|