Files
espocrm/application/Espo/Core/Field/PhoneNumberGroup.php
2026-01-19 17:46:06 +01:00

300 lines
7.3 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-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\Field;
use RuntimeException;
/**
* A phone number group. Contains a list of phone numbers. One phone number is set as primary.
* If not empty, then there always should be a primary number. Immutable.
*/
class PhoneNumberGroup
{
/** @var PhoneNumber[] */
private $list = [];
private ?PhoneNumber $primary = null;
/**
* @param PhoneNumber[] $list
*
* @throws RuntimeException
*/
public function __construct(array $list = [])
{
foreach ($list as $item) {
$this->list[] = clone $item;
}
$this->validateList();
if (count($this->list) !== 0) {
$this->primary = $this->list[0];
}
}
public function __clone()
{
$newList = [];
foreach ($this->list as $item) {
$newList[] = clone $item;
}
$this->list = $newList;
if ($this->primary) {
$this->primary = clone $this->primary;
}
}
/**
* Get a primary number as a string. If no primary, then returns null,
*/
public function getPrimaryNumber(): ?string
{
$primary = $this->getPrimary();
if (!$primary) {
return null;
}
return $primary->getNumber();
}
/**
* Get a primary phone number.
*/
public function getPrimary(): ?PhoneNumber
{
if ($this->isEmpty()) {
return null;
}
return $this->primary;
}
/**
* Get a list of all phone numbers.
*
* @return PhoneNumber[]
*/
public function getList(): array
{
return $this->list;
}
/**
* Get a number of phone numbers.
*/
public function getCount(): int
{
return count($this->list);
}
/**
* Get a list of phone numbers w/o a primary.
*
* @return PhoneNumber[]
*/
public function getSecondaryList(): array
{
$list = [];
foreach ($this->list as $item) {
if ($item === $this->primary) {
continue;
}
$list[] = $item;
}
return $list;
}
/**
* Get a list of phone numbers represented as strings.
*
* @return string[]
*/
public function getNumberList(): array
{
$list = [];
foreach ($this->list as $item) {
$list[] = $item->getNumber();
}
return $list;
}
/**
* Get a phone number by number represented as a string.
*/
public function getByNumber(string $number): ?PhoneNumber
{
$index = $this->searchNumberInList($number);
if ($index === null) {
return null;
}
return $this->list[$index];
}
/**
* Whether an number is in the list.
*/
public function hasNumber(string $number): bool
{
return in_array($number, $this->getNumberList());
}
/**
* Clone with another primary phone number.
*/
public function withPrimary(PhoneNumber $phoneNumber): self
{
$list = $this->list;
$index = $this->searchNumberInList($phoneNumber->getNumber());
if ($index !== null) {
unset($list[$index]);
$list = array_values($list);
}
$newList = array_merge([$phoneNumber], $list);
return self::create($newList);
}
/**
* Clone with an added phone number list.
*
* @param PhoneNumber[] $list
*/
public function withAddedList(array $list): self
{
$newList = $this->list;
foreach ($list as $item) {
$index = $this->searchNumberInList($item->getNumber());
if ($index !== null) {
$newList[$index] = $item;
continue;
}
$newList[] = $item;
}
return self::create($newList);
}
/**
* Clone with an added phone number.
*/
public function withAdded(PhoneNumber $phoneNumber): self
{
return $this->withAddedList([$phoneNumber]);
}
/**
* Clone with removed phone number.
*/
public function withRemoved(PhoneNumber $phoneNumber): self
{
return $this->withRemovedByNumber($phoneNumber->getNumber());
}
/**
* Clone with removed phone number passed by a number.
*/
public function withRemovedByNumber(string $number): self
{
$newList = $this->list;
$index = $this->searchNumberInList($number);
if ($index !== null) {
unset($newList[$index]);
$newList = array_values($newList);
}
return self::create($newList);
}
/**
* Create with an optional phone number list. A first item will be set as primary.
*
* @param PhoneNumber[] $list
*/
public static function create(array $list = []): self
{
return new self($list);
}
private function searchNumberInList(string $number): ?int
{
foreach ($this->getNumberList() as $i => $item) {
if ($item === $number) {
return $i;
}
}
return null;
}
private function validateList(): void
{
$numberList = [];
foreach ($this->list as $item) {
if (!$item instanceof PhoneNumber) {
throw new RuntimeException("Bad item.");
}
if (in_array($item->getNumber(), $numberList)) {
throw new RuntimeException("Number list contains a duplicate.");
}
$numberList[] = strtolower($item->getNumber());
}
}
private function isEmpty(): bool
{
return count($this->list) === 0;
}
}