mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:15:05 +08:00
f5cbc3e3b8
Followup 560e8aff75
The linked commit allowed oneboxing private GitHub PRs,
issues, commits, and so on, but it didn't actually allow
oneboxing the root repo e.g https://github.com/discourse/discourse-reactions
We didn't have an engine for this, we were relying on OpenGraph
tags on the HTML rendering of the page like we do with other
oneboxes.
To fix this, we needed a new github engine for repos specifically.
Also, this commit adds a `data-github-private-repo` attribute to
PR, issue, and repo onebox HTML so we have an indicator of
whether the repo was private, which can be used for theme components
and so on.
93 lines
1.9 KiB
Ruby
93 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class GithubGistOnebox
|
|
include Engine
|
|
include LayoutSupport
|
|
include JSON
|
|
|
|
MAX_FILES = 3
|
|
|
|
matches_regexp(%r{^http(?:s)?://gist\.(?:(?:\w)+\.)?(github)\.com(?:/)?})
|
|
always_https
|
|
|
|
def url
|
|
"https://api.github.com/gists/#{match[:sha]}"
|
|
end
|
|
|
|
def self.priority
|
|
110 # overlaps with GithubRepoOnebox
|
|
end
|
|
|
|
private
|
|
|
|
def data
|
|
@data ||= {
|
|
title: "gist.github.com",
|
|
link: link,
|
|
gist_files: gist_files.take(MAX_FILES),
|
|
truncated_files?: truncated_files?,
|
|
i18n: i18n,
|
|
}
|
|
end
|
|
|
|
def i18n
|
|
{
|
|
truncated_file: I18n.t("onebox.github.truncated_file"),
|
|
more_than_three_files: I18n.t("onebox.github.more_than_three_files"),
|
|
show_original: I18n.t("onebox.github.show_original"),
|
|
}
|
|
end
|
|
|
|
def truncated_files?
|
|
gist_files.size > MAX_FILES
|
|
end
|
|
|
|
def gist_files
|
|
return [] unless gist_api
|
|
|
|
@gist_files ||= gist_api["files"].values.map { |file_json| GistFile.new(file_json) }
|
|
end
|
|
|
|
def gist_api
|
|
@raw ||= raw.clone
|
|
rescue OpenURI::HTTPError
|
|
# The Gist API rate limit of 60 requests per hour was reached.
|
|
nil
|
|
end
|
|
|
|
def match
|
|
@match ||= @url.match(%r{gist\.github\.com/([^/]+/)?(?<sha>[0-9a-f]+)})
|
|
end
|
|
|
|
class GistFile
|
|
attr_reader :filename
|
|
attr_reader :language
|
|
|
|
MAX_LINES = 10
|
|
|
|
def initialize(json)
|
|
@json = json
|
|
@filename = @json["filename"]
|
|
@language = @json["language"]
|
|
end
|
|
|
|
def content
|
|
lines.take(MAX_LINES).join("\n")
|
|
end
|
|
|
|
def truncated?
|
|
lines.size > MAX_LINES
|
|
end
|
|
|
|
private
|
|
|
|
def lines
|
|
@lines ||= @json["content"].split("\n")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|