gitlabhq/app/models/repository.rb

141 lines
2.6 KiB
Ruby
Raw Normal View History

2011-12-04 21:19:49 +01:00
require File.join(Rails.root, "lib", "gitlabhq", "git_host")
2011-11-10 23:51:19 +01:00
class Repository
REPO_N = 0
REPO_R = 1
REPO_RW = 2
2011-11-10 23:51:19 +01:00
attr_accessor :project
def self.default_ref
"master"
end
def self.access_options
{
"Denied" => REPO_N,
"Pull" => REPO_R,
"Pull & Push" => REPO_RW
}
end
2011-11-10 23:51:19 +01:00
def initialize(project)
@project = project
end
2011-11-15 09:34:30 +01:00
def path
@path ||= project.path
end
def project_id
project.id
end
def write_hooks
%w(post-receive).each do |hook|
write_hook(hook, File.read(File.join(Rails.root, 'lib', "#{hook}-hook")))
end
end
def write_hook(name, content)
hook_file = File.join(project.path_to_repo, 'hooks', name)
File.open(hook_file, 'w') do |f|
f.write(content)
end
File.chmod(0775, hook_file)
end
2011-11-10 23:51:19 +01:00
def repo
@repo ||= Grit::Repo.new(project.path_to_repo)
end
def url_to_repo
2011-12-05 08:43:53 +01:00
Gitlabhq::GitHost.url_to_repo(path)
end
def path_to_repo
2011-12-04 00:44:59 +01:00
GIT_HOST["base_path"] + path + ".git"
end
2011-12-05 08:43:53 +01:00
def update_repository
2011-12-04 21:19:49 +01:00
Gitlabhq::GitHost.system.new.configure do |c|
c.update_project(path, project)
end
write_hooks
end
2011-12-05 08:43:53 +01:00
def destroy_repository
2011-12-04 21:19:49 +01:00
Gitlabhq::GitHost.system.new.configure do |c|
c.destroy_project(@project)
end
2011-11-10 23:51:19 +01:00
end
def repo_exists?
repo rescue false
end
def tags
repo.tags.map(&:name).sort.reverse
end
def heads
@heads ||= repo.heads
2011-11-10 23:51:19 +01:00
end
def tree(fcommit, path = nil)
fcommit = commit if fcommit == :head
tree = fcommit.tree
path ? (tree / path) : tree
end
def commit(commit_id = nil)
2011-11-27 16:35:49 +01:00
commit = if commit_id
repo.commits(commit_id).first
else
repo.commits.first
end
Commit.new(commit) if commit
end
2011-11-10 23:51:19 +01:00
def fresh_commits(n = 10)
commits = heads.map do |h|
2011-11-27 16:35:49 +01:00
repo.commits(h.name, n).map { |c| Commit.new(c, h) }
2011-11-10 23:51:19 +01:00
end.flatten.uniq { |c| c.id }
commits.sort! do |x, y|
y.committed_date <=> x.committed_date
end
commits[0...n]
end
def commits_since(date)
commits = heads.map do |h|
2011-11-27 16:35:49 +01:00
repo.log(h.name, nil, :since => date).each { |c| Commit.new(c, h) }
2011-11-10 23:51:19 +01:00
end.flatten.uniq { |c| c.id }
commits.sort! do |x, y|
y.committed_date <=> x.committed_date
end
commits
end
2011-11-27 16:35:49 +01:00
def commits(ref, path = nil, limit = nil, offset = nil)
if path
repo.log(ref, path, :max_count => limit, :skip => offset)
elsif limit && offset
repo.commits(ref, limit, offset)
else
repo.commits(ref)
end.map{ |c| Commit.new(c) }
end
def commits_between(from, to)
repo.commits_between(from, to).map { |c| Commit.new(c) }
end
2011-11-10 23:51:19 +01:00
end