discourse/lib/onebox/engine/github_gist_onebox.rb
Arpit Jalan 283b08d45f
DEV: Absorb onebox gem into core (#12979)
* 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>
2021-05-26 15:11:35 +05:30

82 lines
1.6 KiB
Ruby

# frozen_string_literal: true
module Onebox
module Engine
class GithubGistOnebox
include Engine
include LayoutSupport
include JSON
MAX_FILES = 3
matches_regexp(/^http(?:s)?:\/\/gist\.(?:(?:\w)+\.)?(github)\.com(?:\/)?/)
always_https
def url
"https://api.github.com/gists/#{match[:sha]}"
end
private
def data
@data ||= {
title: 'gist.github.com',
link: link,
gist_files: gist_files.take(MAX_FILES),
truncated_files?: truncated_files?
}
end
def truncated_files?
gist_files.size > MAX_FILES
end
def gist_files
return [] unless gist_api
@gist_files ||= gist_api["files"].values.map do |file_json|
GistFile.new(file_json)
end
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