mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
* Move onebox gem in core library * Update template file path * Remove warning for onebox gem caching * Remove onebox version file * Remove onebox gem * Add sanitize gem * Require onebox library in lazy-yt plugin * Remove onebox web specific code This code was used in standalone onebox Sinatra application * Merge Discourse specific AllowlistedGenericOnebox engine in core * Fix onebox engine filenames to match class name casing * Move onebox specs from gem into core * DEV: Rename `response` helper to `onebox_response` Fixes a naming collision. * Require rails_helper * Don't use `before/after(:all)` * Whitespace * Remove fakeweb * Remove poor unit tests * DEV: Re-add fakeweb, plugins are using it * Move onebox helpers * Stub Instagram API * FIX: Follow additional redirect status codes (#476) Don’t throw errors if we encounter 303, 307 or 308 HTTP status codes in responses * Remove an empty file * DEV: Update the license file Using the copy from https://choosealicense.com/licenses/gpl-2.0/# Hopefully this will enable GitHub to show the license UI? * DEV: Update embedded copyrights * DEV: Add Onebox copyright notice * DEV: Add MIT license, convert COPYRIGHT.txt to md * DEV: Remove an incorrect copyright claim Co-authored-by: Jarek Radosz <jradosz@gmail.com> Co-authored-by: jbrw <jamie@goatforce5.org>
79 lines
2.1 KiB
Ruby
79 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Onebox
|
|
module Engine
|
|
class GithubFolderOnebox
|
|
include Engine
|
|
include StandardEmbed
|
|
include LayoutSupport
|
|
|
|
matches_regexp(/^https?:\/\/(?:www\.)?(?:(?:\w)+\.)?(github)\.com[\:\d]*(\/[^\/]+){2}/)
|
|
always_https
|
|
|
|
def self.priority
|
|
# This engine should have lower priority than the other Github engines
|
|
150
|
|
end
|
|
|
|
private
|
|
|
|
def data
|
|
og = get_opengraph
|
|
|
|
max_length = 250
|
|
|
|
display_path = extract_path(og.url, max_length)
|
|
display_description = clean_description(og.description, og.title, max_length)
|
|
|
|
title = og.title
|
|
|
|
fragment = Addressable::URI.parse(url).fragment
|
|
if fragment
|
|
fragment = Addressable::URI.unencode(fragment)
|
|
|
|
if html_doc.css('.Box.md')
|
|
# For links to markdown docs
|
|
node = html_doc.css('a.anchor').find { |n| n['href'] == "##{fragment}" }
|
|
subtitle = node&.parent&.text
|
|
elsif html_doc.css('.Box.rdoc')
|
|
# For links to rdoc docs
|
|
node = html_doc.css('h3').find { |n| n['id'] == "user-content-#{fragment.downcase}" }
|
|
subtitle = node&.css('text()')&.first&.text
|
|
end
|
|
|
|
title = "#{title} - #{subtitle}" if subtitle
|
|
end
|
|
|
|
{
|
|
link: url,
|
|
image: og.image,
|
|
title: Onebox::Helpers.truncate(title, 250),
|
|
path: display_path,
|
|
description: display_description,
|
|
favicon: get_favicon
|
|
}
|
|
end
|
|
|
|
def extract_path(root, max_length)
|
|
path = url.split('#')[0].split('?')[0]
|
|
path = path["#{root}/tree/".length..-1]
|
|
|
|
return unless path
|
|
|
|
path.length > max_length ? path[-max_length..-1] : path
|
|
end
|
|
|
|
def clean_description(description, title, max_length)
|
|
return unless description
|
|
|
|
desc_end = " - #{title}"
|
|
if description[-desc_end.length..-1] == desc_end
|
|
description = description[0...-desc_end.length]
|
|
end
|
|
|
|
Onebox::Helpers.truncate(description, max_length)
|
|
end
|
|
end
|
|
end
|
|
end
|