Files
espocrm/application/Espo/Tools/Stream/FollowerRecordService.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

232 lines
6.9 KiB
PHP
Raw Permalink 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\Tools\Stream;
use Espo\Core\Exceptions\BadRequest;
use Espo\Core\Exceptions\Error\Body as ErrorBody;
use Espo\Core\Exceptions\Forbidden;
use Espo\Core\Exceptions\NotFound;
use Espo\Core\Record\Collection;
use Espo\Core\Select\SearchParams;
use Espo\Core\Utils\Metadata;
use Espo\ORM\Entity;
use Espo\ORM\EntityManager;
use Espo\Entities\User;
use Espo\Core\Acl;
class FollowerRecordService
{
public function __construct(
private EntityManager $entityManager,
private User $user,
private Acl $acl,
private Metadata $metadata,
private Service $service
) {}
/**
* Find followers.
*
* @return Collection<User>
* @throws Forbidden
* @throws NotFound
* @throws BadRequest
*/
public function find(string $entityType, string $id, SearchParams $params): Collection
{
$this->checkReadAccess($entityType);
$entity = $this->getEntity($entityType, $id);
return $this->service->findEntityFollowers($entity, $params);
}
/**
* Add a user to followers.
*
* @throws NotFound
* @throws Forbidden
*/
public function link(string $entityType, string $id, string $userId): void
{
$this->checkEditAccess($entityType);
$entity = $this->getEntityForEdit($entityType, $id);
$user = $this->getUser($userId);
$this->follow($entity, $user);
}
/**
* Remove a user from followers.
*
* @throws NotFound
* @throws Forbidden
*/
public function unlink(string $entityType, string $id, string $userId): void
{
$this->checkEditAccess($entityType);
$entity = $this->getEntityForEdit($entityType, $id);
$user = $this->getUser($userId);
$this->service->unfollowEntity($entity, $user->getId());
}
private function hasStream(string $entityType): bool
{
return (bool) $this->metadata->get(['scopes', $entityType, 'stream']);
}
/**
* @throws Forbidden
* @throws NotFound
*/
private function checkReadAccess(string $entityType): void
{
if (!$this->acl->check($entityType, Acl\Table::ACTION_READ)) {
throw new Forbidden("No 'read'' access to $entityType scope.");
}
if (!$this->hasStream($entityType)) {
throw new NotFound("No stream.");
}
}
/**
* @throws Forbidden
* @throws NotFound
*/
private function checkEditAccess(string $entityType): void
{
if (!$this->acl->check($entityType, Acl\Table::ACTION_EDIT)) {
throw new Forbidden("No 'edit' access to $entityType scope.");
}
if (!$this->hasStream($entityType)) {
throw new NotFound("No stream.");
}
}
/**
* @throws Forbidden
*/
private function follow(Entity $entity, User $user): void
{
$result = $this->service->followEntity($entity, $user->getId());
if ($result) {
return;
}
throw Forbidden::createWithBody(
"Could not add user to followers.",
ErrorBody::create()->withMessageTranslation(
'couldNotAddFollowerUserHasNoAccessToStream',
'Stream',
['userName' => $user->getUserName() ?? '']
)
);
}
/**
* @throws NotFound
* @throws Forbidden
*/
private function getEntity(string $entityType, string $id): Entity
{
$entity = $this->entityManager->getEntityById($entityType, $id);
if (!$entity) {
throw new NotFound("Record not found.");
}
if (!$this->acl->check($entity, Acl\Table::ACTION_READ)) {
throw new Forbidden("No 'read' access.");
}
return $entity;
}
/**
* @throws NotFound
* @throws Forbidden
*/
private function getEntityForEdit(string $entityType, string $id): Entity
{
$entity = $this->entityManager->getEntityById($entityType, $id);
if (!$entity) {
throw new NotFound("Record not found.");
}
if (!$this->acl->check($entity, Acl\Table::ACTION_EDIT)) {
throw new Forbidden("No 'edit' access.");
}
if (!$this->acl->check($entity, Acl\Table::ACTION_STREAM)) {
throw new Forbidden("No 'stream' access.");
}
return $entity;
}
/**
* @throws Forbidden
* @throws NotFound
*/
private function getUser(string $userId): User
{
$user = $this->entityManager->getRDBRepositoryByClass(User::class)->getById($userId);
if (!$user) {
throw new NotFound("User $userId not found.");
}
if (!$user->isPortal() && !$this->acl->check($user, Acl\Table::ACTION_READ)) {
throw new Forbidden("No 'read' access to user $userId.");
}
if ($user->isPortal() && $this->acl->getPermissionLevel(Acl\Permission::PORTAL) !== Acl\Table::LEVEL_YES) {
throw new Forbidden("No 'portal' permission.");
}
if (
!$user->isPortal() &&
$this->user->getId() !== $user->getId() &&
!$this->acl->checkUserPermission($user, Acl\Permission::FOLLOWER_MANAGEMENT)
) {
throw new Forbidden("No 'followerManagement' permission.");
}
return $user;
}
}