2021-05-26 17:41:35 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative "../mixins/git_blob_onebox"
|
|
|
|
|
|
|
|
module Onebox
|
|
|
|
module Engine
|
|
|
|
class GitlabBlobOnebox
|
|
|
|
def self.git_regexp
|
|
|
|
%r{^https?://(www\.)?gitlab\.com.*/blob/}
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.onebox_name
|
|
|
|
"gitlabblob"
|
|
|
|
end
|
|
|
|
|
|
|
|
include Onebox::Mixins::GitBlobOnebox
|
|
|
|
|
2024-01-19 22:26:06 +08:00
|
|
|
def i18n
|
|
|
|
{
|
|
|
|
truncated_file: I18n.t("onebox.gitlab.truncated_file"),
|
|
|
|
show_original: I18n.t("onebox.gitlab.show_original"),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2021-05-26 17:41:35 +08:00
|
|
|
def raw_regexp
|
|
|
|
%r{gitlab\.com/(?<user>[^/]+)/(?<repo>[^/]+)/blob/(?<sha1>[^/]+)/(?<file>[^#]+)(#(L(?<from>[^-]*)(-L(?<to>.*))?))?}mi
|
|
|
|
end
|
|
|
|
|
|
|
|
def raw_template(m)
|
|
|
|
"https://gitlab.com/#{m[:user]}/#{m[:repo]}/raw/#{m[:sha1]}/#{m[:file]}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
Sanitize.fragment(Onebox::Helpers.uri_unencode(link).sub(%r{^https?\://gitlab\.com/}, ""))
|
|
|
|
end
|
2024-07-10 07:39:31 +08:00
|
|
|
|
2024-07-15 11:07:36 +08:00
|
|
|
def auth_headers(_match)
|
2024-07-10 07:39:31 +08:00
|
|
|
{}
|
|
|
|
end
|
2021-05-26 17:41:35 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|