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
40de1b46
Commit
40de1b46
authored
Mar 09, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert back services changes
(cherry picked from commit
2cc6aaec
)
parent
f0ce83b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
32 deletions
+13
-32
app/services/projects/import_export/project_tree_restorer.rb
app/services/projects/import_export/project_tree_restorer.rb
+3
-3
app/services/projects/import_export/relation_factory.rb
app/services/projects/import_export/relation_factory.rb
+10
-29
No files found.
app/services/projects/import_export/project_tree_restorer.rb
View file @
40de1b46
...
...
@@ -14,12 +14,12 @@ module Projects
json
=
IO
.
read
(
@path
)
tree_hash
=
ActiveSupport
::
JSON
.
decode
(
json
)
relation_hash
=
{}
project_params
=
tree_hash
.
reject
{
|
_key
,
value
|
value
.
is_a?
(
Array
)}
@project
=
::
Projects
::
CreateService
.
new
(
@user
,
project_params
.
except
(
'id'
)).
execute
ImportExport
.
project_tree
.
each
do
|
relation
|
next
if
tree_hash
[
relation
.
to_s
].
empty?
relation_hash
[
relation
.
to_s
]
=
create_relation
(
relation
,
tree_hash
[
relation
.
to_s
])
end
project_params
=
tree_hash
.
delete_if
{
|
_key
,
value
|
value
.
is_a?
(
Array
)}
@project
=
::
Projects
::
CreateService
.
new
(
@user
,
project_params
).
execute
@project
.
saved?
end
...
...
@@ -28,7 +28,7 @@ module Projects
def
create_relation
(
relation
,
relation_hash_list
)
relation_hash_list
.
map
do
|
relation_hash
|
Projects
::
ImportExport
::
RelationFactory
.
create
(
relation_sym:
relation
,
relation_hash:
relation_hash
,
project:
@project
,
user:
@user
)
relation_sym:
relation
,
relation_hash:
relation_hash
)
end
end
end
...
...
app/services/projects/import_export/relation_factory.rb
View file @
40de1b46
module
Projects
module
ImportExport
class
RelationFactory
module
RelationFactory
extend
self
OVERRIDES
=
{
snippets: :project_snippets
}
def
self
.
create
(
*
args
)
new
(
*
args
).
create
end
def
initialize
(
relation_sym
:,
relation_hash
:,
project
:,
user
:)
@relation_sym
=
parsed_relation_sym
(
relation_sym
)
@relation_hash
=
relation_hash
@project
=
project
@user
=
user
end
def
create
@relation_hash
.
delete
(
'id'
)
init_service_or_class
def
create
(
relation_sym
:,
relation_hash
:)
relation_sym
=
parse_relation_sym
(
relation_sym
)
klass
=
relation_class
(
relation_sym
)
relation_hash
.
delete
(
'id'
)
#screw IDs for now
klass
.
new
(
relation_hash
)
end
private
def
init_service_or_class
# Attempt service first
relation_service
.
new
(
@project
,
@user
,
@relation_hash
).
execute
rescue
NameError
relation_class
.
new
(
@relation_hash
)
end
def
relation_service
"
#{
@relation_sym
.
to_s
.
classify
}
::CreateService"
.
constantize
end
def
relation_class
@relation_sym
.
to_s
.
classify
.
constantize
def
relation_class
(
relation_sym
)
relation_sym
.
to_s
.
classify
.
constantize
end
def
parse
d
_relation_sym
(
relation_sym
)
def
parse_relation_sym
(
relation_sym
)
OVERRIDES
[
relation_sym
]
||
relation_sym
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