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,175 @@
<?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\User;
use Espo\Core\Acl;
use Espo\Core\AclManager;
use Espo\Core\Exceptions\BadRequest;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Record\Collection;
use Espo\Core\Record\ServiceContainer;
use Espo\Core\Select\SearchParams;
use Espo\Core\Select\SelectBuilderFactory;
use Espo\Core\Utils\Metadata;
use Espo\Entities\Team;
use Espo\Entities\User;
use Espo\ORM\Entity;
use Espo\ORM\EntityManager;
use Espo\ORM\Query\Part\Condition;
use Espo\ORM\Query\Part\Expression;
use Espo\ORM\Query\Select;
use Espo\ORM\Query\SelectBuilder;
class UsersAccessService
{
public function __construct(
private SelectBuilderFactory $selectBuilderFactory,
private Metadata $metadata,
private Acl $acl,
private User $user,
private EntityManager $entityManager,
private AclManager $aclManager,
private ServiceContainer $serviceContainer,
) {}
/**
* @return Collection<User>
* @throws Forbidden
* @throws BadRequest
*/
public function get(Entity $entity, SearchParams $params): Collection
{
$this->checkAccess($entity);
$query = $this->prepareQuery($params);
$repoBuilder = $this->entityManager->getRDBRepositoryByClass(User::class)->clone($query);
$users = $repoBuilder->find();
$service = $this->serviceContainer->getByClass(User::class);
foreach ($users as $user) {
$this->loadRecordAccessLevels($entity, $user);
$service->prepareEntityForOutput($user);
}
return Collection::create($users, $repoBuilder->count());
}
/**
* @throws Forbidden
*/
private function checkAccess(Entity $entity): void
{
if ($this->user->isPortal()) {
throw new Forbidden("No access for portal user.");
}
if (
!$this->metadata->get("scopes.{$entity->getEntityType()}.object") &&
!$this->metadata->get("scopes.{$entity->getEntityType()}.acl")
) {
throw new Forbidden("Non-object entity and non-acl entity.");
}
if (!$this->acl->checkEntityRead($entity)) {
throw new Forbidden("No record access.");
}
if (
$this->acl->getPermissionLevel(Acl\Permission::USER) !== Acl\Table::LEVEL_TEAM &&
$this->acl->getPermissionLevel(Acl\Permission::USER) !== Acl\Table::LEVEL_ALL
) {
throw new Forbidden("No user permission.");
}
}
/**
* @throws BadRequest
* @throws Forbidden
*/
private function prepareQuery(SearchParams $params): Select
{
$queryBuilder = $this->selectBuilderFactory
->create()
->from(User::ENTITY_TYPE)
->withStrictAccessControl()
->withSearchParams($params)
->buildQueryBuilder()
->where([
'type' => [
User::TYPE_REGULAR,
User::TYPE_ADMIN,
User::TYPE_API,
]
]);
if ($this->acl->getPermissionLevel(Acl\Permission::USER) === Acl\Table::LEVEL_TEAM) {
$queryBuilder
->where(
Condition::in(
Expression::column('id'),
SelectBuilder::create()
->from(Team::RELATIONSHIP_TEAM_USER)
->select('userId')
->where(['teamId' => $this->user->getTeams()->getIdList()])
->build()
)
);
}
return $queryBuilder->build();
}
private function loadRecordAccessLevels(Entity $entity, User $user): void
{
$actions = [
Acl\Table::ACTION_READ,
Acl\Table::ACTION_EDIT,
Acl\Table::ACTION_DELETE,
Acl\Table::ACTION_STREAM,
];
$levels = [];
foreach ($actions as $action) {
$level = null;
try {
$level = $this->aclManager->checkEntity($user, $entity, $action);
} catch (Acl\Exceptions\NotImplemented) {}
$levels[$action] = $level;
}
$user->set('recordAccessLevels', $levels);
}
}