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
0
Merge Requests
0
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
iv
gitlab-ce
Commits
1ab324cb
Commit
1ab324cb
authored
Oct 31, 2013
by
Nigel Kukard
Committed by
Dmitriy Zaporozhets
Nov 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Best to escape strings not split them
Signed-off-by:
Nigel Kukard
<
nkukard@lbsd.net
>
parent
03141bfc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
lib/gitlab/backend/shell.rb
lib/gitlab/backend/shell.rb
+14
-14
No files found.
lib/gitlab/backend/shell.rb
View file @
1ab324cb
...
@@ -12,7 +12,7 @@ module Gitlab
...
@@ -12,7 +12,7 @@ module Gitlab
# add_repository("gitlab/gitlab-ci")
# add_repository("gitlab/gitlab-ci")
#
#
def
add_repository
(
name
)
def
add_repository
(
name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"add-project"
,
Shellwords
.
shell
words
(
"
#{
name
}
.git"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"add-project"
,
Shellwords
.
shell
escape
(
"
#{
name
}
.git"
)
end
end
# Import repository
# Import repository
...
@@ -23,7 +23,7 @@ module Gitlab
...
@@ -23,7 +23,7 @@ module Gitlab
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
#
#
def
import_repository
(
name
,
url
)
def
import_repository
(
name
,
url
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"import-project"
,
Shellwords
.
shell
words
(
"
#{
name
}
.git"
),
Shellwords
.
shellwords
(
url
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"import-project"
,
Shellwords
.
shell
escape
(
"
#{
name
}
.git"
),
Shellwords
.
shellescape
(
url
)
end
end
# Move repository
# Move repository
...
@@ -35,7 +35,7 @@ module Gitlab
...
@@ -35,7 +35,7 @@ module Gitlab
# mv_repository("gitlab/gitlab-ci", "randx/gitlab-ci-new.git")
# mv_repository("gitlab/gitlab-ci", "randx/gitlab-ci-new.git")
#
#
def
mv_repository
(
path
,
new_path
)
def
mv_repository
(
path
,
new_path
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"mv-project"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
"
#{
new_path
}
.git"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"mv-project"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
"
#{
new_path
}
.git"
)
end
end
# Update HEAD for repository
# Update HEAD for repository
...
@@ -47,7 +47,7 @@ module Gitlab
...
@@ -47,7 +47,7 @@ module Gitlab
# update_repository_head("gitlab/gitlab-ci", "3-1-stable")
# update_repository_head("gitlab/gitlab-ci", "3-1-stable")
#
#
def
update_repository_head
(
path
,
branch
)
def
update_repository_head
(
path
,
branch
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"update-head"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
branch
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"update-head"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
branch
)
end
end
# Fork repository to new namespace
# Fork repository to new namespace
...
@@ -59,18 +59,18 @@ module Gitlab
...
@@ -59,18 +59,18 @@ module Gitlab
# fork_repository("gitlab/gitlab-ci", "randx")
# fork_repository("gitlab/gitlab-ci", "randx")
#
#
def
fork_repository
(
path
,
fork_namespace
)
def
fork_repository
(
path
,
fork_namespace
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"fork-project"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
fork_namespace
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"fork-project"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
fork_namespace
)
end
end
# Remove repository from file system
# Remove repository from file system
#
#
#
name
- project path with namespace
#
path
- project path with namespace
#
#
# Ex.
# Ex.
# remove_repository("gitlab/gitlab-ci")
# remove_repository("gitlab/gitlab-ci")
#
#
def
remove_repository
(
name
)
def
remove_repository
(
path
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-project"
,
Shellwords
.
shell
words
(
"
#{
name
}
.git"
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-project"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
)
end
end
# Add repository branch from passed ref
# Add repository branch from passed ref
...
@@ -83,7 +83,7 @@ module Gitlab
...
@@ -83,7 +83,7 @@ module Gitlab
# add_branch("gitlab/gitlab-ci", "4-0-stable", "master")
# add_branch("gitlab/gitlab-ci", "4-0-stable", "master")
#
#
def
add_branch
(
path
,
branch_name
,
ref
)
def
add_branch
(
path
,
branch_name
,
ref
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-branch"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
branch_name
),
Shellwords
.
shellwords
(
ref
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-branch"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
branch_name
),
Shellwords
.
shellescape
(
ref
)
end
end
# Remove repository branch
# Remove repository branch
...
@@ -95,7 +95,7 @@ module Gitlab
...
@@ -95,7 +95,7 @@ module Gitlab
# rm_branch("gitlab/gitlab-ci", "4-0-stable")
# rm_branch("gitlab/gitlab-ci", "4-0-stable")
#
#
def
rm_branch
(
path
,
branch_name
)
def
rm_branch
(
path
,
branch_name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-branch"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
branch_name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-branch"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
branch_name
)
end
end
# Add repository tag from passed ref
# Add repository tag from passed ref
...
@@ -108,7 +108,7 @@ module Gitlab
...
@@ -108,7 +108,7 @@ module Gitlab
# add_tag("gitlab/gitlab-ci", "v4.0", "master")
# add_tag("gitlab/gitlab-ci", "v4.0", "master")
#
#
def
add_tag
(
path
,
tag_name
,
ref
)
def
add_tag
(
path
,
tag_name
,
ref
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-tag"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
tag_name
),
Shellwords
.
shellwords
(
ref
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"create-tag"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
tag_name
),
Shellwords
.
shellescape
(
ref
)
end
end
# Remove repository tag
# Remove repository tag
...
@@ -120,7 +120,7 @@ module Gitlab
...
@@ -120,7 +120,7 @@ module Gitlab
# rm_tag("gitlab/gitlab-ci", "v4.0")
# rm_tag("gitlab/gitlab-ci", "v4.0")
#
#
def
rm_tag
(
path
,
tag_name
)
def
rm_tag
(
path
,
tag_name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-tag"
,
Shellwords
.
shell
words
(
"
#{
path
}
.git"
),
Shellwords
.
shellwords
(
tag_name
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-projects"
,
"rm-tag"
,
Shellwords
.
shell
escape
(
"
#{
path
}
.git"
),
Shellwords
.
shellescape
(
tag_name
)
end
end
# Add new key to gitlab-shell
# Add new key to gitlab-shell
...
@@ -129,7 +129,7 @@ module Gitlab
...
@@ -129,7 +129,7 @@ module Gitlab
# add_key("key-42", "sha-rsa ...")
# add_key("key-42", "sha-rsa ...")
#
#
def
add_key
(
key_id
,
key_content
)
def
add_key
(
key_id
,
key_content
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"add-key"
,
Shellwords
.
shell
words
(
key_id
),
Shellwords
.
shellwords
(
key_content
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"add-key"
,
Shellwords
.
shell
escape
(
key_id
),
Shellwords
.
shellescape
(
key_content
)
end
end
# Remove ssh key from gitlab shell
# Remove ssh key from gitlab shell
...
@@ -138,7 +138,7 @@ module Gitlab
...
@@ -138,7 +138,7 @@ module Gitlab
# remove_key("key-342", "sha-rsa ...")
# remove_key("key-342", "sha-rsa ...")
#
#
def
remove_key
(
key_id
,
key_content
)
def
remove_key
(
key_id
,
key_content
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"rm-key"
,
Shellwords
.
shell
words
(
key_id
),
Shellwords
.
shellwords
(
key_content
)
system
"
#{
gitlab_shell_user_home
}
/gitlab-shell/bin/gitlab-keys"
,
"rm-key"
,
Shellwords
.
shell
escape
(
key_id
),
Shellwords
.
shellescape
(
key_content
)
end
end
# Remove all ssh keys from gitlab shell
# 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