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
71f34f77
Commit
71f34f77
authored
Nov 05, 2013
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5500 from nkukard/esc-strings2
More escaping
parents
2ee04b12
c46eaca9
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
17 deletions
+19
-17
lib/backup/database.rb
lib/backup/database.rb
+6
-5
lib/backup/repository.rb
lib/backup/repository.rb
+5
-4
spec/models/gollum_wiki_spec.rb
spec/models/gollum_wiki_spec.rb
+2
-2
spec/models/wiki_page_spec.rb
spec/models/wiki_page_spec.rb
+2
-2
spec/support/test_env.rb
spec/support/test_env.rb
+4
-4
No files found.
lib/backup/database.rb
View file @
71f34f77
require
'yaml'
require
'shellwords'
module
Backup
class
Database
...
...
@@ -13,20 +14,20 @@ module Backup
def
dump
case
config
[
"adapter"
]
when
/^mysql/
then
system
(
"mysqldump
#{
mysql_args
}
#{
config
[
'database'
]
}
>
#{
db_file_name
}
"
)
system
(
"mysqldump
#{
mysql_args
}
#{
Shellwords
.
shellescape
(
config
[
'database'
])
}
>
#{
Shellwords
.
shellescape
(
db_file_name
)
}
"
)
when
"postgresql"
then
pg_env
system
(
"pg_dump
#{
config
[
'database'
]
}
>
#{
db_file_name
}
"
)
system
(
"pg_dump
#{
Shellwords
.
shellescape
(
config
[
'database'
])
}
>
#{
db_file_name
}
"
)
end
end
def
restore
case
config
[
"adapter"
]
when
/^mysql/
then
system
(
"mysql
#{
mysql_args
}
#{
config
[
'database'
]
}
<
#{
db_file_name
}
"
)
system
(
"mysql
#{
mysql_args
}
#{
Shellwords
.
shellescape
(
config
[
'database'
])
}
<
#{
db_file_name
}
"
)
when
"postgresql"
then
pg_env
system
(
"psql
#{
config
[
'database'
]
}
-f
#{
db_file_name
}
"
)
system
(
"psql
#{
Shellwords
.
shellescape
(
config
[
'database'
])
}
-f
#{
Shellwords
.
shellescape
(
db_file_name
)
}
"
)
end
end
...
...
@@ -45,7 +46,7 @@ module Backup
'encoding'
=>
'--default-character-set'
,
'password'
=>
'--password'
}
args
.
map
{
|
opt
,
arg
|
"
#{
arg
}
=
'
#{
config
[
opt
]
}
'
"
if
config
[
opt
]
}.
compact
.
join
(
' '
)
args
.
map
{
|
opt
,
arg
|
"
#{
arg
}
=
#{
Shellwords
.
shellescape
(
config
[
opt
])
}
"
if
config
[
opt
]
}.
compact
.
join
(
' '
)
end
def
pg_env
...
...
lib/backup/repository.rb
View file @
71f34f77
require
'yaml'
require
'shellwords'
module
Backup
class
Repository
...
...
@@ -18,7 +19,7 @@ module Backup
# Create namespace dir if missing
FileUtils
.
mkdir_p
(
File
.
join
(
backup_repos_path
,
project
.
namespace
.
path
))
if
project
.
namespace
if
system
(
"cd
#{
path_to_repo
(
project
)
}
> /dev/null 2>&1 && git bundle create
#{
path_to_bundle
(
project
)
}
--all > /dev/null 2>&1"
)
if
system
(
"cd
#{
Shellwords
.
shellescape
(
path_to_repo
(
project
))
}
> /dev/null 2>&1 && git bundle create
#{
Shellwords
.
shellescape
(
path_to_bundle
(
project
)
)
}
--all > /dev/null 2>&1"
)
puts
"[DONE]"
.
green
else
puts
"[FAILED]"
.
red
...
...
@@ -30,7 +31,7 @@ module Backup
print
" *
#{
wiki
.
path_with_namespace
}
... "
if
wiki
.
empty?
puts
" [SKIPPED]"
.
cyan
elsif
system
(
"cd
#{
path_to_repo
(
wiki
)
}
> /dev/null 2>&1 && git bundle create
#{
path_to_bundle
(
wiki
)
}
--all > /dev/null 2>&1"
)
elsif
system
(
"cd
#{
Shellwords
.
shellescape
(
path_to_repo
(
wiki
))
}
> /dev/null 2>&1 && git bundle create
#{
Shellwords
.
shellescape
(
path_to_bundle
(
wiki
)
)
}
--all > /dev/null 2>&1"
)
puts
" [DONE]"
.
green
else
puts
" [FAILED]"
.
red
...
...
@@ -53,7 +54,7 @@ module Backup
project
.
namespace
.
ensure_dir_exist
if
project
.
namespace
if
system
(
"git clone --bare
#{
path_to_bundle
(
project
)
}
#{
path_to_repo
(
project
)
}
> /dev/null 2>&1"
)
if
system
(
"git clone --bare
#{
Shellwords
.
shellescape
(
path_to_bundle
(
project
))
}
#{
Shellwords
.
shellescape
(
path_to_repo
(
project
)
)
}
> /dev/null 2>&1"
)
puts
"[DONE]"
.
green
else
puts
"[FAILED]"
.
red
...
...
@@ -63,7 +64,7 @@ module Backup
if
File
.
exists?
(
path_to_bundle
(
wiki
))
print
" *
#{
wiki
.
path_with_namespace
}
... "
if
system
(
"git clone --bare
#{
path_to_bundle
(
wiki
)
}
#{
path_to_repo
(
wiki
)
}
> /dev/null 2>&1"
)
if
system
(
"git clone --bare
#{
Shellwords
.
shellescape
(
path_to_bundle
(
wiki
))
}
#{
Shellwords
.
shellescape
(
path_to_repo
(
wiki
)
)
}
> /dev/null 2>&1"
)
puts
" [DONE]"
.
green
else
puts
" [FAILED]"
.
red
...
...
spec/models/gollum_wiki_spec.rb
View file @
71f34f77
require
"spec_helper"
require
"shellwords"
describe
GollumWiki
do
def
create_temp_repo
(
path
)
FileUtils
.
mkdir_p
path
command
=
"git init --quiet
#{
path
}
;"
system
(
command
)
system
(
"git init --quiet
#{
Shellwords
.
shellescape
(
path
)
}
"
)
end
def
remove_temp_repo
(
path
)
...
...
spec/models/wiki_page_spec.rb
View file @
71f34f77
require
"spec_helper"
require
"shellwords"
describe
WikiPage
do
def
create_temp_repo
(
path
)
FileUtils
.
mkdir_p
path
command
=
"git init --quiet
#{
path
}
;"
system
(
command
)
system
(
"git init --quiet
#{
Shellwords
.
shellescape
(
path
)
}
"
)
end
def
remove_temp_repo
(
path
)
...
...
spec/support/test_env.rb
View file @
71f34f77
require
'rspec/mocks'
require
'shellwords'
module
TestEnv
extend
self
...
...
@@ -102,7 +103,7 @@ module TestEnv
repo
=
repo
(
namespace
,
name
)
# Symlink tmp/repositories/gitlabhq to tmp/test-git-base-path/gitlabhq
system
(
"ln -s -f
#{
seed_repo_path
()
}
#{
repo
}
"
)
system
(
"ln -s -f
#{
Shellwords
.
shellescape
(
seed_repo_path
())
}
#{
Shellwords
.
shellescape
(
repo
)
}
"
)
create_satellite
(
repo
,
namespace
,
name
)
end
...
...
@@ -166,12 +167,11 @@ module TestEnv
# Symlink tmp/satellite/gitlabhq to tmp/test-git-base-path/satellite/gitlabhq, create the directory if it doesn't exist already
satellite_dir
=
File
.
dirname
(
satellite_repo
)
FileUtils
.
mkdir_p
(
satellite_dir
)
unless
File
.
exists?
(
satellite_dir
)
system
(
"ln -s -f
#{
seed_satellite_path
}
#{
satellite_repo
}
"
)
system
(
"ln -s -f
#{
Shellwords
.
shellescape
(
seed_satellite_path
)
}
#{
Shellwords
.
shellescape
(
satellite_repo
)
}
"
)
end
def
create_temp_repo
(
path
)
FileUtils
.
mkdir_p
path
command
=
"git init --quiet --bare
#{
path
}
;"
system
(
command
)
system
(
"git init --quiet --bare
#{
Shellwords
.
shellescape
(
path
)
}
"
)
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