Class: Gollum::Page

Inherits:
Object
  • Object
show all
Includes:
Pagination
Defined in:
lib/gollum-lib/page.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Pagination

included, #log_pagination_options, #page_to_skip

Constructor Details

#initialize(wiki) ⇒ Page

Public: Initialize a page.

wiki - The Gollum::Wiki in question.

Returns a newly initialized Gollum::Page.



86
87
88
89
90
91
# File 'lib/gollum-lib/page.rb', line 86

def initialize(wiki)
  @wiki        = wiki
  @blob        = @header = @footer = @sidebar = nil
  @doc         = nil
  @parent_page = nil
end

Instance Attribute Details

#historical=(value) ⇒ Object (writeonly)

Sets a Boolean determing whether this page is a historical version.

Returns nothing.



11
12
13
# File 'lib/gollum-lib/page.rb', line 11

def historical=(value)
  @historical = value
end

#parent_pageObject

Parent page if this is a sub page

Returns a Page



16
17
18
# File 'lib/gollum-lib/page.rb', line 16

def parent_page
  @parent_page
end

#pathObject (readonly)

Public: The path of the page within the repo.

Returns the String path.



135
136
137
# File 'lib/gollum-lib/page.rb', line 135

def path
  @path
end

#versionObject

Public: The current version of the page.

Returns the Grit::Commit.



261
262
263
# File 'lib/gollum-lib/page.rb', line 261

def version
  @version
end

#wikiObject (readonly)

The underlying wiki repo.

Returns the Gollum::Wiki containing the page.



366
367
368
# File 'lib/gollum-lib/page.rb', line 366

def wiki
  @wiki
end

Class Method Details

.canonicalize_filename(filename) ⇒ Object

Reusable filter to turn a filename (without path) into a canonical name. Strips extension, converts dashes to spaces.

Returns the filtered String.



68
69
70
# File 'lib/gollum-lib/page.rb', line 68

def self.canonicalize_filename(filename)
  strip_filename(filename).gsub('-', ' ')
end

.cname(name, char_white_sub = '-', char_other_sub = '-') ⇒ Object

Convert a human page name into a canonical page name.

name - The String human page name. char_white_sub - Substitution for whitespace char_other_sub - Substitution for other special chars

Examples

Page.cname("Bilbo Baggins")
# => 'Bilbo-Baggins'

Page.cname("Bilbo Baggins",'_')
# => 'Bilbo_Baggins'

Returns the String canonical name.



342
343
344
345
346
# File 'lib/gollum-lib/page.rb', line 342

def self.cname(name, char_white_sub = '-', char_other_sub = '-')
  name.respond_to?(:gsub) ?
      name.gsub(%r{\s}, char_white_sub).gsub(%r{[<>+]}, char_other_sub) :
      ''
end

.format_for(filename) ⇒ Object

Public: The format of a given filename.

filename - The String filename.

Returns the Symbol format of the page; one of the registered format types



60
61
62
# File 'lib/gollum-lib/page.rb', line 60

def self.format_for(filename)
  self.parse_filename(filename).last
end

.format_to_ext(format) ⇒ Object

Convert a format Symbol into an extension String.

format - The format Symbol.

Returns the String extension (no leading period).



353
354
355
# File 'lib/gollum-lib/page.rb', line 353

def self.format_to_ext(format)
  format == :markdown ? "md" : format.to_s
end

.parse_filename(filename) ⇒ Object

Checks a filename against the registered markup extensions

filename - String filename, like “Home.md”

Returns e.g. [“Home”, :markdown], or [] if the extension is unregistered



24
25
26
27
28
29
30
31
32
# File 'lib/gollum-lib/page.rb', line 24

def self.parse_filename(filename)
  return [] unless filename =~ /^(.+)\.([a-zA-Z]\w*)$/i
  pref, ext = $1, $2

  Gollum::Markup.formats.each_pair do |name, format|
    return [pref, name] if ext =~ format[:regexp]
  end
  []
end

.strip_filename(filename) ⇒ Object

Reusable filter to strip extension and path from filename

filename - The string path or filename to strip

Returns the stripped String.



