Skip to content
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

Add LEFT, RIGHT and SUBSTRING SQL functions #26549

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions Civi/Api4/Query/SqlFunctionLEFT.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/

namespace Civi\Api4\Query;

/**
* Sql function
*/
class SqlFunctionLEFT extends SqlFunction {

protected static $category = self::CATEGORY_STRING;

protected static $dataType = 'String';

protected static function params(): array {
return [
[
'optional' => FALSE,
'must_be' => ['SqlField', 'SqlString'],
'label' => ts('Source'),
],
[
'optional' => FALSE,
'must_be' => ['SqlNumber'],
'label' => ts('Number of characters'),
],
];
}

/**
* @return string
*/
public static function getTitle(): string {
return ts('Left part of text');
}

/**
* @return string
*/
public static function getDescription(): string {
return ts('Extracts a number of characters from text starting from the left.');
}

}
52 changes: 52 additions & 0 deletions Civi/Api4/Query/SqlFunctionRIGHT.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/

namespace Civi\Api4\Query;

/**
* Sql function
*/
class SqlFunctionRIGHT extends SqlFunction {

protected static $category = self::CATEGORY_STRING;

protected static $dataType = 'String';

protected static function params(): array {
return [
[
'optional' => FALSE,
'must_be' => ['SqlField', 'SqlString'],
'label' => ts('Source'),
],
[
'optional' => FALSE,
'must_be' => ['SqlNumber'],
'label' => ts('Number of characters'),
],
];
}

/**
* @return string
*/
public static function getTitle(): string {
return ts('Right part of text');
}

/**
* @return string
*/
public static function getDescription(): string {
return ts('Extracts a number of characters from text starting from the right.');
}

}
57 changes: 57 additions & 0 deletions Civi/Api4/Query/SqlFunctionSUBSTRING.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/

namespace Civi\Api4\Query;

/**
* Sql function
*/
class SqlFunctionSUBSTRING extends SqlFunction {

protected static $category = self::CATEGORY_STRING;

protected static $dataType = 'String';

protected static function params(): array {
return [
[
'optional' => FALSE,
'must_be' => ['SqlField', 'SqlString'],
'label' => ts('Source'),
],
[
'optional' => FALSE,
'must_be' => ['SqlNumber'],
'label' => ts('Starting position in string. Negative numbers count from the end of the string.'),
],
[
'optional' => TRUE,
'must_be' => ['SqlNumber'],
'label' => ts('Number of characters'),
],
];
}

/**
* @return string
*/
public static function getTitle(): string {
return ts('Extract part of text');
}

/**
* @return string
*/
public static function getDescription(): string {
return ts('Extracts a number of characters from text starting from a given position.');
}

}
6 changes: 6 additions & 0 deletions tests/phpunit/api/v4/Action/SqlFunctionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,18 @@ public function testStringFunctions() {
->addSelect('REPLACE(first_name, "c", "cdef") AS new_first')
->addSelect('UPPER(first_name)')
->addSelect('LOWER(middle_name)')
->addSelect('LEFT(last_name, 3) AS left_last')
->addSelect('RIGHT(last_name, 3) AS right_last')
->addSelect('SUBSTRING(last_name, 2, 3) AS sub_last')
->execute()->first();

$this->assertEquals('abc|Q|tester1', $result['concat_ws']);
$this->assertEquals('abcdef', $result['new_first']);
$this->assertEquals('ABC', $result['UPPER:first_name']);
$this->assertEquals('q', $result['LOWER:middle_name']);
$this->assertEquals('tes', $result['left_last']);
$this->assertEquals('er1', $result['right_last']);
$this->assertEquals('est', $result['sub_last']);
}

public function testDateFunctions() {
Expand Down