gitlab-org--gitlab-foss/lib/gitlab/backend/shell.rb

51 lines
1.2 KiB
Ruby
Raw Normal View History

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