77
78
79
# File 'lib/gollum-lib/page.rb', line 77

def self.strip_filename(filename)
  ::File.basename(filename, ::File.extname(filename))
end

.valid_filename?(filename) ⇒ Boolean

Checks if a filename has a valid, registered extension

filename - String filename, like “Home.md”.

Returns the matching String basename of the file without the extension.

Returns:

  • (Boolean)


39
40
41
# File 'lib/gollum-lib/page.rb', line 39

def self.valid_filename?(filename)
  self.parse_filename(filename).first
end

.valid_page_name?(filename) ⇒ Boolean

Checks if a filename has a valid extension understood by GitHub::Markup. Also, checks if the filename has no “_” in the front (such as _Footer.md).

filename - String filename, like “Home.md”.

Returns the matching String basename of the file without the extension.

Returns:

  • (Boolean)


50
51
52
53
# File 'lib/gollum-lib/page.rb', line 50

def self.valid_page_name?(filename)
  match = valid_filename?(filename)
  filename =~ /^_/ ? false : match
end

Instance Method Details

#escaped_url_pathObject

Public: The url_path, but CGI escaped.

Returns the String url_path



182
183
184
# File 'lib/gollum-lib/page.rb', line 182

def escaped_url_path
  CGI.escape(self.url_path).gsub('%2F', '/')
end

#filenameObject

Public: The on-disk filename of the page including extension.

Returns the String name.



96
97
98
# File 'lib/gollum-lib/page.rb', line 96

def filename
  @blob && @blob.name
end

#filename_strippedObject

Public: The on-disk filename of the page with extension stripped.

Returns the String name.



103
104
105
# File 'lib/gollum-lib/page.rb', line 103

def filename_stripped
  self.class.strip_filename(filename)
end

#find(name, version, dir = nil, exact = false) ⇒ Object

Find a page in the given Gollum repo.

name - The human or canonical String page name to find. version - The String version ID to find.

Returns a Gollum::Page or nil if the page could not be found.



379
380
381
382
383
384
385
386
387
388
# File 'lib/gollum-lib/page.rb', line 379

def find(name, version, dir = nil, exact = false)
  map = @wiki.tree_map_for(version.to_s)
  if page = find_page_in_tree(map, name, dir, exact)
    page.version    = version.is_a?(Grit::Commit) ?
        version : @wiki.commit_for(version)
    page.historical = page.version.to_s == version.to_s
    page
  end
rescue Grit::GitRuby::Repository::NoSuchShaFound
end

#find_page_in_tree(map, name, checked_dir = nil, exact = false) ⇒ Object

Find a page in a given tree.

map - The Array tree map from Wiki#tree_map. name - The canonical String page name. checked_dir - Optional String of the directory a matching page needs

to be in.  The string should

Returns a Gollum::Page or nil if the page could not be found.



398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# File 'lib/gollum-lib/page.rb', line 398

def find_page_in_tree(map, name, checked_dir = nil, exact = false)
  return nil if !map || name.to_s.empty?

  checked_dir = BlobEntry.normalize_dir(checked_dir)
  checked_dir = '' if exact && checked_dir.nil?
  name        = ::File.join(checked_dir, name) if checked_dir

  map.each do |entry|
    next if entry.name.to_s.empty?
    path = checked_dir ? ::File.join(entry.dir, entry.name) : entry.name
    next unless page_match(name, path)
    return entry.page(@wiki, @version)
  end

  return nil # nothing was found
end

#find_sub_page(name) ⇒ Object

Loads a sub page. Sub page names (footers, headers, sidebars) are prefixed with an underscore to distinguish them from other Pages. If there is not one within the current directory, starts walking up the directory tree to try and find one within parent directories.

name - String page name.

Returns the Page or nil if none exists.



464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
# File 'lib/gollum-lib/page.rb', line 464

def find_sub_page(name)
  return nil unless self.version
  return nil if self.filename =~ /^_/
  name = "_#{name.to_s.capitalize}"
  return nil if page_match(name, self.filename)

  dirs = self.path.split('/')
  dirs.pop
  map = @wiki.tree_map_for(@wiki.ref, true)
  while !dirs.empty?
    if page = find_page_in_tree(map, name, dirs.join('/'))
      page.parent_page = self
      return page
    end
    dirs.pop
  end

  if page = find_page_in_tree(map, name, '')
    page.parent_page = self
  end
  page
