Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php declare(strict_types=1); /** * Passbolt ~ Open source password manager for teams ..

Decoded Output download

<?php
declare(strict_types=1);

/**
 * Passbolt ~ Open source password manager for teams
 * Copyright (c) Passbolt SA (https://www.passbolt.com)
 *
 * Licensed under GNU Affero General Public License version 3 of the or any later version.
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Passbolt SA (https://www.passbolt.com)
 * @license       https://opensource.org/licenses/AGPL-3.0 AGPL License
 * @link          https://www.passbolt.com Passbolt(tm)
 * @since         4.8.0
 */
namespace Passbolt\Log\Command;

use App\Command\PassboltCommand;
use App\Service\Command\ProcessUserService;
use Cake\Console\Arguments;
use Cake\Console\ConsoleIo;
use Cake\Console\ConsoleOptionParser;
use Passbolt\Log\Service\ActionLogs\ActionLogsPurgeService;

class ActionLogsPurgeCommand extends PassboltCommand
{
    /**
     * @var \App\Service\Command\ProcessUserService
     */
    protected ProcessUserService $processUserService;
    protected ActionLogsPurgeService $purgeService;

    /**
     * @param \App\Service\Command\ProcessUserService $processUserService Process user service.
     */
    public function __construct(ProcessUserService $processUserService)
    {
        parent::__construct();
        $this->processUserService = $processUserService;
        $this->purgeService = new ActionLogsPurgeService();
    }

    /**
     * @inheritDoc
     */
    public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser
    {
        $parser
            ->setDescription([
                __('Purge action logs.'),
                '<warning>' .
                __('The performance of your instance might be degraded while the command is running.')
                . '</warning>',
            ])
            ->addOption('retention-in-days', [
                'short' => 'r',
                'required' => true,
                'help' => __('Retention period in days.'),
            ])
            ->addOption('dry-run', [
                'short' => 'd',
                'boolean' => true,
                'default' => false,
                'help' => __('Dry run mode.'),
            ])
            ->addOption('verbose', [
                'short' => 'v',
                'boolean' => true,
                'default' => false,
                'help' => __('Display the count of logs grouped by actions before and after the purge.'),
            ]);

        return $parser;
    }

    /**
     * @inheritDoc
     */
    public function execute(Arguments $args, ConsoleIo $io): ?int
    {
        parent::execute($args, $io);

        // Root user is not allowed to execute this command.
        $this->assertCurrentProcessUser($io, $this->processUserService);

        $retentionInDays = (int)$args->getOption('retention-in-days');
        $dryRun = $args->getOption('dry-run');
        if ($dryRun) {
            $this->getDryRun($retentionInDays, $io);
        } else {
            $this->purge($retentionInDays, $io);
        }

        return $this->successCode();
    }

    /**
     * @param int $retentionInDays retention in days
     * @param \Cake\Console\ConsoleIo $io Console IO
     * @return void
     */
    private function getDryRun(int $retentionInDays, ConsoleIo $io): void
    {
        $logs = $this->purgeService->dryRun($retentionInDays);
        $data[] = ['Action', 'Count'];
        /** @var \Passbolt\Log\Model\Entity\ActionLog $log */
        foreach ($logs as $log) {
            $data[] = [$log['action'], $log['count']];
        }
        $io->helper('Table')->output($data);
    }

    /**
     * @param int $retentionInDays retention in days
     * @param \Cake\Console\ConsoleIo $io Console IO
     * @return void
     */
    private function purge(int $retentionInDays, ConsoleIo $io): void
    {
        $nEntriesDeleted = $this->purgeService->purge($retentionInDays);
        $io->success(__('{0} action logs entries were deleted.', $nEntriesDeleted));
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
declare(strict_types=1);

/**
 * Passbolt ~ Open source password manager for teams
 * Copyright (c) Passbolt SA (https://www.passbolt.com)
 *
 * Licensed under GNU Affero General Public License version 3 of the or any later version.
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Passbolt SA (https://www.passbolt.com)
 * @license       https://opensource.org/licenses/AGPL-3.0 AGPL License
 * @link          https://www.passbolt.com Passbolt(tm)
 * @since         4.8.0
 */
namespace Passbolt\Log\Command;

use App\Command\PassboltCommand;
use App\Service\Command\ProcessUserService;
use Cake\Console\Arguments;
use Cake\Console\ConsoleIo;
use Cake\Console\ConsoleOptionParser;
use Passbolt\Log\Service\ActionLogs\ActionLogsPurgeService;

class ActionLogsPurgeCommand extends PassboltCommand
{
    /**
     * @var \App\Service\Command\ProcessUserService
     */
    protected ProcessUserService $processUserService;
    protected ActionLogsPurgeService $purgeService;

    /**
     * @param \App\Service\Command\ProcessUserService $processUserService Process user service.
     */
    public function __construct(ProcessUserService $processUserService)
    {
        parent::__construct();
        $this->processUserService = $processUserService;
        $this->purgeService = new ActionLogsPurgeService();
    }

    /**
     * @inheritDoc
     */
    public function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser
    {
        $parser
            ->setDescription([
                __('Purge action logs.'),
                '<warning>' .
                __('The performance of your instance might be degraded while the command is running.')
                . '</warning>',
            ])
            ->addOption('retention-in-days', [
                'short' => 'r',
                'required' => true,
                'help' => __('Retention period in days.'),
            ])
            ->addOption('dry-run', [
                'short' => 'd',
                'boolean' => true,
                'default' => false,
                'help' => __('Dry run mode.'),
            ])
            ->addOption('verbose', [
                'short' => 'v',
                'boolean' => true,
                'default' => false,
                'help' => __('Display the count of logs grouped by actions before and after the purge.'),
            ]);

        return $parser;
    }

    /**
     * @inheritDoc
     */
    public function execute(Arguments $args, ConsoleIo $io): ?int
    {
        parent::execute($args, $io);

        // Root user is not allowed to execute this command.
        $this->assertCurrentProcessUser($io, $this->processUserService);

        $retentionInDays = (int)$args->getOption('retention-in-days');
        $dryRun = $args->getOption('dry-run');
        if ($dryRun) {
            $this->getDryRun($retentionInDays, $io);
        } else {
            $this->purge($retentionInDays, $io);
        }

        return $this->successCode();
    }

    /**
     * @param int $retentionInDays retention in days
     * @param \Cake\Console\ConsoleIo $io Console IO
     * @return void
     */
    private function getDryRun(int $retentionInDays, ConsoleIo $io): void
    {
        $logs = $this->purgeService->dryRun($retentionInDays);
        $data[] = ['Action', 'Count'];
        /** @var \Passbolt\Log\Model\Entity\ActionLog $log */
        foreach ($logs as $log) {
            $data[] = [$log['action'], $log['count']];
        }
        $io->helper('Table')->output($data);
    }

    /**
     * @param int $retentionInDays retention in days
     * @param \Cake\Console\ConsoleIo $io Console IO
     * @return void
     */
    private function purge(int $retentionInDays, ConsoleIo $io): void
    {
        $nEntriesDeleted = $this->purgeService->purge($retentionInDays);
        $io->success(__('{0} action logs entries were deleted.', $nEntriesDeleted));
    }
}

Function Calls

None

Variables

None

Stats

MD5 519a441649ad6034cd4feb183b44cc96
Eval Count 0
Decode Time 86 ms