class Pronto::Git::Repository

def blame(path, lineno)

def blame(path, lineno)
  return if new_file?(path)
  Rugged::Blame.new(@repo, path, min_line: lineno, max_line: lineno,
                                 track_copies_same_file: true,
                                 track_copies_any_commit_copies: true)[0]
end

def branch

def branch
  @repo.head.name.sub('refs/heads/', '') if @repo.head.branch?
end

def commits_until(sha)

def commits_until(sha)
  result = []
  @repo.walk(head_commit_sha, Rugged::SORT_TOPO).take_while do |commit|
    result << commit.oid
    !commit.oid.start_with?(sha)
  end
  result
end

def diff(commit, options = nil)

def diff(commit, options = nil)
  target, patches = case commit
                    when :unstaged, :index
                      [head_commit_sha, @repo.index.diff(options)]
                    when :staged
                      [head_commit_sha, head.diff(@repo.index, options)]
                    when :workdir
                      [
                        head_commit_sha,
                        @repo.diff_workdir(
                          head,
                          {
                            include_untracked: true,
                            include_untracked_content: true,
                            recurse_untracked_dirs: true
                          }.merge(options || {})
                        )
                      ]
                    else
                      merge_base = merge_base(commit)
                      patches = @repo.diff(merge_base, head, options)
                      [merge_base, patches]
                    end
  patches.find_similar!(renames: true)
  Patches.new(self, target, patches)
end

def empty_patches(sha)

def empty_patches(sha)
  Patches.new(self, sha, [])
end

def head

def head
  @repo.head.target
end

def head_commit_sha

def head_commit_sha
  head.oid
end

def head_detached?

def head_detached?
  @repo.head_detached?
end

def initialize(path)

def initialize(path)
  @repo = Rugged::Repository.new(path)
end

def merge_base(commit)

def merge_base(commit)
  @repo.merge_base(commit, head)
end

def new_file?(path)

def new_file?(path)
  @repo.status(path).include?(:index_new)
end

def path

def path
  Pathname.new(@repo.workdir).cleanpath
end

def remote_urls

def remote_urls
  @repo.remotes.map(&:url)
end

def show_commit(sha)

def show_commit(sha)
  return empty_patches(sha) unless sha
  commit = @repo.lookup(sha)
  return empty_patches(sha) if commit.parents.count != 1
  # TODO: Rugged does not seem to support diffing against multiple parents
  diff = commit.diff(reverse: true)
  return empty_patches(sha) if diff.nil?
  Patches.new(self, sha, diff.patches)
end