2013-03-31 16:45:38 -04:00
|
|
|
class Repository
|
2013-07-16 15:19:07 -04:00
|
|
|
include Gitlab::ShellAdapter
|
|
|
|
|
2013-10-01 10:00:28 -04:00
|
|
|
attr_accessor :raw_repository, :path_with_namespace
|
2013-03-31 16:45:38 -04:00
|
|
|
|
2013-11-06 11:45:39 -05:00
|
|
|
def initialize(path_with_namespace, default_branch = nil)
|
2013-10-01 10:00:28 -04:00
|
|
|
@path_with_namespace = path_with_namespace
|
2013-10-01 11:26:55 -04:00
|
|
|
@raw_repository = Gitlab::Git::Repository.new(path_to_repo) if path_with_namespace
|
2013-04-01 09:56:25 -04:00
|
|
|
rescue Gitlab::Git::Repository::NoRepository
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2014-07-31 13:12:49 -04:00
|
|
|
# Return absolute path to repository
|
2013-10-01 10:00:28 -04:00
|
|
|
def path_to_repo
|
2014-07-31 13:12:49 -04:00
|
|
|
@path_to_repo ||= File.expand_path(
|
|
|
|
File.join(Gitlab.config.gitlab_shell.repos_path, path_with_namespace + ".git")
|
|
|
|
)
|
2013-10-01 10:00:28 -04:00
|
|
|
end
|
|
|
|
|
2013-04-01 09:56:25 -04:00
|
|
|
def exists?
|
|
|
|
raw_repository
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
|
|
|
raw_repository.empty?
|
2013-03-31 16:45:38 -04:00
|
|
|
end
|
|
|
|
|
2014-09-25 05:46:30 -04:00
|
|
|
def commit(id = 'HEAD')
|
2013-05-30 19:16:49 -04:00
|
|
|
return nil unless raw_repository
|
2013-08-05 09:51:04 -04:00
|
|
|
commit = Gitlab::Git::Commit.find(raw_repository, id)
|
2013-03-31 16:45:38 -04:00
|
|
|
commit = Commit.new(commit) if commit
|
|
|
|
commit
|
2014-10-10 08:58:11 -04:00
|
|
|
rescue Rugged::OdbError => ex
|
|
|
|
nil
|
2013-03-31 16:45:38 -04:00
|
|
|
end
|
|
|
|
|
2014-09-26 11:04:41 -04:00
|
|
|
def commits(ref, path = nil, limit = nil, offset = nil, skip_merges = false)
|
2013-08-05 09:51:04 -04:00
|
|
|
commits = Gitlab::Git::Commit.where(
|
|
|
|
repo: raw_repository,
|
|
|
|
ref: ref,
|
|
|
|
path: path,
|
|
|
|
limit: limit,
|
|
|
|
offset: offset,
|
|
|
|
)
|
2013-04-01 09:04:35 -04:00
|
|
|
commits = Commit.decorate(commits) if commits.present?
|
2013-03-31 16:45:38 -04:00
|
|
|
commits
|
|
|
|
end
|
|
|
|
|
2013-08-05 09:51:04 -04:00
|
|
|
def commits_between(from, to)
|
|
|
|
commits = Gitlab::Git::Commit.between(raw_repository, from, to)
|
2013-04-01 09:04:35 -04:00
|
|
|
commits = Commit.decorate(commits) if commits.present?
|
2013-03-31 16:45:38 -04:00
|
|
|
commits
|
|
|
|
end
|
|
|
|
|
2013-07-17 08:11:03 -04:00
|
|
|
def find_branch(name)
|
|
|
|
branches.find { |branch| branch.name == name }
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_tag(name)
|
|
|
|
tags.find { |tag| tag.name == name }
|
|
|
|
end
|
|
|
|
|
2013-07-16 17:09:23 -04:00
|
|
|
def add_branch(branch_name, ref)
|
|
|
|
Rails.cache.delete(cache_key(:branch_names))
|
|
|
|
|
|
|
|
gitlab_shell.add_branch(path_with_namespace, branch_name, ref)
|
|
|
|
end
|
|
|
|
|
2014-06-23 21:35:36 -04:00
|
|
|
def add_tag(tag_name, ref, message = nil)
|
2013-07-17 07:43:18 -04:00
|
|
|
Rails.cache.delete(cache_key(:tag_names))
|
|
|
|
|
2014-06-23 21:35:36 -04:00
|
|
|
gitlab_shell.add_tag(path_with_namespace, tag_name, ref, message)
|
2013-07-17 07:43:18 -04:00
|
|
|
end
|
|
|
|
|
2013-07-16 15:19:07 -04:00
|
|
|
def rm_branch(branch_name)
|
2013-07-16 17:09:23 -04:00
|
|
|
Rails.cache.delete(cache_key(:branch_names))
|
|
|
|
|
2013-07-16 15:19:07 -04:00
|
|
|
gitlab_shell.rm_branch(path_with_namespace, branch_name)
|
|
|
|
end
|
|
|
|
|
2013-07-16 16:12:52 -04:00
|
|
|
def rm_tag(tag_name)
|
2013-07-16 17:09:23 -04:00
|
|
|
Rails.cache.delete(cache_key(:tag_names))
|
|
|
|
|
2013-07-16 16:12:52 -04:00
|
|
|
gitlab_shell.rm_tag(path_with_namespace, tag_name)
|
|
|
|
end
|
|
|
|
|
2013-07-09 03:44:47 -04:00
|
|
|
def round_commit_count
|
|
|
|
if commit_count > 10000
|
|
|
|
'10000+'
|
|
|
|
elsif commit_count > 5000
|
|
|
|
'5000+'
|
|
|
|
elsif commit_count > 1000
|
|
|
|
'1000+'
|
|
|
|
else
|
|
|
|
commit_count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-15 08:22:34 -04:00
|
|
|
def branch_names
|
|
|
|
Rails.cache.fetch(cache_key(:branch_names)) do
|
|
|
|
raw_repository.branch_names
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag_names
|
|
|
|
Rails.cache.fetch(cache_key(:tag_names)) do
|
|
|
|
raw_repository.tag_names
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-09 03:44:47 -04:00
|
|
|
def commit_count
|
|
|
|
Rails.cache.fetch(cache_key(:commit_count)) do
|
2013-08-12 15:23:01 -04:00
|
|
|
begin
|
2014-06-11 16:13:31 -04:00
|
|
|
raw_repository.commit_count(self.root_ref)
|
2013-08-12 15:23:01 -04:00
|
|
|
rescue
|
|
|
|
0
|
|
|
|
end
|
2013-07-09 03:44:47 -04:00
|
|
|
end
|
2013-03-31 16:45:38 -04:00
|
|
|
end
|
|
|
|
|
2013-04-28 16:04:56 -04:00
|
|
|
# Return repo size in megabytes
|
|
|
|
# Cached in redis
|
|
|
|
def size
|
|
|
|
Rails.cache.fetch(cache_key(:size)) do
|
|
|
|
raw_repository.size
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def expire_cache
|
|
|
|
Rails.cache.delete(cache_key(:size))
|
2013-05-15 08:22:34 -04:00
|
|
|
Rails.cache.delete(cache_key(:branch_names))
|
|
|
|
Rails.cache.delete(cache_key(:tag_names))
|
2013-07-09 03:44:47 -04:00
|
|
|
Rails.cache.delete(cache_key(:commit_count))
|
2013-06-25 06:55:03 -04:00
|
|
|
Rails.cache.delete(cache_key(:graph_log))
|
2013-11-29 06:52:10 -05:00
|
|
|
Rails.cache.delete(cache_key(:readme))
|
2014-06-25 05:07:06 -04:00
|
|
|
Rails.cache.delete(cache_key(:version))
|
2014-02-22 10:37:10 -05:00
|
|
|
Rails.cache.delete(cache_key(:contribution_guide))
|
2013-06-25 06:55:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def graph_log
|
2013-06-25 07:19:33 -04:00
|
|
|
Rails.cache.fetch(cache_key(:graph_log)) do
|
2014-09-29 23:50:00 -04:00
|
|
|
commits = raw_repository.log(limit: 6000, skip_merges: true,
|
|
|
|
ref: root_ref)
|
|
|
|
commits.map do |rugged_commit|
|
|
|
|
commit = Gitlab::Git::Commit.new(rugged_commit)
|
|
|
|
|
|
|
|
{
|
|
|
|
author_name: commit.author_name.force_encoding('UTF-8'),
|
|
|
|
author_email: commit.author_email.force_encoding('UTF-8'),
|
|
|
|
additions: commit.stats.additions,
|
|
|
|
deletions: commit.stats.deletions
|
|
|
|
}
|
|
|
|
end
|
2013-06-25 06:55:03 -04:00
|
|
|
end
|
2013-04-28 16:04:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cache_key(type)
|
|
|
|
"#{type}:#{path_with_namespace}"
|
|
|
|
end
|
|
|
|
|
2013-07-09 03:44:47 -04:00
|
|
|
def method_missing(m, *args, &block)
|
|
|
|
raw_repository.send(m, *args, &block)
|
|
|
|
end
|
|
|
|
|
2013-03-31 16:45:38 -04:00
|
|
|
def respond_to?(method)
|
2013-04-01 02:21:31 -04:00
|
|
|
return true if raw_repository.respond_to?(method)
|
2013-03-31 16:45:38 -04:00
|
|
|
|
|
|
|
super
|
|
|
|
end
|
2013-10-01 13:34:41 -04:00
|
|
|
|
|
|
|
def blob_at(sha, path)
|
|
|
|
Gitlab::Git::Blob.find(self, sha, path)
|
|
|
|
end
|
2013-11-29 06:52:10 -05:00
|
|
|
|
2014-06-25 05:07:06 -04:00
|
|
|
def blob_by_oid(oid)
|
|
|
|
Gitlab::Git::Blob.raw(self, oid)
|
|
|
|
end
|
|
|
|
|
2013-11-29 06:52:10 -05:00
|
|
|
def readme
|
|
|
|
Rails.cache.fetch(cache_key(:readme)) do
|
2014-02-04 07:46:15 -05:00
|
|
|
tree(:head).readme
|
2013-11-29 06:52:10 -05:00
|
|
|
end
|
|
|
|
end
|
2014-02-04 07:46:15 -05:00
|
|
|
|
2014-06-25 05:07:06 -04:00
|
|
|
def version
|
|
|
|
Rails.cache.fetch(cache_key(:version)) do
|
|
|
|
tree(:head).blobs.find do |file|
|
|
|
|
file.name.downcase == 'version'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-22 10:37:10 -05:00
|
|
|
def contribution_guide
|
|
|
|
Rails.cache.fetch(cache_key(:contribution_guide)) do
|
|
|
|
tree(:head).contribution_guide
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-04 07:46:15 -05:00
|
|
|
def head_commit
|
|
|
|
commit(self.root_ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
def tree(sha = :head, path = nil)
|
|
|
|
if sha == :head
|
|
|
|
sha = head_commit.sha
|
|
|
|
end
|
|
|
|
|
|
|
|
Tree.new(self, sha, path)
|
|
|
|
end
|
2014-02-05 04:39:55 -05:00
|
|
|
|
|
|
|
def blob_at_branch(branch_name, path)
|
2014-02-18 05:27:02 -05:00
|
|
|
last_commit = commit(branch_name)
|
2014-02-05 04:39:55 -05:00
|
|
|
|
2014-02-18 05:27:02 -05:00
|
|
|
if last_commit
|
|
|
|
blob_at(last_commit.sha, path)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
2014-02-05 04:39:55 -05:00
|
|
|
end
|
2014-02-10 06:02:26 -05:00
|
|
|
|
|
|
|
# Returns url for submodule
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# @repository.submodule_url_for('master', 'rack')
|
|
|
|
# # => git@localhost:rack.git
|
|
|
|
#
|
|
|
|
def submodule_url_for(ref, path)
|
2014-02-24 06:22:00 -05:00
|
|
|
if submodules(ref).any?
|
2014-02-10 06:02:26 -05:00
|
|
|
submodule = submodules(ref)[path]
|
|
|
|
|
|
|
|
if submodule
|
|
|
|
submodule['url']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-02-10 14:46:46 -05:00
|
|
|
|
|
|
|
def last_commit_for_path(sha, path)
|
2014-09-29 07:40:36 -04:00
|
|
|
args = %W(git rev-list --max-count 1 #{sha} -- #{path})
|
|
|
|
sha = Gitlab::Popen.popen(args, path_to_repo).first.strip
|
|
|
|
commit(sha)
|
2014-02-10 14:46:46 -05:00
|
|
|
end
|
2014-04-09 09:09:11 -04:00
|
|
|
|
|
|
|
# Remove archives older than 2 hours
|
|
|
|
def clean_old_archives
|
2014-09-29 11:02:45 -04:00
|
|
|
repository_downloads_path = Gitlab.config.gitlab.repository_downloads_path
|
|
|
|
Gitlab::Popen.popen(%W(find #{repository_downloads_path} -not -path #{repository_downloads_path} -mmin +120 -delete))
|
2014-04-09 09:09:11 -04:00
|
|
|
end
|
2014-05-23 07:25:55 -04:00
|
|
|
|
|
|
|
def branches_sorted_by(value)
|
|
|
|
case value
|
|
|
|
when 'recently_updated'
|
|
|
|
branches.sort do |a, b|
|
|
|
|
commit(b.target).committed_date <=> commit(a.target).committed_date
|
|
|
|
end
|
|
|
|
when 'last_updated'
|
|
|
|
branches.sort do |a, b|
|
|
|
|
commit(a.target).committed_date <=> commit(b.target).committed_date
|
|
|
|
end
|
|
|
|
else
|
|
|
|
branches
|
|
|
|
end
|
|
|
|
end
|
2014-07-02 07:43:23 -04:00
|
|
|
|
|
|
|
def contributors
|
2014-09-30 04:56:48 -04:00
|
|
|
commits = self.commits(nil, nil, 2000, 0, true)
|
2014-07-02 07:43:23 -04:00
|
|
|
|
2014-09-30 04:56:48 -04:00
|
|
|
commits.group_by(&:author_email).map do |email, commits|
|
2014-07-02 08:09:06 -04:00
|
|
|
contributor = Gitlab::Contributor.new
|
|
|
|
contributor.email = email
|
2014-07-02 07:43:23 -04:00
|
|
|
|
2014-09-30 04:56:48 -04:00
|
|
|
commits.each do |commit|
|
2014-07-02 08:09:06 -04:00
|
|
|
if contributor.name.blank?
|
2014-09-30 04:56:48 -04:00
|
|
|
contributor.name = commit.author_name
|
2014-07-02 07:43:23 -04:00
|
|
|
end
|
|
|
|
|
2014-07-02 08:09:06 -04:00
|
|
|
contributor.commits += 1
|
2014-07-02 07:43:23 -04:00
|
|
|
end
|
|
|
|
|
2014-07-02 08:09:06 -04:00
|
|
|
contributor
|
|
|
|
end
|
2014-07-02 07:43:23 -04:00
|
|
|
end
|
2014-07-28 13:54:40 -04:00
|
|
|
|
|
|
|
def blob_for_diff(commit, diff)
|
|
|
|
file = blob_at(commit.id, diff.new_path)
|
|
|
|
|
|
|
|
unless file
|
|
|
|
file = prev_blob_for_diff(commit, diff)
|
|
|
|
end
|
|
|
|
|
|
|
|
file
|
|
|
|
end
|
|
|
|
|
|
|
|
def prev_blob_for_diff(commit, diff)
|
|
|
|
if commit.parent_id
|
|
|
|
blob_at(commit.parent_id, diff.old_path)
|
|
|
|
end
|
|
|
|
end
|
2014-09-29 09:40:13 -04:00
|
|
|
|
|
|
|
def branch_names_contains(sha)
|
|
|
|
args = %W(git branch --contains #{sha})
|
|
|
|
names = Gitlab::Popen.popen(args, path_to_repo).first
|
|
|
|
|
|
|
|
if names.respond_to?(:split)
|
|
|
|
names = names.split("\n").map(&:strip)
|
|
|
|
|
|
|
|
names.each do |name|
|
|
|
|
name.slice! '* '
|
|
|
|
end
|
|
|
|
|
|
|
|
names
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
2013-03-31 16:45:38 -04:00
|
|
|
end
|