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 2.8.0
*/
namespace Passbolt\Log\Test\Lib;
use App\Model\Entity\User;
use App\Test\Lib\AppIntegrationTestCase;
use Cake\Core\Configure;
use Cake\ORM\TableRegistry;
use Passbolt\JwtAuthentication\Test\Utility\JwtAuthTestTrait;
use Passbolt\Log\Test\Lib\Traits\ActionLogsTestTrait;
use Passbolt\Log\Test\Lib\Traits\EntitiesHistoryTestTrait;
abstract class LogIntegrationTestCase extends AppIntegrationTestCase
{
use ActionLogsTestTrait;
use EntitiesHistoryTestTrait;
use JwtAuthTestTrait;
public const JWT_LOGIN = 'jwt_login';
public const SESSION_LOGIN = 'session_login';
/**
* @var \App\Model\Table\ResourcesTable
*/
protected $Resources;
/**
* @var \App\Model\Table\PermissionsTable
*/
protected $Permissions;
/**
* @var \App\Model\Table\SecretsTable
*/
protected $Secrets;
/**
* @var \Passbolt\Log\Model\Table\SecretAccessesTable
*/
protected $SecretAccesses;
/**
* @var \Passbolt\Log\Model\Table\EntitiesHistoryTable
*/
protected $EntitiesHistory;
/**
* @var \Passbolt\Log\Model\Table\ActionLogsTable
*/
protected $ActionLogs;
/**
* @var \Passbolt\Log\Model\Table\ActionsTable
*/
protected $Actions;
public function setUp(): void
{
parent::setUp();
Configure::write('passbolt.plugins.log.enabled', true);
$this->Resources = TableRegistry::getTableLocator()->get('Resources');
$this->Permissions = TableRegistry::getTableLocator()->get('Permissions');
$this->Secrets = TableRegistry::getTableLocator()->get('Secrets');
$this->SecretAccesses = TableRegistry::getTableLocator()->get('Passbolt/Log.SecretAccesses');
$this->EntitiesHistory = TableRegistry::getTableLocator()->get('Passbolt/Log.EntitiesHistory');
$this->ActionLogs = TableRegistry::getTableLocator()->get('Passbolt/Log.ActionLogs');
$this->Actions = TableRegistry::getTableLocator()->get('Passbolt/Log.Actions');
// Make sure associations are loaded correctly, e.g. without depending on
// ActionListeners -> model.Initialize, as the callback will not be fired twice
// and controller actions can be called several times
$this->Permissions->belongsTo('Passbolt/Log.PermissionsHistory', [
'foreignKey' => 'foreign_key',
]);
$this->Resources->belongsTo('Passbolt/Log.EntitiesHistory', [
'foreignKey' => 'foreign_key',
]);
$this->Secrets->belongsTo('Passbolt/Log.SecretsHistory', [
'foreignKey' => 'foreign_key',
]);
$this->Secrets->hasMany('Passbolt/Log.SecretAccesses');
$this->SecretAccesses->belongsTo('Passbolt/Log.EntitiesHistory', [
'foreignKey' => 'foreign_key',
]);
$this->enableFeaturePlugin('JwtAuthentication');
$this->Actions->clearCache();
}
public function dataProviderForLoginType(): array
{
return [[self::SESSION_LOGIN], [self::JWT_LOGIN]];
}
/**
* @param string $loginType Login Type (JWT or SESSION)
* @param User $user User to log in
*/
public function loginWithDataProviderLoginTypeValue(string $loginType, User $user)
{
if ($loginType === self::JWT_LOGIN) {
$this->createJwtTokenAndSetInHeader($user->id);
} else {
$this->logInAs($user);
}
}
}
?>
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 2.8.0
*/
namespace Passbolt\Log\Test\Lib;
use App\Model\Entity\User;
use App\Test\Lib\AppIntegrationTestCase;
use Cake\Core\Configure;
use Cake\ORM\TableRegistry;
use Passbolt\JwtAuthentication\Test\Utility\JwtAuthTestTrait;
use Passbolt\Log\Test\Lib\Traits\ActionLogsTestTrait;
use Passbolt\Log\Test\Lib\Traits\EntitiesHistoryTestTrait;
abstract class LogIntegrationTestCase extends AppIntegrationTestCase
{
use ActionLogsTestTrait;
use EntitiesHistoryTestTrait;
use JwtAuthTestTrait;
public const JWT_LOGIN = 'jwt_login';
public const SESSION_LOGIN = 'session_login';
/**
* @var \App\Model\Table\ResourcesTable
*/
protected $Resources;
/**
* @var \App\Model\Table\PermissionsTable
*/
protected $Permissions;
/**
* @var \App\Model\Table\SecretsTable
*/
protected $Secrets;
/**
* @var \Passbolt\Log\Model\Table\SecretAccessesTable
*/
protected $SecretAccesses;
/**
* @var \Passbolt\Log\Model\Table\EntitiesHistoryTable
*/
protected $EntitiesHistory;
/**
* @var \Passbolt\Log\Model\Table\ActionLogsTable
*/
protected $ActionLogs;
/**
* @var \Passbolt\Log\Model\Table\ActionsTable
*/
protected $Actions;
public function setUp(): void
{
parent::setUp();
Configure::write('passbolt.plugins.log.enabled', true);
$this->Resources = TableRegistry::getTableLocator()->get('Resources');
$this->Permissions = TableRegistry::getTableLocator()->get('Permissions');
$this->Secrets = TableRegistry::getTableLocator()->get('Secrets');
$this->SecretAccesses = TableRegistry::getTableLocator()->get('Passbolt/Log.SecretAccesses');
$this->EntitiesHistory = TableRegistry::getTableLocator()->get('Passbolt/Log.EntitiesHistory');
$this->ActionLogs = TableRegistry::getTableLocator()->get('Passbolt/Log.ActionLogs');
$this->Actions = TableRegistry::getTableLocator()->get('Passbolt/Log.Actions');
// Make sure associations are loaded correctly, e.g. without depending on
// ActionListeners -> model.Initialize, as the callback will not be fired twice
// and controller actions can be called several times
$this->Permissions->belongsTo('Passbolt/Log.PermissionsHistory', [
'foreignKey' => 'foreign_key',
]);
$this->Resources->belongsTo('Passbolt/Log.EntitiesHistory', [
'foreignKey' => 'foreign_key',
]);
$this->Secrets->belongsTo('Passbolt/Log.SecretsHistory', [
'foreignKey' => 'foreign_key',
]);
$this->Secrets->hasMany('Passbolt/Log.SecretAccesses');
$this->SecretAccesses->belongsTo('Passbolt/Log.EntitiesHistory', [
'foreignKey' => 'foreign_key',
]);
$this->enableFeaturePlugin('JwtAuthentication');
$this->Actions->clearCache();
}
public function dataProviderForLoginType(): array
{
return [[self::SESSION_LOGIN], [self::JWT_LOGIN]];
}
/**
* @param string $loginType Login Type (JWT or SESSION)
* @param User $user User to log in
*/
public function loginWithDataProviderLoginTypeValue(string $loginType, User $user)
{
if ($loginType === self::JWT_LOGIN) {
$this->createJwtTokenAndSetInHeader($user->id);
} else {
$this->logInAs($user);
}
}
}
Function Calls
None |
Stats
MD5 | 587240ce1efe607feff4fbef75db2b70 |
Eval Count | 0 |
Decode Time | 111 ms |