end

Public: The footer Page.

Returns the footer Page or nil if none exists.



301
302
303
# File 'lib/gollum-lib/page.rb', line 301

def footer
  @footer ||= find_sub_page(:footer)
end

#formatObject

Public: The format of the page.

Returns the Symbol format of the page; one of the registered format types



247
248
249
# File 'lib/gollum-lib/page.rb', line 247

def format
  self.class.format_for(@blob.name)
end

#formatted_data(encoding = nil, include_levels = 10, &block) ⇒ Object

Public: The formatted contents of the page.

encoding - Encoding Constant or String.

Returns the String data.



218
219
220
221
222
223
# File 'lib/gollum-lib/page.rb', line 218

def formatted_data(encoding = nil, include_levels = 10, &block)
  @blob && markup_class.render(historical?, encoding, include_levels) do |doc|
    @doc = doc
    yield doc if block_given?
  end
end

#headerObject

Public: The header Page.

Returns the header Page or nil if none exists.



294
295
296
# File 'lib/gollum-lib/page.rb', line 294

def header
  @header ||= find_sub_page(:header)
end

#historical?Boolean

Gets a Boolean determining whether this page is a historical version. Historical pages are pulled using exact SHA hashes and format all links with rel=“nofollow”

Returns true if the page is pulled from a named branch or tag, or false.

Returns:

  • (Boolean)


317
318
319
# File 'lib/gollum-lib/page.rb', line 317

def historical?
  !!@historical
end

#inspectObject



487
488
489
# File 'lib/gollum-lib/page.rb', line 487

