tao-test/app/tao/migrations/Version202010291229382234_tao.php

66 lines
2.0 KiB
PHP

<?php
/**
* This program 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; under version 2
* of the License (non-upgradable).
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2020 (original work) Open Assessment Technologies SA;
*/
declare(strict_types=1);
namespace oat\tao\migrations;
use common_report_Report as Report;
use Doctrine\DBAL\Schema\Schema;
use oat\tao\model\user\TaoRoles;
use oat\tao\model\accessControl\func\AclProxy;
use oat\tao\model\accessControl\func\AccessRule;
use oat\tao\scripts\tools\migrations\AbstractMigration;
final class Version202010291229382234_tao extends AbstractMigration
{
public function getDescription(): string
{
return 'Grant Back Office access to the AdvancedSearch controller.';
}
public function up(Schema $schema): void
{
AclProxy::applyRule($this->createRule());
$this->addReport(Report::createInfo(
'Back Office access was successfully granted to the AdvancedSearch controller.'
));
}
public function down(Schema $schema): void
{
AclProxy::revokeRule($this->createRule());
$this->addReport(Report::createInfo(
'Back Office access was successfully revoked from the AdvancedSearch controller.'
));
}
private function createRule(): AccessRule
{
return new AccessRule(
AccessRule::GRANT,
TaoRoles::BACK_OFFICE,
['ext' => 'tao', 'mod' => 'AdvancedSearch']
);
}
}