Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
9ef1f94e
Commit
9ef1f94e
authored
4 years ago
by
Guillaume Heurtier
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #13339 TIME 1:00 added custom fields to duplicates search
parent
6e463dac
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/contact/controllers/ContactController.php
+25
-6
25 additions, 6 deletions
src/app/contact/controllers/ContactController.php
with
25 additions
and
6 deletions
src/app/contact/controllers/ContactController.php
+
25
−
6
View file @
9ef1f94e
...
@@ -847,10 +847,20 @@ class ContactController
...
@@ -847,10 +847,20 @@ class ContactController
return
$response
->
withStatus
(
400
)
->
withJson
([
'errors'
=>
'criteria is empty or not an array'
]);
return
$response
->
withStatus
(
400
)
->
withJson
([
'errors'
=>
'criteria is empty or not an array'
]);
}
}
$contactCustoms
=
ContactCustomFieldListModel
::
get
([
'select'
=>
[
'id'
]]);
$contactCustoms
=
array_column
(
$contactCustoms
,
'id'
);
$allowedFieldsKeys
=
array_keys
(
$allowedFields
);
$allowedFieldsKeys
=
array_keys
(
$allowedFields
);
foreach
(
$queryParams
[
'criteria'
]
as
$criterion
)
{
foreach
(
$queryParams
[
'criteria'
]
as
$criterion
)
{
if
(
!
in_array
(
$criterion
,
$allowedFieldsKeys
))
{
if
(
strpos
(
$criterion
,
'contactCustomField_'
)
!==
false
)
{
return
$response
->
withStatus
(
400
)
->
withJson
([
'errors'
=>
'Criteria does not exist'
]);
$customId
=
explode
(
'_'
,
$criterion
)[
1
];
if
(
!
in_array
(
$customId
,
$contactCustoms
))
{
return
$response
->
withStatus
(
400
)
->
withJson
([
'errors'
=>
'Custom criteria does not exist'
]);
}
}
else
{
if
(
!
in_array
(
$criterion
,
$allowedFieldsKeys
))
{
return
$response
->
withStatus
(
400
)
->
withJson
([
'errors'
=>
'criteria does not exist'
]);
}
}
}
}
}
...
@@ -858,12 +868,21 @@ class ContactController
...
@@ -858,12 +868,21 @@ class ContactController
$criteria
=
[];
$criteria
=
[];
$order
=
[];
$order
=
[];
foreach
(
$queryParams
[
'criteria'
]
as
$criterion
)
{
foreach
(
$queryParams
[
'criteria'
]
as
$criterion
)
{
$order
[]
=
$allowedFields
[
$criterion
];
if
(
strpos
(
$criterion
,
'contactCustomField_'
)
!==
false
)
{
$criteria
[]
=
"replace(lower(translate("
.
$allowedFields
[
$criterion
]
.
", 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûýýþÿŔŕ',
if
(
!
in_array
(
'custom_fields'
,
$order
))
{
$order
[]
=
'custom_fields'
;
}
$customId
=
explode
(
'_'
,
$criterion
)[
1
];
$criteria
[]
=
"replace(lower(translate(custom_fields->>'"
.
$customId
.
"', 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûýýþÿŔŕ',
'aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr') ), ' ', '')"
;
}
else
{
$order
[]
=
$allowedFields
[
$criterion
];
$criteria
[]
=
"replace(lower(translate("
.
$allowedFields
[
$criterion
]
.
", 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûýýþÿŔŕ',
'aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr') ), ' ', '')"
;
'aaaaaaaceeeeiiiidnoooooouuuuybsaaaaaaaceeeeiiiidnoooooouuuyybyRr') ), ' ', '')"
;
}
}
}
$fields
=
[
'distinct(id)'
,
'enabled'
,
'dense_rank() over (order by '
.
implode
(
','
,
$criteria
)
.
') duplicate_id'
];
$fields
=
[
'distinct(id)'
,
'enabled'
,
'dense_rank() over (order by '
.
implode
(
','
,
$criteria
)
.
') duplicate_id'
,
'custom_fields'
];
foreach
(
$allowedFields
as
$field
)
{
foreach
(
$allowedFields
as
$field
)
{
$fields
[]
=
$field
;
$fields
[]
=
$field
;
}
}
...
@@ -882,7 +901,7 @@ class ContactController
...
@@ -882,7 +901,7 @@ class ContactController
// this is needed to avoid getting result that only appears once in the result list (and the function dense_rank cannot be used in group by)
// this is needed to avoid getting result that only appears once in the result list (and the function dense_rank cannot be used in group by)
$duplicatesCountQuery
=
'SELECT duplicate_id, count(*) as duplicate_count FROM ('
.
$duplicatesQuery
.
') as duplicates_id group by duplicate_id'
;
$duplicatesCountQuery
=
'SELECT duplicate_id, count(*) as duplicate_count FROM ('
.
$duplicatesQuery
.
') as duplicates_id group by duplicate_id'
;
$fields
=
[
'distinct(id)'
,
'count(*) over () as total'
,
'duplicates_info.duplicate_id'
,
'enabled'
];
$fields
=
[
'distinct(id)'
,
'count(*) over () as total'
,
'duplicates_info.duplicate_id'
,
'enabled'
,
'custom_fields'
];
foreach
(
$allowedFields
as
$field
)
{
foreach
(
$allowedFields
as
$field
)
{
$fields
[]
=
$field
;
$fields
[]
=
$field
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment