2012-05-26 12:37:49 +02:00
|
|
|
module Gitlab
|
2013-02-04 14:07:56 +01:00
|
|
|
class Shell
|
2011-12-04 00:44:59 +01:00
|
|
|
class AccessDenied < StandardError; end
|
2012-09-07 07:16:29 +02:00
|
|
|
|
2013-02-04 14:07:56 +01:00
|
|
|
# Init new repository
|
2013-01-28 20:02:10 +01:00
|
|
|
#
|
2013-02-04 14:07:56 +01:00
|
|
|
# name - project path with namespace
|
2013-01-28 16:39:02 +01:00
|
|
|
#
|
|
|
|
# Ex.
|
2013-02-04 14:07:56 +01:00
|
|
|
# add_repository("gitlab/gitlab-ci")
|
2013-01-28 16:39:02 +01:00
|
|
|
#
|
2013-02-04 14:07:56 +01:00
|
|
|
def add_repository(name)
|
2013-02-15 00:10:18 +01:00
|
|
|
system("#{gitlab_shell_user_home}/gitlab-shell/bin/gitlab-projects add-project #{name}.git")
|
2012-11-21 06:54:05 +01:00
|
|
|
end
|
|
|
|
|
2013-02-11 18:41:02 +01:00
|
|
|
# Import repository
|
|
|
|
#
|
|
|
|
# name - project path with namespace
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
|
|
|
|
#
|
|
|
|
def import_repository(name, url)
|
2013-02-15 00:10:18 +01:00
|
|
|
system("#{gitlab_shell_user_home}/gitlab-shell/bin/gitlab-projects import-project #{name}.git #{url}")
|
2013-02-11 18:41:02 +01:00
|
|
|
end
|
|
|
|
|
2013-03-12 11:37:53 +01:00
|
|
|
# Move repository
|
|
|
|
#
|
|
|
|
# path - project path with namespace
|
|
|
|
# new_path - new project path with namespace
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# mv_repository("gitlab/gitlab-ci", "randx/gitlab-ci-new.git")
|
|
|
|
#
|
|
|
|
def mv_repository(path, new_path)
|
|
|
|
system("#{gitlab_shell_user_home}/gitlab-shell/bin/gitlab-projects mv-project #{path}.git #{new_path}.git")
|
|
|
|
end
|
|
|
|
|
2013-02-04 13:28:10 +01:00
|
|
|
# Remove repository from file system
|
2013-01-28 16:22:45 +01:00
|
|
|
#
|
|
|
|
# name - project path with namespace
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# remove_repository("gitlab/gitlab-ci")
|
|
|
|
#
|
|
|
|
def remove_repository(name)
|
2013-02-15 00:10:18 +01:00
|
|
|
system("#{gitlab_shell_user_home}/gitlab-shell/bin/gitlab-projects rm-project #{name}.git")
|
2012-03-05 23:26:40 +01:00
|
|
|
end
|
|
|
|
|
2013-02-04 14:07:56 +01:00
|
|
|
# Add new key to gitlab-shell
|
2013-02-04 13:28:10 +01:00
|
|
|
#
|
2013-02-04 14:07:56 +01:00
|
|
|
# Ex.
|
2013-02-05 10:12:15 +01:00
|
|
|
# add_key("key-42", "sha-rsa ...")
|
2013-02-04 14:07:56 +01:00
|
|
|
#
|
2013-02-05 10:12:15 +01:00
|
|
|
def add_key(key_id, key_content)
|
2013-02-15 00:10:18 +01:00
|
|
|
system("#{gitlab_shell_user_home}/gitlab-shell/bin/gitlab-keys add-key #{key_id} \"#{key_content}\"")
|
2013-02-04 14:07:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Remove ssh key from gitlab shell
|
2013-01-28 16:39:02 +01:00
|
|
|
#
|
|
|
|
# Ex.
|
2013-02-05 10:12:15 +01:00
|
|
|
# remove_key("key-342", "sha-rsa ...")
|
2013-01-28 16:39:02 +01:00
|
|
|
#
|
2013-02-05 10:12:15 +01:00
|
|
|
def remove_key(key_id, key_content)
|
2013-02-15 00:10:18 +01:00
|
|
|
system("#{gitlab_shell_user_home}/gitlab-shell/bin/gitlab-keys rm-key #{key_id} \"#{key_content}\"")
|
2013-01-28 16:39:02 +01:00
|
|
|
end
|
|
|
|
|
2013-03-21 21:11:08 +01:00
|
|
|
# Add empty directory for storing repositories
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# add_namespace("gitlab")
|
|
|
|
#
|
|
|
|
def add_namespace(name)
|
|
|
|
FileUtils.mkdir(full_path(name), mode: 0770) unless exists?(name)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Remove directory from repositories storage
|
|
|
|
# Every repository inside this directory will be removed too
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# rm_namespace("gitlab")
|
|
|
|
#
|
|
|
|
def rm_namespace(name)
|
|
|
|
FileUtils.rm_r(full_path(name), force: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Move namespace directory inside repositories storage
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# mv_namespace("gitlab", "gitlabhq")
|
|
|
|
#
|
|
|
|
def mv_namespace(old_name, new_name)
|
|
|
|
return false if exists?(new_name) || !exists?(old_name)
|
|
|
|
|
|
|
|
FileUtils.mv(full_path(old_name), full_path(new_name))
|
|
|
|
end
|
|
|
|
|
|
|
|
# Remove GitLab Satellites for provided path (namespace or repo dir)
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# rm_satellites("gitlab")
|
|
|
|
#
|
|
|
|
# rm_satellites("gitlab/gitlab-ci.git")
|
|
|
|
#
|
|
|
|
def rm_satellites(path)
|
|
|
|
raise ArgumentError.new("Path can't be blank") if path.blank?
|
|
|
|
|
|
|
|
satellites_path = File.join(Gitlab.config.satellites.path, path)
|
|
|
|
FileUtils.rm_r(satellites_path, force: true)
|
|
|
|
end
|
|
|
|
|
2012-08-28 23:04:06 +02:00
|
|
|
def url_to_repo path
|
2013-02-11 18:16:59 +01:00
|
|
|
Gitlab.config.gitlab_shell.ssh_path_prefix + "#{path}.git"
|
2012-08-28 23:04:06 +02:00
|
|
|
end
|
2013-03-12 11:37:53 +01:00
|
|
|
|
2013-03-21 21:11:08 +01:00
|
|
|
protected
|
|
|
|
|
2013-02-15 00:10:18 +01:00
|
|
|
def gitlab_shell_user_home
|
|
|
|
File.expand_path("~#{Gitlab.config.gitlab_shell.ssh_user}")
|
|
|
|
end
|
|
|
|
|
2013-03-21 21:11:08 +01:00
|
|
|
def repos_path
|
|
|
|
Gitlab.config.gitlab_shell.repos_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def full_path(dir_name)
|
|
|
|
raise ArgumentError.new("Directory name can't be blank") if dir_name.blank?
|
|
|
|
|
|
|
|
File.join(repos_path, dir_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def exists?(dir_name)
|
|
|
|
File.exists?(full_path(dir_name))
|
|
|
|
end
|
2011-12-04 00:44:59 +01:00
|
|
|
end
|
|
|
|
end
|