Commit 9f1a4acf authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #2207 from koenpunt/system-to-fileutils

replaced system() calls with FileUtils.* methods
parents 546dd4c2 6b9177ca
...@@ -52,7 +52,7 @@ class Namespace < ActiveRecord::Base ...@@ -52,7 +52,7 @@ class Namespace < ActiveRecord::Base
def ensure_dir_exist def ensure_dir_exist
unless dir_exists? unless dir_exists?
system("mkdir -m 770 #{namespace_full_path}") FileUtils.mkdir( namespace_full_path, mode: 0770 )
end end
end end
...@@ -72,10 +72,11 @@ class Namespace < ActiveRecord::Base ...@@ -72,10 +72,11 @@ class Namespace < ActiveRecord::Base
raise "Already exists" raise "Already exists"
end end
if system("mv #{old_path} #{new_path}") begin
FileUtils.mv( old_path, new_path )
send_update_instructions send_update_instructions
@require_update_gitolite = true @require_update_gitolite = true
else rescue Exception => e
raise "Namespace move error #{old_path} #{new_path}" raise "Namespace move error #{old_path} #{new_path}"
end end
end end
...@@ -88,7 +89,7 @@ class Namespace < ActiveRecord::Base ...@@ -88,7 +89,7 @@ class Namespace < ActiveRecord::Base
def rm_dir def rm_dir
dir_path = File.join(Gitlab.config.gitolite.repos_path, path) dir_path = File.join(Gitlab.config.gitolite.repos_path, path)
system("rm -rf #{dir_path}") FileUtils.rm_r( dir_path, force: true )
end end
def send_update_instructions def send_update_instructions
......
...@@ -16,7 +16,7 @@ module Gitlab ...@@ -16,7 +16,7 @@ module Gitlab
def execute def execute
# Create new dir if missing # Create new dir if missing
new_dir_path = File.join(Gitlab.config.gitolite.repos_path, new_dir) new_dir_path = File.join(Gitlab.config.gitolite.repos_path, new_dir)
system("mkdir -m 770 #{new_dir_path}") unless File.exists?(new_dir_path) FileUtils.mkdir( new_dir_path, mode: 0770 ) unless File.exists?(new_dir_path)
old_path = File.join(Gitlab.config.gitolite.repos_path, old_dir, "#{project.path}.git") old_path = File.join(Gitlab.config.gitolite.repos_path, old_dir, "#{project.path}.git")
new_path = File.join(new_dir_path, "#{project.path}.git") new_path = File.join(new_dir_path, "#{project.path}.git")
...@@ -25,12 +25,13 @@ module Gitlab ...@@ -25,12 +25,13 @@ module Gitlab
raise ProjectMoveError.new("Destination #{new_path} already exists") raise ProjectMoveError.new("Destination #{new_path} already exists")
end end
if system("mv #{old_path} #{new_path}") begin
FileUtils.mv( old_path, new_path )
log_info "Project #{project.name} was moved from #{old_path} to #{new_path}" log_info "Project #{project.name} was moved from #{old_path} to #{new_path}"
true true
else rescue Exception => e
message = "Project #{project.name} cannot be moved from #{old_path} to #{new_path}" message = "Project #{project.name} cannot be moved from #{old_path} to #{new_path}"
log_info "Error! #{message}" log_info "Error! #{message} (#{e.message})"
raise ProjectMoveError.new(message) raise ProjectMoveError.new(message)
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment