!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/doctrine/cache/lib/Doctrine/Common/Cache/   drwxr-xr-x
Free 13.09 GB of 57.97 GB (22.59%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ExtMongoDBCache.php (5.22 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Doctrine\Common\Cache;

use 
DateTime;
use 
MongoDB\BSON\Binary;
use 
MongoDB\BSON\UTCDateTime;
use 
MongoDB\Collection;
use 
MongoDB\Database;
use 
MongoDB\Driver\Exception\Exception;
use 
MongoDB\Model\BSONDocument;

use function 
serialize;
use function 
time;
use function 
unserialize;

/**
 * MongoDB cache provider for ext-mongodb
 *
 * @deprecated Deprecated without replacement in doctrine/cache 1.11. This class will be dropped in 2.0
 */
class ExtMongoDBCache extends CacheProvider
{
    
/** @var Database */
    
private $database;

    
/** @var Collection */
    
private $collection;

    
/** @var bool */
    
private $expirationIndexCreated false;

    
/**
     * This provider will default to the write concern and read preference
     * options set on the Database instance (or inherited from MongoDB or
     * Client). Using an unacknowledged write concern (< 1) may make the return
     * values of delete() and save() unreliable. Reading from secondaries may
     * make contain() and fetch() unreliable.
     *
     * @see http://www.php.net/manual/en/mongo.readpreferences.php
     * @see http://www.php.net/manual/en/mongo.writeconcerns.php
     */
    
public function __construct(Collection $collection)
    {
        
// Ensure there is no typemap set - we want to use our own
        
$this->collection $collection->withOptions(['typeMap' => null]);
        
$this->database   = new Database($collection->getManager(), $collection->getDatabaseName());
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doFetch($id)
    {
        
$document $this->collection->findOne(['_id' => $id], [MongoDBCache::DATA_FIELDMongoDBCache::EXPIRATION_FIELD]);

        if (
$document === null) {
            return 
false;
        }

        if (
$this->isExpired($document)) {
            
$this->createExpirationIndex();
            
$this->doDelete($id);

            return 
false;
        }

        return 
unserialize($document[MongoDBCache::DATA_FIELD]->getData());
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doContains($id)
    {
        
$document $this->collection->findOne(['_id' => $id], [MongoDBCache::EXPIRATION_FIELD]);

        if (
$document === null) {
            return 
false;
        }

        if (
$this->isExpired($document)) {
            
$this->createExpirationIndex();
            
$this->doDelete($id);

            return 
false;
        }

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doSave($id$data$lifeTime 0)
    {
        try {
            
$this->collection->updateOne(
                [
'_id' => $id],
                [
                    
'$set' => [
                        
MongoDBCache::EXPIRATION_FIELD => ($lifeTime ? new UTCDateTime((time() + $lifeTime) * 1000) : null),
                        
MongoDBCache::DATA_FIELD => new Binary(serialize($data), Binary::TYPE_GENERIC),
                    ],
                ],
                [
'upsert' => true]
            );
        } catch (
Exception $e) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doDelete($id)
    {
        try {
            
$this->collection->deleteOne(['_id' => $id]);
        } catch (
Exception $e) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doFlush()
    {
        try {
            
// Use remove() in lieu of drop() to maintain any collection indexes
            
$this->collection->deleteMany([]);
        } catch (
Exception $e) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doGetStats()
    {
        
$uptime      null;
        
$memoryUsage null;

        try {
            
$serverStatus $this->database->command([
                
'serverStatus' => 1,
                
'locks' => 0,
                
'metrics' => 0,
                
'recordStats' => 0,
                
'repl' => 0,
            ])->
toArray()[0];
            
$uptime       $serverStatus['uptime'] ?? null;
        } catch (
Exception $e) {
        }

        try {
            
$collStats   $this->database->command(['collStats' => $this->collection->getCollectionName()])->toArray()[0];
            
$memoryUsage $collStats['size'] ?? null;
        } catch (
Exception $e) {
        }

        return [
            
Cache::STATS_HITS => null,
            
Cache::STATS_MISSES => null,
            
Cache::STATS_UPTIME => $uptime,
            
Cache::STATS_MEMORY_USAGE => $memoryUsage,
            
Cache::STATS_MEMORY_AVAILABLE  => null,
        ];
    }

    
/**
     * Check if the document is expired.
     */
    
private function isExpired(BSONDocument $document): bool
    
{
        return isset(
$document[MongoDBCache::EXPIRATION_FIELD]) &&
            
$document[MongoDBCache::EXPIRATION_FIELD] instanceof UTCDateTime &&
            
$document[MongoDBCache::EXPIRATION_FIELD]->toDateTime() < new DateTime();
    }

    private function 
createExpirationIndex(): void
    
{
        if (
$this->expirationIndexCreated) {
            return;
        }

        
$this->collection->createIndex([MongoDBCache::EXPIRATION_FIELD => 1], ['background' => true'expireAfterSeconds' => 0]);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0054 ]--