2012-09-07 07:16:29 +02:00
|
|
|
require_relative 'gitolite_config'
|
2011-12-04 00:44:59 +01:00
|
|
|
|
2012-05-26 12:37:49 +02:00
|
|
|
module Gitlab
|
2011-12-04 00:44:59 +01:00
|
|
|
class Gitolite
|
|
|
|
class AccessDenied < StandardError; end
|
2012-09-07 07:16:29 +02:00
|
|
|
|
|
|
|
def config
|
2012-09-07 14:36:40 +02:00
|
|
|
Gitlab::GitoliteConfig.new
|
2012-09-07 07:16:29 +02:00
|
|
|
end
|
2011-12-04 00:44:59 +01:00
|
|
|
|
2012-08-28 23:04:06 +02:00
|
|
|
def set_key key_id, key_content, projects
|
2012-09-07 07:16:29 +02:00
|
|
|
config.apply do |config|
|
|
|
|
config.write_key(key_id, key_content)
|
|
|
|
config.update_projects(projects)
|
2012-08-28 23:04:06 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_key key_id, projects
|
2012-09-07 07:16:29 +02:00
|
|
|
config.apply do |config|
|
|
|
|
config.rm_key(key_id)
|
|
|
|
config.update_projects(projects)
|
2012-08-28 23:04:06 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_repository project
|
2012-09-07 07:16:29 +02:00
|
|
|
config.update_project!(project.path, project)
|
2012-03-05 23:26:40 +01:00
|
|
|
end
|
|
|
|
|
2012-08-28 23:04:06 +02:00
|
|
|
def remove_repository project
|
2012-09-07 07:16:29 +02:00
|
|
|
config.destroy_project!(project)
|
2012-03-05 23:26:40 +01:00
|
|
|
end
|
|
|
|
|
2012-08-28 23:04:06 +02:00
|
|
|
def url_to_repo path
|
|
|
|
Gitlab.config.ssh_path + "#{path}.git"
|
|
|
|
end
|
|
|
|
|
|
|
|
def enable_automerge
|
2012-09-08 13:24:38 +02:00
|
|
|
config.admin_all_repo!
|
2012-03-30 07:25:04 +02:00
|
|
|
end
|
2012-08-28 23:33:19 +02:00
|
|
|
|
2012-09-07 07:16:29 +02:00
|
|
|
alias_method :create_repository, :update_repository
|
2011-12-04 00:44:59 +01:00
|
|
|
end
|
|
|
|
end
|