Class: Jekyll::GitHubMetadata::Pages

Inherits:
Object
  • Object
show all
Defined in:
lib/jekyll-github-metadata/pages.rb

Constant Summary collapse

DEFAULTS =
{
  "PAGES_ENV"              => "development".freeze,
  "PAGES_API_URL"          => "https://api.github.com".freeze,
  "PAGES_HELP_URL"         => "https://help.github.com".freeze,
  "PAGES_GITHUB_HOSTNAME"  => "github.com".freeze,
  "PAGES_PAGES_HOSTNAME"   => "github.io".freeze,
  "SSL"                    => "false".freeze,
  "SUBDOMAIN_ISOLATION"    => "false".freeze,
  "PAGES_PREVIEW_HTML_URL" => nil,
  "PAGE_BUILD_ID"          => nil,
}.freeze

Class Method Summary collapse

Class Method Details

.api_urlObject



63
64
65
# File 'lib/jekyll-github-metadata/pages.rb', line 63

def api_url
  trim_last_slash env_var("PAGES_API_URL", ENV["API_URL"])
end

.configurationObject



85
86
87
88
89
# File 'lib/jekyll-github-metadata/pages.rb', line 85

def configuration
  (methods - Object.methods - [:configuration]).sort.each_with_object({}) do |meth, memo|
    memo[meth.to_s] = public_send(meth)
  end
end

.custom_domains_enabled?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/jekyll-github-metadata/pages.rb', line 43

def custom_domains_enabled?
  dotcom? || test?
end

.development?Boolean

Returns:

  • (Boolean)


41
# File 'lib/jekyll-github-metadata/pages.rb', line 41

def development?; env == "development" end

.dotcom?Boolean

Returns:

  • (Boolean)


37
# File 'lib/jekyll-github-metadata/pages.rb', line 37

def dotcom?;      env == "dotcom" end

.enterprise?Boolean

Returns:

  • (Boolean)


39
# File 'lib/jekyll-github-metadata/pages.rb', line 39

def enterprise?;  env == "enterprise" end

.envObject



47
48
49
# File 'lib/jekyll-github-metadata/pages.rb', line 47

def env
  env_var "PAGES_ENV", ENV["JEKYLL_ENV"]
end

.github_hostnameObject



71
72
73
# File 'lib/jekyll-github-metadata/pages.rb', line 71

def github_hostname
  trim_last_slash env_var("PAGES_GITHUB_HOSTNAME", ENV["GITHUB_HOSTNAME"])
end

.github_urlObject



55
56
57
58
59
60
61
# File 'lib/jekyll-github-metadata/pages.rb', line 55

def github_url
  if dotcom?
    "https://github.com".freeze
  else
    "#{scheme}://#{github_hostname}"
  end
end

.help_urlObject



67
68
69
# File 'lib/jekyll-github-metadata/pages.rb', line 67

def help_url
  trim_last_slash env_var("PAGES_HELP_URL", ENV["HELP_URL"])
end

.page_build?Boolean

Returns:

  • (Boolean)


81
82
83
# File 'lib/jekyll-github-metadata/pages.rb', line 81

def page_build?
  !env_var("PAGE_BUILD_ID").to_s.empty?
end

.pages_hostnameObject



75
76
77
78
79
# File 'lib/jekyll-github-metadata/pages.rb', line 75

def pages_hostname
  intermediate_default = ENV["PAGES_HOSTNAME"]
  intermediate_default ||= "localhost:4000" if development?
  trim_last_slash env_var("PAGES_PAGES_HOSTNAME", intermediate_default)
end

.repo_pages_html_url_preview?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/jekyll-github-metadata/pages.rb', line 51

def repo_pages_html_url_preview?
  env_var "PAGES_PREVIEW_HTML_URL"
end

.schemeObject



27
28
29
# File 'lib/jekyll-github-metadata/pages.rb', line 27

def scheme
  ssl? ? "https" : "http"
end

.ssl?Boolean

Whether the GitHub instance supports HTTPS Note: this will be the same as how sites are served in Enterprise, but may be different from how sites are served on GitHub.com. See Repository#url_scheme

Returns:

  • (Boolean)


23
24
25
# File 'lib/jekyll-github-metadata/pages.rb', line 23

def ssl?
  env_var("SSL") == "true" || test?
end

.subdomain_isolation?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/jekyll-github-metadata/pages.rb', line 31

def subdomain_isolation?
  env_var("SUBDOMAIN_ISOLATION").eql? "true"
end

.test?Boolean

Returns:

  • (Boolean)


35
# File 'lib/jekyll-github-metadata/pages.rb', line 35

def test?;        env == "test" end