芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/cms.mgaplay.com.br/lib/Listener/OnUserDelete/CommandListener.php
. */ namespace Xibo\Listener\OnUserDelete; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Xibo\Entity\User; use Xibo\Event\CommandDeleteEvent; use Xibo\Event\UserDeleteEvent; use Xibo\Factory\CommandFactory; use Xibo\Listener\ListenerLoggerTrait; use Xibo\Storage\StorageServiceInterface; class CommandListener implements OnUserDeleteInterface { use ListenerLoggerTrait; /** * @var CommandFactory */ private $commandFactory; /** * @var StorageServiceInterface */ private $store; public function __construct(StorageServiceInterface $store, CommandFactory $commandFactory) { $this->store = $store; $this->commandFactory = $commandFactory; } public function __invoke(UserDeleteEvent $event, $eventName, EventDispatcherInterface $dispatcher) { $user = $event->getUser(); $function = $event->getFunction(); $newUser = $event->getNewUser(); $systemUser = $event->getSystemUser(); if ($function === 'delete') { $this->deleteChildren($user, $dispatcher, $systemUser); } elseif ($function === 'reassignAll') { $this->reassignAllTo($user, $newUser, $systemUser); } elseif ($function === 'countChildren') { $event->setReturnValue($event->getReturnValue() + $this->countChildren($user)); } } public function deleteChildren(User $user, EventDispatcherInterface $dispatcher, User $systemUser) { foreach ($this->commandFactory->getByOwnerId($user->userId) as $command) { $dispatcher->dispatch(CommandDeleteEvent::$NAME, new CommandDeleteEvent($command)); $command->delete(); } } public function reassignAllTo(User $user, User $newUser, User $systemUser) { $this->store->update('UPDATE `command` SET userId = :userId WHERE userId = :oldUserId', [ 'userId' => $newUser->userId, 'oldUserId' => $user->userId ]); } public function countChildren(User $user) { $commands = $this->commandFactory->getByOwnerId($user->userId); $this->getLogger()->debug(sprintf('Counted Children Command on User ID %d, there are %d', $user->userId, count($commands))); return count($commands); } }