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\Http\Requests\Email;

use App\Http\Requests\Request;
use App\Utils\Traits\MakesHash;
use Illuminate\Support\Str;
use Illuminate\Validation\Rule;

class EntityEmailHistoryRequest extends Request
{
    use MakesHash;

    private string $error_message = '';
    private string $entity_plural = '';
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize(): bool
    {
        //handle authorization in controller
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        /** @var \App\Models\User $user */
        $user = auth()->user();

        return [
            'entity' => 'bail|required|string|in:invoice,quote,credit,recurring_invoice,purchase_order',
            'entity_id' => ['bail','required',Rule::exists($this->entity_plural, 'id')->where('company_id', $user->company()->id)],
        ];
    }

    public function prepareForValidation()
    {
        $input = $this->all();

        $this->entity_plural = Str::plural($input['entity']) ?? '';
        $input['entity_id'] = $this->decodePrimaryKey($input['entity_id']);

        $this->replace($input);
    }

}
 ?>

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\Http\Requests\Email;

use App\Http\Requests\Request;
use App\Utils\Traits\MakesHash;
use Illuminate\Support\Str;
use Illuminate\Validation\Rule;

class EntityEmailHistoryRequest extends Request
{
    use MakesHash;

    private string $error_message = '';
    private string $entity_plural = '';
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize(): bool
    {
        //handle authorization in controller
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        /** @var \App\Models\User $user */
        $user = auth()->user();

        return [
            'entity' => 'bail|required|string|in:invoice,quote,credit,recurring_invoice,purchase_order',
            'entity_id' => ['bail','required',Rule::exists($this->entity_plural, 'id')->where('company_id', $user->company()->id)],
        ];
    }

    public function prepareForValidation()
    {
        $input = $this->all();

        $this->entity_plural = Str::plural($input['entity']) ?? '';
        $input['entity_id'] = $this->decodePrimaryKey($input['entity_id']);

        $this->replace($input);
    }

}

Function Calls

None

Variables

None

Stats

MD5 16cb8a6261efb0062f7fdada70091ac4
Eval Count 0
Decode Time 107 ms