Class: Onebox::Engine::GithubBlobOnebox

Inherits:
Object
  • Object
show all
Includes:
Mixins::GitBlobOnebox
Defined in:
lib/onebox/engine/github_blob_onebox.rb

Constant Summary

Constants included from Mixins::GitBlobOnebox

Mixins::GitBlobOnebox::DEFAULTS, Mixins::GitBlobOnebox::EXPAND_AFTER, Mixins::GitBlobOnebox::EXPAND_BEFORE, Mixins::GitBlobOnebox::EXPAND_NONE

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Mixins::GitBlobOnebox

included

Class Method Details

.git_regexpObject



6
7
8
# File 'lib/onebox/engine/github_blob_onebox.rb', line 6

def self.git_regexp
  /^https?:\/\/(www\.)?github\.com.*\/blob\//
end

.onebox_nameObject



9
10
11
# File 'lib/onebox/engine/github_blob_onebox.rb', line 9

def self.onebox_name
  "githubblob"
end

Instance Method Details

#raw_regexpObject



14
15
16
# File 'lib/onebox/engine/github_blob_onebox.rb', line 14

def raw_regexp
  /github\.com\/(?<user>[^\/]+)\/(?<repo>[^\/]+)\/blob\/(?<sha1>[^\/]+)\/(?<file>[^#]+)(#(L(?<from>[^-]*)(-L(?<to>.*))?))?/mi
end

#raw_template(m) ⇒ Object



17
18
19
# File 'lib/onebox/engine/github_blob_onebox.rb', line 17

def raw_template(m)
  "https://raw.github.com/#{m[:user]}/#{m[:repo]}/#{m[:sha1]}/#{m[:file]}"
end

#titleObject



20
21
22
# File 'lib/onebox/engine/github_blob_onebox.rb', line 20

def title
  Sanitize.fragment(URI.unescape(link).sub(/^https?\:\/\/github\.com\//, ''))
end