-
-
Notifications
You must be signed in to change notification settings - Fork 827
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
APIv4 - Fix CONTAINS operator to work with more types of serialized fields #26362
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -592,8 +592,13 @@ protected function createSQLClause($fieldAlias, $operator, $value, $field, int $ | |
} | ||
return $sql ? implode(' AND ', $sql) : NULL; | ||
} | ||
|
||
// The CONTAINS operator matches a substring for strings. For arrays & serialized fields, | ||
// it only matches a complete (not partial) string within the array. | ||
if ($operator === 'CONTAINS') { | ||
$sep = \CRM_Core_DAO::VALUE_SEPARATOR; | ||
switch ($field['serialize'] ?? NULL) { | ||
|
||
case \CRM_Core_DAO::SERIALIZE_JSON: | ||
$operator = 'LIKE'; | ||
$value = '%"' . $value . '"%'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MIN_INSTALL_MYSQL_VER is now 5.7, so maybe it makes sense to fix this while we're here? Would be good to improve the JSON search, since the current version has some obvious shortcomings. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for the suggestion! I looked at that as well, and tried a few ways of searching JSON but couldn't get it working just right so I thought I'd go ahead and put up this PR without that so at least this can get merged. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fair enough |
||
|
@@ -603,7 +608,23 @@ protected function createSQLClause($fieldAlias, $operator, $value, $field, int $ | |
|
||
case \CRM_Core_DAO::SERIALIZE_SEPARATOR_BOOKEND: | ||
$operator = 'LIKE'; | ||
$value = '%' . \CRM_Core_DAO::VALUE_SEPARATOR . $value . \CRM_Core_DAO::VALUE_SEPARATOR . '%'; | ||
// This is easy to query because the string is always bookended by separators. | ||
$value = '%' . $sep . $value . $sep . '%'; | ||
break; | ||
|
||
case \CRM_Core_DAO::SERIALIZE_SEPARATOR_TRIMMED: | ||
$operator = 'REGEXP'; | ||
// This is harder to query because there's no bookend. | ||
// Use regex to match string within separators or content boundary | ||
// Escaping regex per https://stackoverflow.com/questions/3782379/whats-the-best-way-to-escape-user-input-for-regular-expressions-in-mysql | ||
$value = "(^|$sep)" . preg_quote($value, '&') . "($sep|$)"; | ||
break; | ||
|
||
case \CRM_Core_DAO::SERIALIZE_COMMA: | ||
$operator = 'REGEXP'; | ||
// Match string within commas or content boundary | ||
// Escaping regex per https://stackoverflow.com/questions/3782379/whats-the-best-way-to-escape-user-input-for-regular-expressions-in-mysql | ||
$value = '(^|,)' . preg_quote($value, '&') . '(,|$)'; | ||
break; | ||
|
||
default: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe note that we don't match complete strings for PHP serialized?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll be there's a way to support that type of serialization too! Probably something like:
But I haven't tested that. Best to merge this PR first.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, I assumed it was a don't bother to support it because there aren't many of them situation.