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
Jérome Perrin
gitlab-ce
Commits
d1b489e0
Commit
d1b489e0
authored
Nov 06, 2014
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Revert "Don't output to stdout from lib non-interactive methods""
This reverts commit
b33d4bc2
.
parent
b33d4bc2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
14 deletions
+40
-14
lib/gitlab/backend/shell.rb
lib/gitlab/backend/shell.rb
+24
-13
lib/gitlab/git_ref_validator.rb
lib/gitlab/git_ref_validator.rb
+2
-1
lib/gitlab/utils.rb
lib/gitlab/utils.rb
+14
-0
No files found.
lib/gitlab/backend/shell.rb
View file @
d1b489e0
...
...
@@ -16,7 +16,8 @@ module Gitlab
# add_repository("gitlab/gitlab-ci")
#
def
add_repository
(
name
)
system
gitlab_shell_projects_path
,
'add-project'
,
"
#{
name
}
.git"
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'add-project'
,
"
#{
name
}
.git"
])
end
# Import repository
...
...
@@ -27,7 +28,8 @@ module Gitlab
# import_repository("gitlab/gitlab-ci", "https://github.com/randx/six.git")
#
def
import_repository
(
name
,
url
)
system
gitlab_shell_projects_path
,
'import-project'
,
"
#{
name
}
.git"
,
url
,
'240'
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'import-project'
,
"
#{
name
}
.git"
,
url
,
'240'
])
end
# Move repository
...
...
@@ -39,7 +41,8 @@ module Gitlab
# mv_repository("gitlab/gitlab-ci", "randx/gitlab-ci-new.git")
#
def
mv_repository
(
path
,
new_path
)
system
gitlab_shell_projects_path
,
'mv-project'
,
"
#{
path
}
.git"
,
"
#{
new_path
}
.git"
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'mv-project'
,
"
#{
path
}
.git"
,
"
#{
new_path
}
.git"
])
end
# Update HEAD for repository
...
...
@@ -51,7 +54,8 @@ module Gitlab
# update_repository_head("gitlab/gitlab-ci", "3-1-stable")
#
def
update_repository_head
(
path
,
branch
)
system
gitlab_shell_projects_path
,
'update-head'
,
"
#{
path
}
.git"
,
branch
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'update-head'
,
"
#{
path
}
.git"
,
branch
])
end
# Fork repository to new namespace
...
...
@@ -63,7 +67,8 @@ module Gitlab
# fork_repository("gitlab/gitlab-ci", "randx")
#
def
fork_repository
(
path
,
fork_namespace
)
system
gitlab_shell_projects_path
,
'fork-project'
,
"
#{
path
}
.git"
,
fork_namespace
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'fork-project'
,
"
#{
path
}
.git"
,
fork_namespace
])
end
# Remove repository from file system
...
...
@@ -74,7 +79,8 @@ module Gitlab
# remove_repository("gitlab/gitlab-ci")
#
def
remove_repository
(
name
)
system
gitlab_shell_projects_path
,
'rm-project'
,
"
#{
name
}
.git"
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'rm-project'
,
"
#{
name
}
.git"
])
end
# Add repository branch from passed ref
...
...
@@ -87,7 +93,8 @@ module Gitlab
# add_branch("gitlab/gitlab-ci", "4-0-stable", "master")
#
def
add_branch
(
path
,
branch_name
,
ref
)
system
gitlab_shell_projects_path
,
'create-branch'
,
"
#{
path
}
.git"
,
branch_name
,
ref
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'create-branch'
,
"
#{
path
}
.git"
,
branch_name
,
ref
])
end
# Remove repository branch
...
...
@@ -99,7 +106,8 @@ module Gitlab
# rm_branch("gitlab/gitlab-ci", "4-0-stable")
#
def
rm_branch
(
path
,
branch_name
)
system
gitlab_shell_projects_path
,
'rm-branch'
,
"
#{
path
}
.git"
,
branch_name
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'rm-branch'
,
"
#{
path
}
.git"
,
branch_name
])
end
# Add repository tag from passed ref
...
...
@@ -117,7 +125,7 @@ module Gitlab
cmd
=
%W(
#{
gitlab_shell_path
}
/bin/gitlab-projects create-tag
#{
path
}
.git
#{
tag_name
}
#{
ref
}
)
cmd
<<
message
unless
message
.
nil?
||
message
.
empty?
system
*
cmd
Gitlab
::
Utils
.
system_silent
(
cmd
)
end
# Remove repository tag
...
...
@@ -129,7 +137,8 @@ module Gitlab
# rm_tag("gitlab/gitlab-ci", "v4.0")
#
def
rm_tag
(
path
,
tag_name
)
system
gitlab_shell_projects_path
,
'rm-tag'
,
"
#{
path
}
.git"
,
tag_name
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_projects_path
,
'rm-tag'
,
"
#{
path
}
.git"
,
tag_name
])
end
# Add new key to gitlab-shell
...
...
@@ -138,7 +147,8 @@ module Gitlab
# add_key("key-42", "sha-rsa ...")
#
def
add_key
(
key_id
,
key_content
)
system
gitlab_shell_keys_path
,
'add-key'
,
key_id
,
key_content
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_keys_path
,
'add-key'
,
key_id
,
key_content
])
end
# Batch-add keys to authorized_keys
...
...
@@ -157,7 +167,8 @@ module Gitlab
# remove_key("key-342", "sha-rsa ...")
#
def
remove_key
(
key_id
,
key_content
)
system
gitlab_shell_keys_path
,
'rm-key'
,
key_id
,
key_content
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_keys_path
,
'rm-key'
,
key_id
,
key_content
])
end
# Remove all ssh keys from gitlab shell
...
...
@@ -166,7 +177,7 @@ module Gitlab
# remove_all_keys
#
def
remove_all_keys
system
gitlab_shell_keys_path
,
'clear'
Gitlab
::
Utils
.
system_silent
([
gitlab_shell_keys_path
,
'clear'
])
end
# Add empty directory for storing repositories
...
...
lib/gitlab/git_ref_validator.rb
View file @
d1b489e0
...
...
@@ -5,7 +5,8 @@ module Gitlab
#
# Returns true for a valid reference name, false otherwise
def
validate
(
ref_name
)
system
*
%W(git check-ref-format refs/
#{
ref_name
}
)
Gitlab
::
Utils
.
system_silent
(
%W(git check-ref-format refs/
#{
ref_name
}
)
)
==
0
end
end
end
lib/gitlab/utils.rb
0 → 100644
View file @
d1b489e0
module
Gitlab
module
Utils
extend
self
# Run system command without outputting to stdout.
#
# @param cmd [Array<String>]
# @return [Integer] exit status
def
system_silent
(
cmd
)
IO
.
popen
(
cmd
).
close
$?
.
exitstatus
end
end
end
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