Files
espocrm/application/Espo/Repositories/PhoneNumber.php
bsiggel 127fa6503b chore: Update copyright year from 2025 to 2026 across core files
- Updated copyright headers in 3,055 core application files
- Changed 'Copyright (C) 2014-2025' to 'Copyright (C) 2014-2026'
- Added 123 new files from EspoCRM core updates
- Removed 4 deprecated files
- Total changes: 61,637 insertions, 54,283 deletions

This is a routine maintenance update for the new year 2026.
2026-02-07 16:05:21 +01:00

306 lines
8.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2026 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\Repositories;
use Espo\Core\Name\Field;
use Espo\Entities\User as UserEntity;
use Espo\ORM\Entity;
use Espo\Entities\PhoneNumber as PhoneNumberEntity;
use Espo\Core\Repositories\Database;
use Espo\Core\Di;
use stdClass;
/**
* Not to be used directly. Use utilities from `Espo\Tools\PhoneNumber` instead.
* @internal
* @extends Database<PhoneNumberEntity>
*/
class PhoneNumber extends Database implements
Di\ApplicationStateAware,
Di\AclManagerAware,
Di\ConfigAware
{
use Di\ApplicationStateSetter;
use Di\AclManagerSetter;
use Di\ConfigSetter;
private const ERASED_PREFIX = 'ERASED:';
private const LOOKUP_SMALL_MAX_SIZE = 20;
private const LOOKUP_MAX_SIZE = 50;
/**
* @param string[] $numberList
* @return string[]
*/
public function getIds($numberList = []): array
{
if (empty($numberList)) {
return [];
}
$ids = [];
$phoneNumbers = $this
->where([
'name' => $numberList,
])
->find();
$exist = [];
foreach ($phoneNumbers as $phoneNumber) {
$ids[] = $phoneNumber->getId();
$exist[] = $phoneNumber->get(Field::NAME);
}
foreach ($numberList as $number) {
$number = trim($number);
if (empty($number)) {
continue;
}
if (!in_array($number, $exist)) {
$phoneNumber = $this->getNew();
$phoneNumber->set(Field::NAME, $number);
$this->save($phoneNumber);
$ids[] = $phoneNumber->getId();
}
}
return $ids;
}
/**
* @return array<int, stdClass>
*/
public function getPhoneNumberData(Entity $entity): array
{
if (!$entity->hasId()) {
return [];
}
$dataList = [];
$numberList = $this
->select([Field::NAME, 'type', 'invalid', 'optOut', ['en.primary', 'primary']])
->join(
PhoneNumberEntity::RELATION_ENTITY_PHONE_NUMBER,
'en',
[
'en.phoneNumberId:' => 'id',
]
)
->where([
'en.entityId' => $entity->getId(),
'en.entityType' => $entity->getEntityType(),
'en.deleted' => false,
])
->order('en.primary', true)
->find();
foreach ($numberList as $number) {
$item = (object) [
'phoneNumber' => $number->get(Field::NAME),
'type' => $number->get('type'),
'primary' => $number->get('primary'),
'optOut' => $number->get('optOut'),
'invalid' => $number->get('invalid'),
];
$dataList[] = $item;
}
return $dataList;
}
public function getByNumber(string $number): ?PhoneNumberEntity
{
/** @var ?PhoneNumberEntity */
return $this->where(['name' => $number])->findOne();
}
/**
* @return Entity[]
*/
public function getEntityListByPhoneNumberId(string $phoneNumberId, ?Entity $exceptionEntity = null): array
{
$entityList = [];
$where = [
'phoneNumberId' => $phoneNumberId,
];
if ($exceptionEntity) {
$where[] = [
'OR' => [
'entityType!=' => $exceptionEntity->getEntityType(),
'entityId!=' => $exceptionEntity->getId(),
]
];
}
$itemList = $this->entityManager
->getRDBRepository(PhoneNumberEntity::RELATION_ENTITY_PHONE_NUMBER)
->sth()
->select(['entityType', 'entityId'])
->where($where)
->limit(0, self::LOOKUP_MAX_SIZE)
->find();
foreach ($itemList as $item) {
$itemEntityType = $item->get('entityType');
$itemEntityId = $item->get('entityId');
if (!$itemEntityType || !$itemEntityId) {
continue;
}
if (!$this->entityManager->hasRepository($itemEntityType)) {
continue;
}
$entity = $this->entityManager->getEntityById($itemEntityType, $itemEntityId);
if (!$entity) {
continue;
}
$entityList[] = $entity;
}
return $entityList;
}
/**
* @param string[] $order
*/
public function getEntityByPhoneNumberId(
string $phoneNumberId,
?string $entityType = null,
?array $order = null
): ?Entity {
$order ??= $this->config->get('phoneNumberEntityLookupDefaultOrder') ?? [];
$where = ['phoneNumberId' => $phoneNumberId];
if ($entityType) {
$where[] = ['entityType' => $entityType];
}
$collection = $this->entityManager
->getRDBRepository(PhoneNumberEntity::RELATION_ENTITY_PHONE_NUMBER)
->sth()
->select(['entityType', 'entityId'])
->where($where)
->limit(0, self::LOOKUP_SMALL_MAX_SIZE)
->order([
['LIST:entityType:' . implode(',', $order)],
['primary', 'DESC'],
])
->find();
foreach ($collection as $item) {
$itemEntityType = $item->get('entityType');
$itemEntityId = $item->get('entityId');
if (!$itemEntityType || !$itemEntityId) {
continue;
}
if (!$this->entityManager->hasRepository($itemEntityType)) {
continue;
}
$entity = $this->entityManager->getEntityById($itemEntityType, $itemEntityId);
if ($entity) {
if ($entity instanceof UserEntity) {
if (!$entity->isActive()) {
continue;
}
}
return $entity;
}
}
return null;
}
protected function beforeSave(Entity $entity, array $options = [])
{
parent::beforeSave($entity, $options);
if ($entity->has(Field::NAME)) {
$number = $entity->get(Field::NAME);
if (is_string($number) && !str_starts_with($number, self::ERASED_PREFIX)) {
$numeric = preg_replace('/[^0-9]/', '', $number);
} else {
$numeric = null;
}
$entity->set('numeric', $numeric);
}
}
public function markNumberOptedOut(string $number, bool $isOptedOut = true): void
{
$phoneNumber = $this->getByNumber($number);
if (!$phoneNumber) {
return;
}
$phoneNumber->set('optOut', $isOptedOut);
$this->save($phoneNumber);
}
public function markNumberInvalid(string $number, bool $isInvalid = true): void
{
$phoneNumber = $this->getByNumber($number);
if (!$phoneNumber) {
return;
}
$phoneNumber->set('invalid', $isInvalid);
$this->save($phoneNumber);
}
}