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 /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invo..
Decoded Output download
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Policies;
use App\Models\CompanyUser;
use App\Models\User;
/**
* Class UserPolicy.
*/
class UserPolicy extends EntityPolicy
{
/**
* Checks if the user has create permissions.
*
* @param User $user
* @return bool
*/
public function create(User $user): bool
{
return $user->isAdmin() || $user->hasPermission('create_user') || $user->hasPermission('create_all');
}
/*
*
* We need to override as User does not have the company_id property!!!!!
*
* We use the CompanyUser table as a proxy
*/
public function edit(User $user, $user_entity): bool
{
$company_user = CompanyUser::whereUserId($user->id)->AuthCompany()->first();
return $user->isAdmin() && $company_user;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Policies;
use App\Models\CompanyUser;
use App\Models\User;
/**
* Class UserPolicy.
*/
class UserPolicy extends EntityPolicy
{
/**
* Checks if the user has create permissions.
*
* @param User $user
* @return bool
*/
public function create(User $user): bool
{
return $user->isAdmin() || $user->hasPermission('create_user') || $user->hasPermission('create_all');
}
/*
*
* We need to override as User does not have the company_id property!!!!!
*
* We use the CompanyUser table as a proxy
*/
public function edit(User $user, $user_entity): bool
{
$company_user = CompanyUser::whereUserId($user->id)->AuthCompany()->first();
return $user->isAdmin() && $company_user;
}
}
Function Calls
None |
Stats
MD5 | 1e51889f8dbcb09c39868ce845b7122d |
Eval Count | 0 |
Decode Time | 93 ms |