2018-03-17 18:26:18 +05:30
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
class Wiki
|
2018-12-13 13:39:08 +05:30
|
|
|
include Gitlab::Git::WrapsGitalyErrors
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
DuplicatePageError = Class.new(StandardError)
|
2018-10-15 14:42:47 +05:30
|
|
|
OperationError = Class.new(StandardError)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
DEFAULT_PAGINATION = Kaminari.config.default_per_page
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
CommitDetails = Struct.new(:user_id, :username, :name, :email, :message) do
|
2018-03-17 18:26:18 +05:30
|
|
|
def to_h
|
2018-10-15 14:42:47 +05:30
|
|
|
{ user_id: user_id, username: username, name: name, email: email, message: message }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
# GollumSlug inlines just enough knowledge from Gollum::Page to generate a
|
|
|
|
# slug, which is used when previewing pages that haven't been persisted
|
|
|
|
class GollumSlug
|
|
|
|
class << self
|
|
|
|
def cname(name, char_white_sub = '-', char_other_sub = '-')
|
|
|
|
if name.respond_to?(:gsub)
|
|
|
|
name.gsub(/\s/, char_white_sub).gsub(/[<>+]/, char_other_sub)
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_to_ext(format)
|
|
|
|
format == :markdown ? "md" : format.to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def canonicalize_filename(filename)
|
|
|
|
::File.basename(filename, ::File.extname(filename)).tr('-', ' ')
|
|
|
|
end
|
|
|
|
|
|
|
|
def generate(title, format)
|
|
|
|
ext = format_to_ext(format.to_sym)
|
|
|
|
name = cname(title) + '.' + ext
|
|
|
|
canonical_name = canonicalize_filename(name)
|
|
|
|
|
|
|
|
path =
|
|
|
|
if name.include?('/')
|
|
|
|
name.sub(%r{/[^/]+$}, '/')
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
|
|
|
path + cname(canonical_name, '-', '-')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
attr_reader :repository
|
|
|
|
|
|
|
|
def self.default_ref
|
|
|
|
'master'
|
|
|
|
end
|
|
|
|
|
|
|
|
# Initialize with a Gitlab::Git::Repository instance
|
|
|
|
def initialize(repository)
|
|
|
|
@repository = repository
|
|
|
|
end
|
|
|
|
|
|
|
|
def repository_exists?
|
|
|
|
@repository.exists?
|
|
|
|
end
|
|
|
|
|
|
|
|
def write_page(name, format, content, commit_details)
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_write_page(name, format, content, commit_details)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_page(page_path, commit_details)
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_delete_page(page_path, commit_details)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_page(page_path, title, format, content, commit_details)
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_update_page(page_path, title, format, content, commit_details)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def pages(limit: 0)
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-18 11:00:15 +05:30
|
|
|
gitaly_get_all_pages(limit: limit)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def page(title:, version: nil, dir: nil)
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_find_page(title: title, version: version, dir: dir)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def file(name, version)
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_find_file(name, version)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# options:
|
|
|
|
# :page - The Integer page number.
|
|
|
|
# :per_page - The number of items per page.
|
|
|
|
# :limit - Total number of items to return.
|
|
|
|
def page_versions(page_path, options = {})
|
2018-12-13 13:39:08 +05:30
|
|
|
versions = wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_wiki_client.page_versions(page_path, options)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
# Gitaly uses gollum-lib to get the versions. Gollum defaults to 20
|
|
|
|
# per page, but also fetches 20 if `limit` or `per_page` < 20.
|
|
|
|
# Slicing returns an array with the expected number of items.
|
2018-12-05 23:21:45 +05:30
|
|
|
slice_bound = options[:limit] || options[:per_page] || DEFAULT_PAGINATION
|
2018-11-08 19:23:39 +05:30
|
|
|
versions[0..slice_bound]
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def count_page_versions(page_path)
|
|
|
|
@repository.count_commits(ref: 'HEAD', path: page_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def preview_slug(title, format)
|
2018-12-13 13:39:08 +05:30
|
|
|
GollumSlug.generate(title, format)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def page_formatted_data(title:, dir: nil, version: nil)
|
|
|
|
version = version&.id
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
wrapped_gitaly_errors do
|
2018-11-08 19:23:39 +05:30
|
|
|
gitaly_wiki_client.get_formatted_data(title: title, dir: dir, version: version)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def gitaly_wiki_client
|
|
|
|
@gitaly_wiki_client ||= Gitlab::GitalyClient::WikiService.new(@repository)
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitaly_write_page(name, format, content, commit_details)
|
|
|
|
gitaly_wiki_client.write_page(name, format, content, commit_details)
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitaly_update_page(page_path, title, format, content, commit_details)
|
|
|
|
gitaly_wiki_client.update_page(page_path, title, format, content, commit_details)
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitaly_delete_page(page_path, commit_details)
|
|
|
|
gitaly_wiki_client.delete_page(page_path, commit_details)
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitaly_find_page(title:, version: nil, dir: nil)
|
|
|
|
wiki_page, version = gitaly_wiki_client.find_page(title: title, version: version, dir: dir)
|
|
|
|
return unless wiki_page
|
|
|
|
|
|
|
|
Gitlab::Git::WikiPage.new(wiki_page, version)
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitaly_find_file(name, version)
|
|
|
|
wiki_file = gitaly_wiki_client.find_file(name, version)
|
|
|
|
return unless wiki_file
|
|
|
|
|
|
|
|
Gitlab::Git::WikiFile.new(wiki_file)
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
def gitaly_get_all_pages(limit: 0)
|
|
|
|
gitaly_wiki_client.get_all_pages(limit: limit).map do |wiki_page, version|
|
2018-03-17 18:26:18 +05:30
|
|
|
Gitlab::Git::WikiPage.new(wiki_page, version)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|