!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/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/   drwxr-xr-x
Free 13.03 GB of 57.97 GB (22.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of SwiftMailer.
 * (c) 2004-2009 Chris Corbyn
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Allows customization of Messages on-the-fly.
 *
 * @author Chris Corbyn
 * @author Fabien Potencier
 */
class Swift_Plugins_DecoratorPlugin implements Swift_Events_SendListenerSwift_Plugins_Decorator_Replacements
{
    
/** The replacement map */
    
private $replacements;

    
/** The body as it was before replacements */
    
private $originalBody;

    
/** The original headers of the message, before replacements */
    
private $originalHeaders = [];

    
/** Bodies of children before they are replaced */
    
private $originalChildBodies = [];

    
/** The Message that was last replaced */
    
private $lastMessage;

    
/**
     * Create a new DecoratorPlugin with $replacements.
     *
     * The $replacements can either be an associative array, or an implementation
     * of {@link Swift_Plugins_Decorator_Replacements}.
     *
     * When using an array, it should be of the form:
     * <code>
     * $replacements = array(
     *  "address1@domain.tld" => array("{a}" => "b", "{c}" => "d"),
     *  "address2@domain.tld" => array("{a}" => "x", "{c}" => "y")
     * )
     * </code>
     *
     * When using an instance of {@link Swift_Plugins_Decorator_Replacements},
     * the object should return just the array of replacements for the address
     * given to {@link Swift_Plugins_Decorator_Replacements::getReplacementsFor()}.
     *
     * @param mixed $replacements Array or Swift_Plugins_Decorator_Replacements
     */
    
public function __construct($replacements)
    {
        
$this->setReplacements($replacements);
    }

    
/**
     * Sets replacements.
     *
     * @param mixed $replacements Array or Swift_Plugins_Decorator_Replacements
     *
     * @see __construct()
     */
    
public function setReplacements($replacements)
    {
        if (!(
$replacements instanceof Swift_Plugins_Decorator_Replacements)) {
            
$this->replacements = (array) $replacements;
        } else {
            
$this->replacements $replacements;
        }
    }

    
/**
     * Invoked immediately before the Message is sent.
     */
    
public function beforeSendPerformed(Swift_Events_SendEvent $evt)
    {
        
$message $evt->getMessage();
        
$this->restoreMessage($message);
        
$to array_keys($message->getTo());
        
$address array_shift($to);
        if (
$replacements $this->getReplacementsFor($address)) {
            
$body $message->getBody();
            
$search array_keys($replacements);
            
$replace array_values($replacements);
            
$bodyReplaced str_replace(
                
$search$replace$body
                
);
            if (
$body != $bodyReplaced) {
                
$this->originalBody $body;
                
$message->setBody($bodyReplaced);
            }

            foreach (
$message->getHeaders()->getAll() as $header) {
                
$body $header->getFieldBodyModel();
                
$count 0;
                if (
\is_array($body)) {
                    
$bodyReplaced = [];
                    foreach (
$body as $key => $value) {
                        
$count1 0;
                        
$count2 0;
                        
$key \is_string($key) ? str_replace($search$replace$key$count1) : $key;
                        
$value \is_string($value) ? str_replace($search$replace$value$count2) : $value;
                        
$bodyReplaced[$key] = $value;

                        if (!
$count && ($count1 || $count2)) {
                            
$count 1;
                        }
                    }
                } elseif (
\is_string($body)) {
                    
$bodyReplaced str_replace($search$replace$body$count);
                }

                if (
$count) {
                    
$this->originalHeaders[$header->getFieldName()] = $body;
                    
$header->setFieldBodyModel($bodyReplaced);
                }
            }

            
$children = (array) $message->getChildren();
            foreach (
$children as $child) {
                list(
$type) = sscanf($child->getContentType(), '%[^/]/%s');
                if (
'text' == $type) {
                    
$body $child->getBody();
                    
$bodyReplaced str_replace(
                        
$search$replace$body
                        
);
                    if (
$body != $bodyReplaced) {
                        
$child->setBody($bodyReplaced);
                        
$this->originalChildBodies[$child->getId()] = $body;
                    }
                }
            }
            
$this->lastMessage $message;
        }
    }

    
/**
     * Find a map of replacements for the address.
     *
     * If this plugin was provided with a delegate instance of
     * {@link Swift_Plugins_Decorator_Replacements} then the call will be
     * delegated to it.  Otherwise, it will attempt to find the replacements
     * from the array provided in the constructor.
     *
     * If no replacements can be found, an empty value (NULL) is returned.
     *
     * @param string $address
     *
     * @return array
     */
    
public function getReplacementsFor($address)
    {
        if (
$this->replacements instanceof Swift_Plugins_Decorator_Replacements) {
            return 
$this->replacements->getReplacementsFor($address);
        }

        return 
$this->replacements[$address] ?? null;
    }

    
/**
     * Invoked immediately after the Message is sent.
     */
    
public function sendPerformed(Swift_Events_SendEvent $evt)
    {
        
$this->restoreMessage($evt->getMessage());
    }

    
/** Restore a changed message back to its original state */
    
private function restoreMessage(Swift_Mime_SimpleMessage $message)
    {
        if (
$this->lastMessage === $message) {
            if (isset(
$this->originalBody)) {
                
$message->setBody($this->originalBody);
                
$this->originalBody null;
            }
            if (!empty(
$this->originalHeaders)) {
                foreach (
$message->getHeaders()->getAll() as $header) {
                    if (
\array_key_exists($header->getFieldName(), $this->originalHeaders)) {
                        
$header->setFieldBodyModel($this->originalHeaders[$header->getFieldName()]);
                    }
                }
                
$this->originalHeaders = [];
            }
            if (!empty(
$this->originalChildBodies)) {
                
$children = (array) $message->getChildren();
                foreach (
$children as $child) {
                    
$id $child->getId();
                    if (
\array_key_exists($id$this->originalChildBodies)) {
                        
$child->setBody($this->originalChildBodies[$id]);
                    }
                }
                
$this->originalChildBodies = [];
            }
            
$this->lastMessage null;
        }
    }
}

:: 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.0078 ]--