2013-03-31 16:45:38 -04:00
|
|
|
class Repository
|
|
|
|
attr_accessor :raw_repository
|
|
|
|
|
|
|
|
def initialize(path_with_namespace, default_branch)
|
|
|
|
@raw_repository = Gitlab::Git::Repository.new(path_with_namespace, default_branch)
|
2013-04-01 09:56:25 -04:00
|
|
|
rescue Gitlab::Git::Repository::NoRepository
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def exists?
|
|
|
|
raw_repository
|
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
|
|
|
raw_repository.empty?
|
2013-03-31 16:45:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def commit(id = nil)
|
|
|
|
commit = raw_repository.commit(id)
|
|
|
|
commit = Commit.new(commit) if commit
|
|
|
|
commit
|
|
|
|
end
|
|
|
|
|
|
|
|
def commits(ref, path = nil, limit = nil, offset = nil)
|
|
|
|
commits = raw_repository.commits(ref, path, limit, 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
|
|
|
|
|
|
|
|
def commits_between(target, source)
|
|
|
|
commits = raw_repository.commits_between(target, source)
|
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-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-03-31 16:45:38 -04:00
|
|
|
def method_missing(m, *args, &block)
|
2013-04-01 02:21:31 -04:00
|
|
|
raw_repository.send(m, *args, &block)
|
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-04-28 16:04:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cache_key(type)
|
|
|
|
"#{type}:#{path_with_namespace}"
|
|
|
|
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
|
|
|
|
end
|