2012-05-26 13:37:49 +03:00
|
|
|
module Gitlab
|
2013-02-04 15:07:56 +02:00
|
|
|
class Shell
|
2011-12-04 01:44:59 +02:00
|
|
|
class AccessDenied < StandardError; end
|
2012-09-07 08:16:29 +03:00
|
|
|
|
2013-02-04 15:07:56 +02:00
|
|
|
# Init new repository
|
2013-01-28 21:02:10 +02:00
|
|
|
#
|
2013-02-04 15:07:56 +02:00
|
|
|
# name - project path with namespace
|
2013-01-28 17:39:02 +02:00
|
|
|
#
|
|
|
|
# Ex.
|
2013-02-04 15:07:56 +02:00
|
|
|
# add_repository("gitlab/gitlab-ci")
|
2013-01-28 17:39:02 +02:00
|
|
|
#
|
2013-02-04 15:07:56 +02:00
|
|
|
def add_repository(name)
|
|
|
|
system("/home/git/gitlab-shell/bin/gitlab-projects add-project #{name}.git")
|
2012-11-21 08:54:05 +03:00
|
|
|
end
|
|
|
|
|
2013-02-11 19:41:02 +02: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)
|
|
|
|
system("/home/git/gitlab-shell/bin/gitlab-projects import-project #{name}.git #{url}")
|
|
|
|
end
|
|
|
|
|
2013-02-04 14:28:10 +02:00
|
|
|
# Remove repository from file system
|
2013-01-28 17:22:45 +02:00
|
|
|
#
|
|
|
|
# name - project path with namespace
|
|
|
|
#
|
|
|
|
# Ex.
|
|
|
|
# remove_repository("gitlab/gitlab-ci")
|
|
|
|
#
|
|
|
|
def remove_repository(name)
|
2013-02-04 15:07:56 +02:00
|
|
|
system("/home/git/gitlab-shell/bin/gitlab-projects rm-project #{name}.git")
|
2012-03-06 00:26:40 +02:00
|
|
|
end
|
|
|
|
|
2013-02-04 15:07:56 +02:00
|
|
|
# Add new key to gitlab-shell
|
2013-02-04 14:28:10 +02:00
|
|
|
#
|
2013-02-04 15:07:56 +02:00
|
|
|
# Ex.
|
2013-02-05 11:12:15 +02:00
|
|
|
# add_key("key-42", "sha-rsa ...")
|
2013-02-04 15:07:56 +02:00
|
|
|
#
|
2013-02-05 11:12:15 +02:00
|
|
|
def add_key(key_id, key_content)
|
|
|
|
system("/home/git/gitlab-shell/bin/gitlab-keys add-key #{key_id} \"#{key_content}\"")
|
2013-02-04 15:07:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Remove ssh key from gitlab shell
|
2013-01-28 17:39:02 +02:00
|
|
|
#
|
|
|
|
# Ex.
|
2013-02-05 11:12:15 +02:00
|
|
|
# remove_key("key-342", "sha-rsa ...")
|
2013-01-28 17:39:02 +02:00
|
|
|
#
|
2013-02-05 11:12:15 +02:00
|
|
|
def remove_key(key_id, key_content)
|
|
|
|
system("/home/git/gitlab-shell/bin/gitlab-keys rm-key #{key_id} \"#{key_content}\"")
|
2013-01-28 17:39:02 +02:00
|
|
|
end
|
|
|
|
|
2013-02-04 15:07:56 +02:00
|
|
|
|
2012-08-29 00:04:06 +03:00
|
|
|
def url_to_repo path
|
2013-02-11 19:16:59 +02:00
|
|
|
Gitlab.config.gitlab_shell.ssh_path_prefix + "#{path}.git"
|
2012-08-29 00:04:06 +03:00
|
|
|
end
|
2011-12-04 01:44:59 +02:00
|
|
|
end
|
|
|
|
end
|