Files
espocrm/application/Espo/Tools/DataPrivacy/Erasor.php
Yuri Kuznetsov faa11d603e cs
2023-05-07 19:18:28 +03:00

178 lines
6.1 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://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 General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Tools\DataPrivacy;
use Espo\Core\Acl\Table;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Exceptions\NotFound;
use Espo\Core\FieldProcessing\EmailAddress\AccessChecker as EmailAddressAccessChecker;
use Espo\Core\FieldProcessing\PhoneNumber\AccessChecker as PhoneNumberAccessChecker;
use Espo\Core\Record\ServiceContainer as RecordServiceContainer;
use Espo\Core\Di;
class Erasor implements
Di\AclAware,
Di\AclManagerAware,
Di\MetadataAware,
Di\ServiceFactoryAware,
Di\EntityManagerAware,
Di\FieldUtilAware,
Di\UserAware
{
use Di\AclSetter;
use Di\AclManagerSetter;
use Di\MetadataSetter;
use Di\ServiceFactorySetter;
use Di\EntityManagerSetter;
use Di\FieldUtilSetter;
use Di\UserSetter;
public function __construct(
private RecordServiceContainer $recordServiceContainer,
private EmailAddressAccessChecker $emailAddressAccessChecker,
private PhoneNumberAccessChecker $phoneNumberAccessChecker
) {}
/**
* @param string[] $fieldList
* @throws Forbidden
* @throws NotFound
*/
public function erase(string $entityType, string $id, array $fieldList): void
{
if ($this->acl->getPermissionLevel('dataPrivacyPermission') === Table::LEVEL_NO) {
throw new Forbidden();
}
$service = $this->recordServiceContainer->get($entityType);
$entity = $this->entityManager->getEntity($entityType, $id);
if (!$entity) {
throw new NotFound();
}
if (!$this->acl->check($entity, Table::ACTION_EDIT)) {
throw new Forbidden("No edit access.");
}
$forbiddenFieldList = $this->acl->getScopeForbiddenFieldList($entityType, Table::ACTION_EDIT);
foreach ($fieldList as $field) {
if (in_array($field, $forbiddenFieldList)) {
throw new Forbidden("Field '{$field}' is forbidden to edit.");
}
}
$service->loadAdditionalFields($entity);
$fieldUtil = $this->fieldUtil;
foreach ($fieldList as $field) {
$type = $this->metadata->get(['entityDefs', $entityType, 'fields', $field, 'type']);
$attributeList = $fieldUtil->getActualAttributeList($entityType, $field);
if ($type === 'email') {
$emailAddressList = $entity->get('emailAddresses');
foreach ($emailAddressList as $emailAddress) {
if (
$this->emailAddressAccessChecker
->checkEdit($this->user, $emailAddress, $entity)
) {
$emailAddress->set('name', 'ERASED:' . $emailAddress->id);
$emailAddress->set('optOut', true);
$this->entityManager->saveEntity($emailAddress);
}
}
$entity->clear($field);
$entity->clear($field . 'Data');
continue;
}
else if ($type === 'phone') {
$phoneNumberList = $entity->get('phoneNumbers');
foreach ($phoneNumberList as $phoneNumber) {
if (
$this->phoneNumberAccessChecker
->checkEdit($this->user, $phoneNumber, $entity)
) {
$phoneNumber->set('name', 'ERASED:' . $phoneNumber->id);
$this->entityManager->saveEntity($phoneNumber);
}
}
$entity->clear($field);
$entity->clear($field . 'Data');
continue;
}
else if ($type === 'file' || $type === 'image') {
$attachmentId = $entity->get($field . 'Id');
if ($attachmentId) {
$attachment = $this->entityManager->getEntityById('Attachment', $attachmentId);
if ($attachment) {
$this->entityManager->removeEntity($attachment);
}
}
}
else if ($type === 'attachmentMultiple') {
$attachmentList = $entity->get($field);
foreach ($attachmentList as $attachment) {
$this->entityManager->removeEntity($attachment);
}
}
foreach ($attributeList as $attribute) {
if (
in_array($entity->getAttributeType($attribute), [$entity::VARCHAR, $entity::TEXT]) &&
$entity->get($attribute)
) {
$entity->set($attribute, null);
}
else {
$entity->set($attribute, null);
}
}
}
$this->entityManager->saveEntity($entity);
}
}