Make gitlab works with gitlab-shell
This commit is contained in:
parent
6b9a609044
commit
27d9ac0fe8
9 changed files with 44 additions and 71 deletions
|
@ -1,27 +1,16 @@
|
|||
module Gitlab
|
||||
class Gitolite
|
||||
class Shell
|
||||
class AccessDenied < StandardError; end
|
||||
|
||||
def config
|
||||
Gitlab::GitoliteConfig.new
|
||||
end
|
||||
|
||||
# Add new key to gitlab-shell
|
||||
# Init new repository
|
||||
#
|
||||
# name - project path with namespace
|
||||
#
|
||||
# Ex.
|
||||
# add_key("randx", "sha-rsa ...")
|
||||
# add_repository("gitlab/gitlab-ci")
|
||||
#
|
||||
def add_key(username, key_content)
|
||||
# TODO: implement
|
||||
end
|
||||
|
||||
# Remove ssh key from gitlab shell
|
||||
#
|
||||
# Ex.
|
||||
# remove_key("sha-rsa")
|
||||
#
|
||||
def remove_key(key_content)
|
||||
# TODO: implement
|
||||
def add_repository(name)
|
||||
system("/home/git/gitlab-shell/bin/gitlab-projects add-project #{name}.git")
|
||||
end
|
||||
|
||||
# Remove repository from file system
|
||||
|
@ -32,26 +21,30 @@ module Gitlab
|
|||
# remove_repository("gitlab/gitlab-ci")
|
||||
#
|
||||
def remove_repository(name)
|
||||
# TODO: implement
|
||||
system("/home/git/gitlab-shell/bin/gitlab-projects rm-project #{name}.git")
|
||||
end
|
||||
|
||||
# Init new repository
|
||||
#
|
||||
# name - project path with namespace
|
||||
# Add new key to gitlab-shell
|
||||
#
|
||||
# Ex.
|
||||
# add_repository("gitlab/gitlab-ci")
|
||||
# add_key("randx", "sha-rsa ...")
|
||||
#
|
||||
def add_repository(name)
|
||||
# TODO: implement
|
||||
def add_key(username, key_content)
|
||||
system("/home/git/gitlab-shell/bin/gitlab-keys add-key #{username} \"#{key_content}\"")
|
||||
end
|
||||
|
||||
# Remove ssh key from gitlab shell
|
||||
#
|
||||
# Ex.
|
||||
# remove_key("sha-rsa")
|
||||
#
|
||||
def remove_key(key_content)
|
||||
system("/home/git/gitlab-shell/bin/gitlab-keys rm-key \"#{key_content}\"")
|
||||
end
|
||||
|
||||
|
||||
def url_to_repo path
|
||||
Gitlab.config.gitolite.ssh_path_prefix + "#{path}.git"
|
||||
end
|
||||
|
||||
def enable_automerge
|
||||
config.admin_all_repo!
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue