Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-02 22:30:36 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-02 22:30:36 +0400
commit5f4445c3d384741c45242f077b3c0dbf76234ee8 (patch)
tree21962b2905103f2b3a585bda0ba6e60a669cb190 /lib
parent7af16bbb0fdce36cf8b7e43e5cd64a712dfdaa1d (diff)
store commits for MR as array of hashes
Diffstat (limited to 'lib')
-rw-r--r--lib/extracts_path.rb2
-rw-r--r--lib/gitlab/git/commit.rb71
-rw-r--r--lib/gitlab/git/tree.rb38
3 files changed, 90 insertions, 21 deletions
diff --git a/lib/extracts_path.rb b/lib/extracts_path.rb
index 2e3ab1b2701..c3e2441ff21 100644
--- a/lib/extracts_path.rb
+++ b/lib/extracts_path.rb
@@ -102,7 +102,7 @@ module ExtractsPath
# because "@project.repository.commit(@ref)" returns wrong commit when @ref is tag name.
@commit = @project.repository.commits(@ref, @path, 1, 0).first
- @tree = Tree.new(@commit.tree, @ref, @path)
+ @tree = Tree.new(@project.repository, @commit.id, @ref, @path)
raise InvalidPathError if @tree.invalid?
rescue RuntimeError, NoMethodError, InvalidPathError
diff --git a/lib/gitlab/git/commit.rb b/lib/gitlab/git/commit.rb
index 35991a383f6..c691ea3d223 100644
--- a/lib/gitlab/git/commit.rb
+++ b/lib/gitlab/git/commit.rb
@@ -4,13 +4,19 @@
module Gitlab
module Git
class Commit
- attr_accessor :raw_commit, :head, :refs
+ attr_accessor :raw_commit, :head, :refs,
+ :sha, :authored_date, :committed_date, :message,
+ :author_name, :author_email,
+ :committer_name, :committer_email
- delegate :message, :authored_date, :committed_date, :parents, :sha,
- :date, :committer, :author, :diffs, :tree, :id, :stats, :to_patch,
+ delegate :parents, :diffs, :tree, :stats, :to_patch,
to: :raw_commit
class << self
+ def serialize_keys
+ %w(sha authored_date committed_date author_name author_email committer_name committer_email message)
+ end
+
def find_or_first(repo, commit_id = nil, root_ref)
commit = if commit_id
repo.commit(commit_id)
@@ -73,10 +79,19 @@ module Gitlab
def initialize(raw_commit, head = nil)
raise "Nil as raw commit passed" unless raw_commit
- @raw_commit = raw_commit
+ if raw_commit.is_a?(Hash)
+ init_from_hash(raw_commit)
+ else
+ init_from_grit(raw_commit)
+ end
+
@head = head
end
+ def id
+ sha
+ end
+
def short_id(length = 10)
id.to_s[0..length]
end
@@ -89,27 +104,11 @@ module Gitlab
committed_date
end
- def author_email
- author.email
- end
-
- def author_name
- author.name
- end
-
# Was this commit committed by a different person than the original author?
def different_committer?
author_name != committer_name || author_email != committer_email
end
- def committer_name
- committer.name
- end
-
- def committer_email
- committer.email
- end
-
def prev_commit
@prev_commit ||= if parents.present?
Commit.new(parents.first)
@@ -148,6 +147,38 @@ module Gitlab
def no_commit_message
"--no commit message"
end
+
+ def to_hash
+ hash = {}
+
+ keys = Commit.serialize_keys
+
+ keys.each do |key|
+ hash[key] = send(key)
+ end
+
+ hash
+ end
+
+ private
+
+ def init_from_grit(grit)
+ @raw_commit = grit
+ @sha = grit.sha
+ @message = grit.message
+ @authored_date = grit.authored_date
+ @committed_date = grit.committed_date
+ @author_name = grit.author.name
+ @author_email = grit.author.email
+ @committer_name = grit.committer.name
+ @committer_email = grit.committer.email
+ end
+
+ def init_from_hash(hash)
+ Commit.serialize_keys.each do |key|
+ send(:"#{key}=", hash[key])
+ end
+ end
end
end
end
diff --git a/lib/gitlab/git/tree.rb b/lib/gitlab/git/tree.rb
new file mode 100644
index 00000000000..b81ce550f4c
--- /dev/null
+++ b/lib/gitlab/git/tree.rb
@@ -0,0 +1,38 @@
+module Gitlab
+ module Git
+ class Tree
+ include Linguist::BlobHelper
+
+ attr_accessor :repository, :sha, :path, :ref, :raw_tree
+
+ def initialize(repository, sha, ref = nil, path = nil)
+ @repository, @sha, @ref = repository, sha, ref
+
+ # Load tree from repository
+ @commit = @repository.commit(sha)
+ @raw_tree = @repository.tree(@commit, path)
+ end
+
+ def empty?
+ data.blank?
+ end
+
+ def data
+ raw_tree.data
+ end
+
+ def is_blob?
+ tree.is_a?(Grit::Blob)
+ end
+
+ def up_dir?
+ path.present?
+ end
+
+ def readme
+ @readme ||= contents.find { |c| c.is_a?(Grit::Blob) and c.name =~ /^readme/i }
+ end
+ end
+ end
+end
+