Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1,91 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\PhoneNumber;
use Brick\PhoneNumber\PhoneNumber;
use Brick\PhoneNumber\PhoneNumberParseException;
use Espo\Core\Utils\Metadata;
/**
* @since 9.0.3
*/
class InternationalValidator
{
public function __construct(
private Metadata $metadata,
) {}
public function isValid(string $number, bool $allowExtension = false): bool
{
if ($number === '') {
return false;
}
$pattern = $this->metadata->get(['app', 'regExpPatterns', 'phoneNumberLoose', 'pattern']);
if (!$pattern) {
return true;
}
$preparedPattern = '/^' . $pattern . '$/';
if (!preg_match($preparedPattern, $number)) {
return false;
}
$ext = null;
if ($allowExtension) {
[$number, $ext] = Util::splitExtension($number);
}
if ($ext) {
if (!preg_match('/[0-9]+/', $ext)) {
return false;
}
if (strlen($ext) > 6) {
return false;
}
}
try {
$numberObj = PhoneNumber::parse($number);
} catch (PhoneNumberParseException) {
return false;
}
if ((string) $numberObj !== $number) {
return false;
}
return $numberObj->isPossibleNumber();
}
}

View File

@@ -0,0 +1,85 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\PhoneNumber;
use Brick\PhoneNumber\PhoneNumber;
use Brick\PhoneNumber\PhoneNumberParseException;
use Espo\Core\Utils\Config;
class Sanitizer
{
public function __construct(
private Config $config
) {}
public function sanitize(string $value, ?string $countryCode = null): string
{
$value = trim($value);
if (str_starts_with($value, '+')) {
if ($this->config->get('phoneNumberInternational')) {
return $this->parsePhoneNumber($value, null);
}
return $value;
}
if (!$countryCode) {
return $value;
}
$code = strtoupper($countryCode);
return $this->parsePhoneNumber($value, $code);
}
private function parsePhoneNumber(string $value, ?string $countryCode): string
{
$ext = null;
if ($this->config->get('phoneNumberExtensions')) {
[$value, $ext] = Util::splitExtension($value);
}
try {
$number = PhoneNumber::parse($value, $countryCode);
} catch (PhoneNumberParseException) {
return $value;
}
$output = (string) $number;
if ($ext) {
$output .= ' ext. ' . $ext;
}
return $output;
}
}

View File

@@ -0,0 +1,64 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\PhoneNumber;
class Util
{
/**
* @internal Do not use in custom code.
* @return array{string, ?string}
*/
public static function splitExtension(string $value): array
{
$ext = null;
$delimiters = [
'ext.',
'x.',
'x',
'#',
];
foreach ($delimiters as $delimiter) {
$index = strrpos($value, $delimiter);
if ($index === false || $index < 2) {
continue;
}
$ext = trim(substr($value, $index + strlen($delimiter)));
$value = trim(substr($value, 0, $index));
break;
}
return [$value, $ext];
}
}