mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 06:23:43 +08:00
41 lines
1.0 KiB
Ruby
41 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "../mixins/git_blob_onebox"
|
|
|
|
module Onebox
|
|
module Engine
|
|
class GithubBlobOnebox
|
|
def self.git_regexp
|
|
%r{^https?://(www\.)?github\.com.*/blob/}
|
|
end
|
|
|
|
def self.onebox_name
|
|
"githubblob"
|
|
end
|
|
|
|
include Onebox::Mixins::GitBlobOnebox
|
|
|
|
def i18n
|
|
{
|
|
binary_file: I18n.t("onebox.github.binary_file"),
|
|
truncated_file: I18n.t("onebox.github.truncated_file"),
|
|
show_original: I18n.t("onebox.github.show_original"),
|
|
requires_iframe: I18n.t("onebox.github.requires_iframe"),
|
|
}
|
|
end
|
|
|
|
def raw_regexp
|
|
%r{github\.com/(?<user>[^/]+)/(?<repo>[^/]+)/blob/(?<sha1>[^/]+)/(?<file>[^#]+)(#(L(?<from>[^-]*)(-L(?<to>.*))?))?}mi
|
|
end
|
|
|
|
def raw_template(m)
|
|
"https://raw.githubusercontent.com/#{m[:user]}/#{m[:repo]}/#{m[:sha1]}/#{m[:file]}"
|
|
end
|
|
|
|
def title
|
|
Sanitize.fragment(Onebox::Helpers.uri_unencode(link).sub(%r{^https?\://github\.com/}, ""))
|
|
end
|
|
end
|
|
end
|
|
end
|