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
f34bbce1
Commit
f34bbce1
authored
Jan 16, 2020
by
Aleksei Lipniagov
Committed by
Kamil Trzciński
Jan 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop explicit UNIQUE_RELATIONS list from Import
Check that in-place instead of supporting the list.
parent
b27305da
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
13 deletions
+61
-13
ee/lib/ee/gitlab/import_export/relation_factory.rb
ee/lib/ee/gitlab/import_export/relation_factory.rb
+4
-4
lib/gitlab/import_export/relation_factory.rb
lib/gitlab/import_export/relation_factory.rb
+49
-9
spec/lib/gitlab/import_export/relation_factory_spec.rb
spec/lib/gitlab/import_export/relation_factory_spec.rb
+8
-0
No files found.
ee/lib/ee/gitlab/import_export/relation_factory.rb
View file @
f34bbce1
...
...
@@ -15,7 +15,7 @@ module EE
unprotect_access_levels:
'ProtectedBranch::UnprotectAccessLevel'
}.
freeze
EE_EXISTING_OBJECT_
CHECK
=
%i[DesignManagement::Design]
.
freeze
EE_EXISTING_OBJECT_
RELATIONS
=
%i[DesignManagement::Design]
.
freeze
class_methods
do
extend
::
Gitlab
::
Utils
::
Override
...
...
@@ -25,9 +25,9 @@ module EE
super
.
merge
(
EE_OVERRIDES
)
end
override
:existing_object_
check
def
existing_object_
check
super
+
EE_EXISTING_OBJECT_
CHECK
override
:existing_object_
relations
def
existing_object_
relations
super
+
EE_EXISTING_OBJECT_
RELATIONS
end
end
end
...
...
lib/gitlab/import_export/relation_factory.rb
View file @
f34bbce1
...
...
@@ -3,6 +3,8 @@
module
Gitlab
module
ImportExport
class
RelationFactory
include
Gitlab
::
Utils
::
StrongMemoize
prepend_if_ee
(
'::EE::Gitlab::ImportExport::RelationFactory'
)
# rubocop: disable Cop/InjectEnterpriseEditionModule
OVERRIDES
=
{
snippets: :project_snippets
,
...
...
@@ -40,7 +42,7 @@ module Gitlab
IMPORTED_OBJECT_MAX_RETRIES
=
5
.
freeze
EXISTING_OBJECT_
CHECK
=
%i[
EXISTING_OBJECT_
RELATIONS
=
%i[
milestone
milestones
label
...
...
@@ -58,9 +60,6 @@ module Gitlab
TOKEN_RESET_MODELS
=
%i[Project Namespace Ci::Trigger Ci::Build Ci::Runner ProjectHook]
.
freeze
# This represents all relations that have unique key on `project_id`
UNIQUE_RELATIONS
=
%i[project_feature ProjectCiCdSetting container_expiration_policy]
.
freeze
def
self
.
create
(
*
args
)
new
(
*
args
).
create
end
...
...
@@ -115,12 +114,18 @@ module Gitlab
OVERRIDES
end
def
self
.
existing_object_
check
EXISTING_OBJECT_
CHECK
def
self
.
existing_object_
relations
EXISTING_OBJECT_
RELATIONS
end
private
def
existing_object?
strong_memoize
(
:_existing_object
)
do
self
.
class
.
existing_object_relations
.
include?
(
@relation_name
)
||
unique_relation?
end
end
def
setup_models
case
@relation_name
when
:merge_request_diff_files
then
setup_diff
...
...
@@ -229,7 +234,7 @@ module Gitlab
end
def
update_group_references
return
unless
self
.
class
.
existing_object_check
.
include?
(
@relation_name
)
return
unless
existing_object?
return
unless
@relation_hash
[
'group_id'
]
@relation_hash
[
'group_id'
]
=
@project
.
namespace_id
...
...
@@ -322,7 +327,7 @@ module Gitlab
# Only find existing records to avoid mapping tables such as milestones
# Otherwise always create the record, skipping the extra SELECT clause.
@existing_or_new_object
||=
begin
if
self
.
class
.
existing_object_check
.
include?
(
@relation_name
)
if
existing_object?
attribute_hash
=
attribute_hash_for
([
'events'
])
existing_object
.
assign_attributes
(
attribute_hash
)
if
attribute_hash
.
any?
...
...
@@ -356,8 +361,43 @@ module Gitlab
!
Object
.
const_defined?
(
parsed_relation_hash
[
'type'
])
end
def
unique_relation?
strong_memoize
(
:unique_relation
)
do
project_foreign_key
.
present?
&&
(
has_unique_index_on_project_fk?
||
uses_project_fk_as_primary_key?
)
end
end
def
has_unique_index_on_project_fk?
cache
=
cached_has_unique_index_on_project_fk
table_name
=
relation_class
.
table_name
return
cache
[
table_name
]
if
cache
.
has_key?
(
table_name
)
index_exists
=
ActiveRecord
::
Base
.
connection
.
index_exists?
(
relation_class
.
table_name
,
project_foreign_key
,
unique:
true
)
cache
[
table_name
]
=
index_exists
end
# Avoid unnecessary DB requests
def
cached_has_unique_index_on_project_fk
Thread
.
current
[
:cached_has_unique_index_on_project_fk
]
||=
{}
end
def
uses_project_fk_as_primary_key?
relation_class
.
primary_key
==
project_foreign_key
end
# Should be `:project_id` for most of the cases, but this is more general
def
project_foreign_key
relation_class
.
reflect_on_association
(
:project
)
&
.
foreign_key
end
def
find_or_create_object!
if
UNIQUE_RELATIONS
.
include?
(
@relation_name
)
if
unique_relation?
unique_relation_object
=
relation_class
.
find_or_create_by
(
project_id:
@project
.
id
)
unique_relation_object
.
assign_attributes
(
parsed_relation_hash
)
...
...
spec/lib/gitlab/import_export/relation_factory_spec.rb
View file @
f34bbce1
...
...
@@ -213,6 +213,10 @@ describe Gitlab::ImportExport::RelationFactory do
attr_accessor
:service_id
,
:moved_to_id
,
:namespace_id
,
:ci_id
,
:random_project_id
,
:random_id
,
:milestone_id
,
:project_id
end
before
do
allow
(
HazardousFooModel
).
to
receive
(
:reflect_on_association
).
and_return
(
nil
)
end
it
'does not preserve any foreign key IDs'
do
expect
(
created_object
.
values
).
not_to
include
(
99
)
end
...
...
@@ -247,6 +251,10 @@ describe Gitlab::ImportExport::RelationFactory do
attr_accessor
(
*
Gitlab
::
ImportExport
::
RelationFactory
::
PROJECT_REFERENCES
)
end
before
do
allow
(
ProjectFooModel
).
to
receive
(
:reflect_on_association
).
and_return
(
nil
)
end
it
'does not preserve any project foreign key IDs'
do
expect
(
created_object
.
values
).
not_to
include
(
99
)
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