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
b88f27c8
Commit
b88f27c8
authored
Jan 15, 2019
by
Gabriel Mazetto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract BaseRepositoryService from MigrateRepository
This will serve as new base class for both Migrate and Rollback
parent
cf52488c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
45 deletions
+58
-45
app/services/projects/hashed_storage/base_repository_service.rb
...rvices/projects/hashed_storage/base_repository_service.rb
+57
-0
app/services/projects/hashed_storage/migrate_repository_service.rb
...ces/projects/hashed_storage/migrate_repository_service.rb
+1
-45
No files found.
app/services/projects/hashed_storage/base_repository_service.rb
0 → 100644
View file @
b88f27c8
# frozen_string_literal: true
module
Projects
module
HashedStorage
# Returned when there is an error with the Hashed Storage migration
RepositoryMigrationError
=
Class
.
new
(
StandardError
)
# Returned when there is an error with the Hashed Storage rollback
RepositoryRollbackError
=
Class
.
new
(
StandardError
)
class
BaseRepositoryService
<
BaseService
include
Gitlab
::
ShellAdapter
attr_reader
:old_disk_path
,
:new_disk_path
,
:old_wiki_disk_path
,
:old_storage_version
,
:logger
,
:move_wiki
def
initialize
(
project
,
old_disk_path
,
logger:
nil
)
@project
=
project
@logger
=
logger
||
Rails
.
logger
@old_disk_path
=
old_disk_path
@old_wiki_disk_path
=
"
#{
old_disk_path
}
.wiki"
@move_wiki
=
has_wiki?
end
protected
# rubocop: disable CodeReuse/ActiveRecord
def
has_wiki?
gitlab_shell
.
exists?
(
project
.
repository_storage
,
"
#{
old_wiki_disk_path
}
.git"
)
end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def
move_repository
(
from_name
,
to_name
)
from_exists
=
gitlab_shell
.
exists?
(
project
.
repository_storage
,
"
#{
from_name
}
.git"
)
to_exists
=
gitlab_shell
.
exists?
(
project
.
repository_storage
,
"
#{
to_name
}
.git"
)
# If we don't find the repository on either original or target we should log that as it could be an issue if the
# project was not originally empty.
if
!
from_exists
&&
!
to_exists
logger
.
warn
"Can't find a repository on either source or target paths for
#{
project
.
full_path
}
(ID=
#{
project
.
id
}
) ..."
return
false
elsif
!
from_exists
# Repository have been moved already.
return
true
end
gitlab_shell
.
mv_repository
(
project
.
repository_storage
,
from_name
,
to_name
)
end
# rubocop: enable CodeReuse/ActiveRecord
def
rollback_folder_move
move_repository
(
new_disk_path
,
old_disk_path
)
move_repository
(
"
#{
new_disk_path
}
.wiki"
,
old_wiki_disk_path
)
end
end
end
end
app/services/projects/hashed_storage/migrate_repository_service.rb
View file @
b88f27c8
...
...
@@ -2,21 +2,7 @@
module
Projects
module
HashedStorage
RepositoryMigrationError
=
Class
.
new
(
StandardError
)
class
MigrateRepositoryService
<
BaseService
include
Gitlab
::
ShellAdapter
attr_reader
:old_disk_path
,
:new_disk_path
,
:old_wiki_disk_path
,
:old_storage_version
,
:logger
,
:move_wiki
def
initialize
(
project
,
old_disk_path
,
logger:
nil
)
@project
=
project
@logger
=
logger
||
Rails
.
logger
@old_disk_path
=
old_disk_path
@old_wiki_disk_path
=
"
#{
old_disk_path
}
.wiki"
@move_wiki
=
has_wiki?
end
class
MigrateRepositoryService
<
BaseRepositoryService
def
execute
try_to_set_repository_read_only!
...
...
@@ -61,36 +47,6 @@ module Projects
raise
RepositoryMigrationError
,
migration_error
end
end
# rubocop: disable CodeReuse/ActiveRecord
def
has_wiki?
gitlab_shell
.
exists?
(
project
.
repository_storage
,
"
#{
old_wiki_disk_path
}
.git"
)
end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
def
move_repository
(
from_name
,
to_name
)
from_exists
=
gitlab_shell
.
exists?
(
project
.
repository_storage
,
"
#{
from_name
}
.git"
)
to_exists
=
gitlab_shell
.
exists?
(
project
.
repository_storage
,
"
#{
to_name
}
.git"
)
# If we don't find the repository on either original or target we should log that as it could be an issue if the
# project was not originally empty.
if
!
from_exists
&&
!
to_exists
logger
.
warn
"Can't find a repository on either source or target paths for
#{
project
.
full_path
}
(ID=
#{
project
.
id
}
) ..."
return
false
elsif
!
from_exists
# Repository have been moved already.
return
true
end
gitlab_shell
.
mv_repository
(
project
.
repository_storage
,
from_name
,
to_name
)
end
# rubocop: enable CodeReuse/ActiveRecord
def
rollback_folder_move
move_repository
(
new_disk_path
,
old_disk_path
)
move_repository
(
"
#{
new_disk_path
}
.wiki"
,
old_wiki_disk_path
)
end
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