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
e81101e3
Commit
e81101e3
authored
Aug 12, 2021
by
Illya Klymov
Committed by
Jacques Erasmus
Sep 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update client_factory to provide last_import_target
* update relevant specs
parent
a9d2b71c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
85 additions
and
29 deletions
+85
-29
app/assets/javascripts/import_entities/import_groups/graphql/client_factory.js
...s/import_entities/import_groups/graphql/client_factory.js
+57
-26
locale/gitlab.pot
locale/gitlab.pot
+9
-0
spec/frontend/import_entities/import_groups/graphql/client_factory_spec.js
...ort_entities/import_groups/graphql/client_factory_spec.js
+19
-3
No files found.
app/assets/javascripts/import_entities/import_groups/graphql/client_factory.js
View file @
e81101e3
...
...
@@ -5,10 +5,13 @@ import { parseIntPagination, normalizeHeaders } from '~/lib/utils/common_utils';
import
{
s__
}
from
'
~/locale
'
;
import
{
STATUSES
}
from
'
../../constants
'
;
import
{
i18n
,
NEW_NAME_FIELD
}
from
'
../constants
'
;
import
{
isAvailableForImport
}
from
'
../utils
'
;
import
bulkImportSourceGroupItemFragment
from
'
./fragments/bulk_import_source_group_item.fragment.graphql
'
;
import
bulkImportSourceGroupProgressFragment
from
'
./fragments/bulk_import_source_group_progress.fragment.graphql
'
;
import
addValidationErrorMutation
from
'
./mutations/add_validation_error.mutation.graphql
'
;
import
removeValidationErrorMutation
from
'
./mutations/remove_validation_error.mutation.graphql
'
;
import
setImportProgressMutation
from
'
./mutations/set_import_progress.mutation.graphql
'
;
import
setImportTargetMutation
from
'
./mutations/set_import_target.mutation.graphql
'
;
import
updateImportStatusMutation
from
'
./mutations/update_import_status.mutation.graphql
'
;
import
availableNamespacesQuery
from
'
./queries/available_namespaces.query.graphql
'
;
import
bulkImportSourceGroupQuery
from
'
./queries/bulk_import_source_group.query.graphql
'
;
...
...
@@ -34,6 +37,7 @@ function makeGroup(data) {
};
const
NESTED_OBJECT_FIELDS
=
{
import_target
:
clientTypenames
.
BulkImportTarget
,
last_import_target
:
clientTypenames
.
BulkImportTarget
,
progress
:
clientTypenames
.
BulkImportProgress
,
};
...
...
@@ -55,6 +59,7 @@ async function checkImportTargetIsValid({ client, newName, targetNamespace, sour
data
:
{
existingGroup
,
existingProject
},
}
=
await
client
.
query
({
query
:
groupAndProjectQuery
,
fetchPolicy
:
'
no-cache
'
,
variables
:
{
fullPath
:
`
${
targetNamespace
}
/
${
newName
}
`
,
},
...
...
@@ -82,6 +87,7 @@ async function checkImportTargetIsValid({ client, newName, targetNamespace, sour
}
const
localProgressId
=
(
id
)
=>
`not-started-
${
id
}
`
;
const
nextName
=
(
name
)
=>
`
${
name
}
-1`
;
export
function
createResolvers
({
endpoints
,
sourceUrl
,
GroupsManager
=
SourceGroupsManager
})
{
const
groupsManager
=
new
GroupsManager
({
...
...
@@ -140,17 +146,28 @@ export function createResolvers({ endpoints, sourceUrl, GroupsManager = SourceGr
const
{
jobId
,
importState
:
cachedImportState
}
=
groupsManager
.
getImportStateFromStorageByGroupId
(
group
.
id
)
??
{};
const
status
=
cachedImportState
?.
status
??
STATUSES
.
NONE
;
const
importTarget
=
status
===
STATUSES
.
FINISHED
&&
cachedImportState
.
importTarget
?
{
target_namespace
:
cachedImportState
.
importTarget
.
target_namespace
,
new_name
:
nextName
(
cachedImportState
.
importTarget
.
new_name
),
}
:
cachedImportState
?.
importTarget
??
{
new_name
:
group
.
full_path
,
target_namespace
:
availableNamespaces
[
0
]?.
full_path
??
''
,
};
return
makeGroup
({
...
group
,
validation_errors
:
[],
progress
:
{
id
:
jobId
??
localProgressId
(
group
.
id
),
status
:
cachedImportState
?.
status
??
STATUSES
.
NONE
,
},
import_target
:
cachedImportState
?.
importTarget
??
{
new_name
:
group
.
full_path
,
target_namespace
:
availableNamespaces
[
0
]?.
full_path
??
''
,
status
,
},
import_target
:
importTarget
,
last_import_target
:
cachedImportState
?.
importTarget
??
null
,
});
}),
pageInfo
:
{
...
...
@@ -161,7 +178,7 @@ export function createResolvers({ endpoints, sourceUrl, GroupsManager = SourceGr
setTimeout
(()
=>
{
response
.
nodes
.
forEach
((
group
)
=>
{
if
(
group
.
progress
.
status
===
STATUSES
.
NONE
)
{
if
(
isAvailableForImport
(
group
)
)
{
checkImportTargetIsValid
({
client
,
newName
:
group
.
import_target
.
new_name
,
...
...
@@ -193,32 +210,18 @@ export function createResolvers({ endpoints, sourceUrl, GroupsManager = SourceGr
targetNamespace
,
newName
,
});
return
makeGroup
({
id
:
sourceGroupId
,
import_target
:
{
target_namespace
:
targetNamespace
,
new_name
:
newName
,
id
:
sourceGroupId
,
},
});
},
setTargetNamespace
:
(
_
,
{
targetNamespace
,
sourceGroupId
})
=>
makeGroup
({
id
:
sourceGroupId
,
import_target
:
{
target_namespace
:
targetNamespace
,
},
}),
setNewName
:
(
_
,
{
newName
,
sourceGroupId
})
=>
makeGroup
({
id
:
sourceGroupId
,
import_target
:
{
new_name
:
newName
,
},
}),
async
setImportProgress
(
_
,
{
sourceGroupId
,
status
,
jobId
})
{
async
setImportProgress
(
_
,
{
sourceGroupId
,
status
,
jobId
,
importTarget
})
{
if
(
jobId
)
{
groupsManager
.
updateImportProgress
(
jobId
,
status
);
}
...
...
@@ -229,12 +232,40 @@ export function createResolvers({ endpoints, sourceUrl, GroupsManager = SourceGr
id
:
jobId
??
localProgressId
(
sourceGroupId
),
status
,
},
last_import_target
:
{
__typename
:
clientTypenames
.
BulkImportTarget
,
...
importTarget
,
},
});
},
async
updateImportStatus
(
_
,
{
id
,
status
})
{
async
updateImportStatus
(
_
,
{
id
,
status
}
,
{
client
,
getCacheKey
}
)
{
groupsManager
.
updateImportProgress
(
id
,
status
);
const
progressItem
=
client
.
readFragment
({
fragment
:
bulkImportSourceGroupProgressFragment
,
fragmentName
:
'
BulkImportSourceGroupProgress
'
,
id
:
getCacheKey
({
__typename
:
clientTypenames
.
BulkImportProgress
,
id
,
}),
});
if
(
status
===
STATUSES
.
FINISHED
&&
progressItem
&&
progressItem
.
status
!==
status
)
{
const
groups
=
groupsManager
.
getImportedGroupsByJobId
(
id
);
groups
.
forEach
(
async
({
id
:
groupId
,
importTarget
})
=>
{
client
.
mutate
({
mutation
:
setImportTargetMutation
,
variables
:
{
sourceGroupId
:
groupId
,
targetNamespace
:
importTarget
.
target_namespace
,
newName
:
nextName
(
importTarget
.
new_name
),
},
});
});
}
return
{
__typename
:
clientTypenames
.
BulkImportProgress
,
id
,
...
...
@@ -327,10 +358,10 @@ export function createResolvers({ endpoints, sourceUrl, GroupsManager = SourceGr
return
{
status
:
STATUSES
.
NONE
};
})
.
then
((
newStatus
)
=>
sourceGroupIds
.
forEach
((
sourceGroupId
)
=>
sourceGroupIds
.
forEach
((
sourceGroupId
,
idx
)
=>
client
.
mutate
({
mutation
:
setImportProgressMutation
,
variables
:
{
sourceGroupId
,
...
newStatus
},
variables
:
{
sourceGroupId
,
...
newStatus
,
importTarget
:
groups
[
idx
].
import_target
},
}),
),
)
...
...
locale/gitlab.pot
View file @
e81101e3
...
...
@@ -5830,6 +5830,9 @@ msgstr ""
msgid "Bulk update"
msgstr ""
msgid "BulkImports|Re-import creates a new group. It does not sync with the existing group."
msgstr ""
msgid "BulkImport|Existing groups"
msgstr ""
...
...
@@ -5851,6 +5854,9 @@ msgstr ""
msgid "BulkImport|Importing the group failed"
msgstr ""
msgid "BulkImport|Last imported to %{link}"
msgstr ""
msgid "BulkImport|Name already exists."
msgstr ""
...
...
@@ -27568,6 +27574,9 @@ msgstr ""
msgid "Re-authentication required"
msgstr ""
msgid "Re-import"
msgstr ""
msgid "Re-request review"
msgstr ""
...
...
spec/frontend/import_entities/import_groups/graphql/client_factory_spec.js
View file @
e81101e3
...
...
@@ -259,6 +259,10 @@ describe('Bulk import resolvers', () => {
target_namespace
:
'
root
'
,
new_name
:
'
group1
'
,
},
last_import_target
:
{
target_namespace
:
'
root
'
,
new_name
:
'
group1
'
,
},
validation_errors
:
[],
},
],
...
...
@@ -414,18 +418,30 @@ describe('Bulk import resolvers', () => {
});
});
it
(
'
setImportProgress updates group progress
'
,
async
()
=>
{
it
(
'
setImportProgress updates group progress
and sets import target
'
,
async
()
=>
{
const
NEW_STATUS
=
'
dummy
'
;
const
FAKE_JOB_ID
=
5
;
const
IMPORT_TARGET
=
{
__typename
:
'
ClientBulkImportTarget
'
,
new_name
:
'
fake_name
'
,
target_namespace
:
'
fake_target
'
,
};
const
{
data
:
{
setImportProgress
:
{
progress
},
setImportProgress
:
{
progress
,
last_import_target
:
lastImportTarget
},
},
}
=
await
client
.
mutate
({
mutation
:
setImportProgressMutation
,
variables
:
{
sourceGroupId
:
GROUP_ID
,
status
:
NEW_STATUS
,
jobId
:
FAKE_JOB_ID
},
variables
:
{
sourceGroupId
:
GROUP_ID
,
status
:
NEW_STATUS
,
jobId
:
FAKE_JOB_ID
,
importTarget
:
IMPORT_TARGET
,
},
});
expect
(
lastImportTarget
).
toMatchObject
(
IMPORT_TARGET
);
expect
(
progress
).
toMatchObject
({
id
:
FAKE_JOB_ID
,
status
:
NEW_STATUS
,
...
...
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