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 /** * CacheProperties.php * Copyright (c) 2019 [email protected] * * This f..

Decoded Output download

<?php

/**
 * CacheProperties.php
 * Copyright (c) 2019 [email protected]
 *
 * This file is part of Firefly III (https://github.com/firefly-iii).
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
declare(strict_types=1);

namespace FireflyIII\Support;

use Illuminate\Support\Collection;

/**
 * Class CacheProperties.
 */
class CacheProperties
{
    protected string     $hash = '';
    protected Collection $properties;

    public function __construct()
    {
        $this->properties = new Collection();
        if (auth()->check()) {
            $this->addProperty(auth()->user()->id);
            $this->addProperty(app('preferences')->lastActivity());
        }
    }

    /**
     * @param mixed $property
     */
    public function addProperty($property): void
    {
        $this->properties->push($property);
    }

    /**
     * @return mixed
     */
    public function get()
    {
        return \Cache::get($this->hash);
    }

    public function getHash(): string
    {
        return $this->hash;
    }

    public function has(): bool
    {
        if ('testing' === config('app.env')) {
            return false;
        }
        $this->hash();

        return \Cache::has($this->hash);
    }

    private function hash(): void
    {
        $content    = '';
        foreach ($this->properties as $property) {
            try {
                $content .= json_encode($property, JSON_THROW_ON_ERROR);
            } catch (\JsonException $e) {
                // @ignoreException
                $content .= hash('sha256', (string)time());
            }
        }
        $this->hash = substr(hash('sha256', $content), 0, 16);
    }

    /**
     * @param mixed $data
     */
    public function store($data): void
    {
        \Cache::forever($this->hash, $data);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * CacheProperties.php
 * Copyright (c) 2019 [email protected]
 *
 * This file is part of Firefly III (https://github.com/firefly-iii).
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
declare(strict_types=1);

namespace FireflyIII\Support;

use Illuminate\Support\Collection;

/**
 * Class CacheProperties.
 */
class CacheProperties
{
    protected string     $hash = '';
    protected Collection $properties;

    public function __construct()
    {
        $this->properties = new Collection();
        if (auth()->check()) {
            $this->addProperty(auth()->user()->id);
            $this->addProperty(app('preferences')->lastActivity());
        }
    }

    /**
     * @param mixed $property
     */
    public function addProperty($property): void
    {
        $this->properties->push($property);
    }

    /**
     * @return mixed
     */
    public function get()
    {
        return \Cache::get($this->hash);
    }

    public function getHash(): string
    {
        return $this->hash;
    }

    public function has(): bool
    {
        if ('testing' === config('app.env')) {
            return false;
        }
        $this->hash();

        return \Cache::has($this->hash);
    }

    private function hash(): void
    {
        $content    = '';
        foreach ($this->properties as $property) {
            try {
                $content .= json_encode($property, JSON_THROW_ON_ERROR);
            } catch (\JsonException $e) {
                // @ignoreException
                $content .= hash('sha256', (string)time());
            }
        }
        $this->hash = substr(hash('sha256', $content), 0, 16);
    }

    /**
     * @param mixed $data
     */
    public function store($data): void
    {
        \Cache::forever($this->hash, $data);
    }
}

Function Calls

None

Variables

None

Stats

MD5 a603004879fece18fa74a82f42ddf4af
Eval Count 0
Decode Time 106 ms