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,166 @@
<?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\Tools\MassUpdate;
use Espo\Core\MassAction\Data as ActionData;
use Espo\Core\Utils\ObjectUtil;
use RuntimeException;
use stdClass;
class Data
{
private stdClass $values;
/**
* @var array<string, Action::*>
*/
private array $actions;
/**
* @param array<string, Action::*> $actions
*/
private function __construct(stdClass $values, array $actions)
{
$this->values = $values;
$this->actions = $actions;
}
public function has(string $attribute): bool
{
return property_exists($this->values, $attribute);
}
/**
* @return string[]
*/
public function getAttributeList(): array
{
return array_keys(get_object_vars($this->values));
}
/**
* @return mixed
*/
public function getValue(string $attribute)
{
return $this->getValues()->$attribute ?? null;
}
public function getValues(): stdClass
{
return ObjectUtil::clone($this->values);
}
/**
* @return Action::*|null
*/
public function getAction(string $attribute): ?string
{
if (!$this->has($attribute)) {
return null;
}
return $this->actions[$attribute] ?? Action::UPDATE;
}
public static function create(): self
{
return new self((object) [], []);
}
public static function fromMassActionData(ActionData $data): self
{
$values = $data->get('values');
$rawActions = $data->get('actions');
// Backward compatibility.
if (!$data->has('values')) {
return new self($data->getRaw(), []);
}
if (!$values instanceof stdClass) {
throw new RuntimeException("No `values` in mass-action data.");
}
if ($rawActions !== null && !$rawActions instanceof stdClass) {
throw new RuntimeException("Bad `actions` in mass-action data.");
}
if ($rawActions === null) {
$rawActions = (object) [];
}
return new self($values, get_object_vars($rawActions));
}
/**
* @param mixed $value
* @param Action::*|null $action If NULL, the current action will be used. If no current, then 'update'.
*/
public function with(string $attribute, $value, ?string $action = null): self
{
if ($action === null) {
$action = $this->getAction($attribute) ?? Action::UPDATE;
}
$values = $this->getValues();
$actions = $this->actions;
$values->$attribute = $value;
$actions[$attribute] = $action;
return new self($values, $actions);
}
public function without(string $attribute): self
{
$values = $this->getValues();
$actions = $this->actions;
unset($values->$attribute);
unset($actions[$attribute]);
return new self($values, $actions);
}
public function toMassActionData(): ActionData
{
return ActionData::fromRaw((object) [
'values' => $this->getValues(),
'actions' => (object) $this->actions,
]);
}
public function __clone()
{
$this->values = ObjectUtil::clone($this->values);
}
}