def inspect
  %(#<#{self.class.name}:#{object_id} #{name} (#{format}) @wiki=#{@wiki.repo.path.inspect}>)
end

#markup_classObject

Gets the Gollum::Markup instance that will render this page’s content.

Returns a Gollum::Markup instance.



254
255
256
# File 'lib/gollum-lib/page.rb', line 254

def markup_class
  @markup_class ||= @wiki.markup_classes[format].new(self)
end

#metadataObject

Public: Embedded metadata.

Returns Hash of metadata.



239
240
241
242
# File 'lib/gollum-lib/page.rb', line 239

def ()
  formatted_data if markup_class. == nil
  markup_class.
end

#metadata_titleObject

Public: Metadata title

Set with <!– — title: New Title –> in page content

Returns the String title or nil if not defined



170
171
172
173
174
175
176
177
# File 'lib/gollum-lib/page.rb', line 170

def 
  if 
    title = ['title']
    return title unless title.nil?
  end

  nil
end

#nameObject

Public: The canonical page name without extension, and dashes converted to spaces.

Returns the String name.



111
112
113
# File 'lib/gollum-lib/page.rb', line 111

def name
  self.class.canonicalize_filename(filename)
end

#page_match(name, path) ⇒ Object

Compare the canonicalized versions of the two names.

name - The human or canonical String page name. path - the String path on disk (including file extension).

Returns a Boolean.



447
448
449
450
451
452
453
454
# File 'lib/gollum-lib/page.rb', line 447

def page_match(name, path)
  if match = self.class.valid_filename?(path)
    @wiki.ws_subs.each do |sub|
      return true if Page.cname(name).downcase == Page.cname(match, sub).downcase
    end
  end
  false
end

#populate(blob, path = nil) ⇒ Object

Populate the Page with information from the Blob.

blob - The Grit::Blob that contains the info. path - The String directory path of the page file.

Returns the populated Gollum::Page.



421
422
423
424
425
# File 'lib/gollum-lib/page.rb', line 421

def populate(blob, path=nil)
  @blob = blob
  @path = "#{path}/#{blob.name}"[1..-1]
  self
end

#raw_dataObject

Public: The raw contents of the page.

Returns the String data.



189
190
191
192
193
194
195
196
197
198
# File 'lib/gollum-lib/page.rb', line 189

def raw_data
  return nil unless @blob

  if !@wiki.repo.bare && @blob.is_symlink
    new_path = @blob.symlink_target(::File.join(@wiki.repo.path, '..', self.path))
    return IO.read(new_path) if new_path
  end

  @blob.data
end

Public: The sidebar Page.

Returns the sidebar Page or nil if none exists.



308
309
310
# File 'lib/gollum-lib/page.rb', line 308

def sidebar
  @sidebar ||= find_sub_page(:sidebar)
end

#sub_pageObject

Public: Determines if this is a sub-page Sub-pages have filenames beginning with an underscore

Returns true or false.



128
129
130
# File 'lib/gollum-lib/page.rb', line 128

def sub_page
  filename =~ /^_/
end

#text_data(encoding = nil) ⇒ Object

Public: A text data encoded in specified encoding.

encoding - An Encoding or nil

Returns a character encoding aware String.



205
206
207
208
209
210
211
# File 'lib/gollum-lib/page.rb', line 205

def text_data(encoding=nil)
  if raw_data.respond_to?(:encoding)
    raw_data.force_encoding(encoding || Encoding::UTF_8)
  else
    raw_data
  end
end

#titleObject

Public: The title will be constructed from the filename by stripping the extension and replacing any dashes with spaces.

Returns the fully sanitized String title.



120
121
122
# File 'lib/gollum-lib/page.rb', line 120

def title
  Sanitize.clean(name).strip
end

#toc_dataObject

Public: The table of contents of the page.

formatted_data - page already marked up in html.

Returns the String data.



230
231
232
233
234
# File 'lib/gollum-lib/page.rb', line 230

def toc_data()
  return @parent_page.toc_data if @parent_page and @sub_page
  formatted_data if markup_class.toc == nil
  markup_class.toc
end

#tree_path(treemap, tree) ⇒ Object

The full directory path for the given tree.

treemap - The Hash treemap containing parentage information. tree - The Grit::Tree for which to compute the path.

Returns the String path.



433
434
435
436
437
438
439
# File 'lib/gollum-lib/page.rb', line 433

def tree_path(treemap, tree)
  if ptree = treemap[tree]
    tree_path(treemap, ptree) + '/' + tree.name
  else
    ''
  end
end

#url_pathObject

Public: The url path required to reach this page within the repo.

Returns the String url_path



140
141
142
143
144
145
146
147
148
149
# File 'lib/gollum-lib/page.rb', line 140

def url_path
  path = if self.path.include?('/')
           self.path.sub(/\/[^\/]+$/, '/')
         else
           ''
         end

  path << Page.cname(self.name, '-', '-')
  path
end

#url_path_displayObject

Public: The display form of the url path required to reach this page within the repo.

Returns the String url_path



154
155
156
# File 'lib/gollum-lib/page.rb', line 154

def url_path_display
  url_path.gsub("-", " ")
end

#url_path_titleObject

Public: Defines title for page.rb

Returns the String title



161
162
163
# File 'lib/gollum-lib/page.rb', line 161

def url_path_title
   || url_path_display
end

#version_shortObject

Public: The first 7 characters of the current version.

Returns the first 7 characters of the current version.



287
288
289
# File 'lib/gollum-lib/page.rb', line 287

def version_short
  version.to_s[0, 7]
end

#versions(options = {}) ⇒ Object

Public: All of the versions that have touched the Page.

options - The options Hash:

:page     - The Integer page number (default: 1).
:per_page - The Integer max count of items to return.
:follow   - Follow's a file across renames, but falls back
            to a slower Grit native call (implicit in repo.git.log).  (default: false)

Returns an Array of Grit::Commit.



272
273
274
275
276
277
278
279
280
281
282
# File 'lib/gollum-lib/page.rb', line 272

def versions(options = {})
  if options[:follow]
    options[:pretty] = 'raw'
    options.delete :max_count
    options.delete :skip
    log = @wiki.repo.git.log(options, @wiki.ref, "--", @path)
    Grit::Commit.list_from_string(@wiki.repo, log)
  else
    @wiki.repo.log(@wiki.ref, @path, log_pagination_options(options))
  end
end