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
|
|
|
|
|
|
|
def initialize(path_with_namespace, default_branch)
|
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
|
|
|
|
|
2013-10-01 10:00:28 -04:00
|
|
|
def path_to_repo
|
|
|
|
@path_to_repo ||= File.join(Gitlab.config.gitlab_shell.repos_path, path_with_namespace + ".git")
|
|
|
|
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
|
|
|
|
|
|
|
|
def commit(id = nil)
|
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
|
|
|
|
end
|
|
|
|
|
|
|
|
def commits(ref, path = nil, limit = nil, offset = nil)
|
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-08-05 10:59:58 -04:00
|
|
|
def recent_branches(limit = 20)
|
|
|
|
branches.sort do |a, b|
|
|
|
|
a.commit.committed_date <=> b.commit.committed_date
|
|
|
|
end[0..limit]
|
|
|
|
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
|
|
|
|
|
2013-07-17 07:43:18 -04:00
|
|
|
def add_tag(tag_name, ref)
|
|
|
|
Rails.cache.delete(cache_key(:tag_names))
|
|
|
|
|
|
|
|
gitlab_shell.add_tag(path_with_namespace, tag_name, ref)
|
|
|
|
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
|
|
|
|
raw_repository.raw.commit_count
|
|
|
|
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))
|
|
|
|
end
|
|
|
|
|
|
|
|
def graph_log
|
2013-06-25 07:19:33 -04:00
|
|
|
Rails.cache.fetch(cache_key(:graph_log)) do
|
2013-06-25 06:55:03 -04:00
|
|
|
stats = Gitlab::Git::GitStats.new(raw, root_ref)
|
|
|
|
stats.parsed_log
|
|
|
|
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-03-31 16:45:38 -04:00
|
|
|
end
|