Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
03141bfc
Commit
03141bfc
authored
Oct 29, 2013
by
Nigel Kukard
Committed by
Dmitriy Zaporozhets
Nov 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Escape strings
Signed-off-by:
Nigel Kukard
<
nkukard@lbsd.net
>
parent
35068315
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
12 deletions
+14
-12
lib/gitlab/backend/shell.rb
lib/gitlab/backend/shell.rb
+14
-12
No files found.
lib/gitlab/backend/shell.rb
View file @
03141bfc
require
"shellwords"
module
Gitlab
class
Shell
class
AccessDenied
<
StandardError
;
end
...
...
@@ -10,7 +12,7 @@ module Gitlab
# add_repository("gitlab/gitlab-ci")
#
def
add_repository
(
name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"add-project"
,
"
#{
name
}
.git"
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"add-project"
,
Shellwords
.
shellwords
(
"
#{
name
}
.git"
)
end
# Import repository
...
...
@@ -21,7 +23,7 @@ module Gitlab
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
#
def
import_repository
(
name
,
url
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"import-project"
,
"
#{
name
}
.git"
,
url
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"import-project"
,
Shellwords
.
shellwords
(
"
#{
name
}
.git"
),
Shellwords
.
shellwords
(
url
)
end
# Move repository
...
...
@@ -33,7 +35,7 @@ module Gitlab
# 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"
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"mv-project"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
"
#{
new_path
}
.git"
)
end
# Update HEAD for repository
...
...
@@ -45,7 +47,7 @@ module Gitlab
# update_repository_head("gitlab/gitlab-ci", "3-1-stable")
#
def
update_repository_head
(
path
,
branch
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"update-head"
,
"
#{
path
}
.git"
,
branch
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"update-head"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
branch
)
end
# Fork repository to new namespace
...
...
@@ -57,7 +59,7 @@ module Gitlab
# fork_repository("gitlab/gitlab-ci", "randx")
#
def
fork_repository
(
path
,
fork_namespace
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"fork-project"
,
"
#{
path
}
.git"
,
fork_namespace
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"fork-project"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
fork_namespace
)
end
# Remove repository from file system
...
...
@@ -68,7 +70,7 @@ module Gitlab
# remove_repository("gitlab/gitlab-ci")
#
def
remove_repository
(
name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-project"
,
"
#{
name
}
.git"
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-project"
,
Shellwords
.
shellwords
(
"
#{
name
}
.git"
)
end
# Add repository branch from passed ref
...
...
@@ -81,7 +83,7 @@ module Gitlab
# add_branch("gitlab/gitlab-ci", "4-0-stable", "master")
#
def
add_branch
(
path
,
branch_name
,
ref
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-branch"
,
"
#{
path
}
.git"
,
branch_name
,
ref
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-branch"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
branch_name
),
Shellwords
.
shellwords
(
ref
)
end
# Remove repository branch
...
...
@@ -93,7 +95,7 @@ module Gitlab
# rm_branch("gitlab/gitlab-ci", "4-0-stable")
#
def
rm_branch
(
path
,
branch_name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-branch"
,
"
#{
path
}
.git"
,
branch_name
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-branch"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
branch_name
)
end
# Add repository tag from passed ref
...
...
@@ -106,7 +108,7 @@ module Gitlab
# add_tag("gitlab/gitlab-ci", "v4.0", "master")
#
def
add_tag
(
path
,
tag_name
,
ref
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-tag"
,
"
#{
path
}
.git"
,
tag_name
,
ref
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-tag"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
tag_name
),
Shellwords
.
shellwords
(
ref
)
end
# Remove repository tag
...
...
@@ -118,7 +120,7 @@ module Gitlab
# rm_tag("gitlab/gitlab-ci", "v4.0")
#
def
rm_tag
(
path
,
tag_name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-tag"
,
"
#{
path
}
.git"
,
tag_name
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-tag"
,
Shellwords
.
shellwords
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
tag_name
)
end
# Add new key to gitlab-shell
...
...
@@ -127,7 +129,7 @@ module Gitlab
# add_key("key-42", "sha-rsa ...")
#
def
add_key
(
key_id
,
key_content
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"add-key"
,
key_id
,
key_content
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"add-key"
,
Shellwords
.
shellwords
(
key_id
),
Shellwords
.
shellwords
(
key_content
)
end
# Remove ssh key from gitlab shell
...
...
@@ -136,7 +138,7 @@ module Gitlab
# remove_key("key-342", "sha-rsa ...")
#
def
remove_key
(
key_id
,
key_content
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"rm-key"
,
key_id
,
key_content
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"rm-key"
,
Shellwords
.
shellwords
(
key_id
),
Shellwords
.
shellwords
(
key_content
)
end
# Remove all ssh keys from gitlab shell
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment