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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smm.picotech.app/public_html/vendor/nwidart/laravel-modules/src/Publishing/   drwxr-xr-x
Free 28.6 GB of 117.98 GB (24.24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Nwidart\Modules\Publishing;

use 
Illuminate\Console\Command;
use 
Nwidart\Modules\Contracts\PublisherInterface;
use 
Nwidart\Modules\Contracts\RepositoryInterface;
use 
Nwidart\Modules\Module;

abstract class 
Publisher implements PublisherInterface
{
    
/**
     * The name of module will used.
     *
     * @var string
     */
    
protected $module;

    
/**
     * The modules repository instance.
     * @var RepositoryInterface
     */
    
protected $repository;

    
/**
     * The laravel console instance.
     *
     * @var \Illuminate\Console\Command
     */
    
protected $console;

    
/**
     * The success message will displayed at console.
     *
     * @var string
     */
    
protected $success;

    
/**
     * The error message will displayed at console.
     *
     * @var string
     */
    
protected $error '';

    
/**
     * Determine whether the result message will shown in the console.
     *
     * @var bool
     */
    
protected $showMessage true;

    
/**
     * The constructor.
     *
     * @param Module $module
     */
    
public function __construct(Module $module)
    {
        
$this->module $module;
    }

    
/**
     * Show the result message.
     *
     * @return self
     */
    
public function showMessage()
    {
        
$this->showMessage true;

        return 
$this;
    }

    
/**
     * Hide the result message.
     *
     * @return self
     */
    
public function hideMessage()
    {
        
$this->showMessage false;

        return 
$this;
    }

    
/**
     * Get module instance.
     *
     * @return \Nwidart\Modules\Module
     */
    
public function getModule()
    {
        return 
$this->module;
    }

    
/**
     * Set modules repository instance.
     * @param RepositoryInterface $repository
     * @return $this
     */
    
public function setRepository(RepositoryInterface $repository)
    {
        
$this->repository $repository;

        return 
$this;
    }

    
/**
     * Get modules repository instance.
     *
     * @return RepositoryInterface
     */
    
public function getRepository()
    {
        return 
$this->repository;
    }

    
/**
     * Set console instance.
     *
     * @param \Illuminate\Console\Command $console
     *
     * @return $this
     */
    
public function setConsole(Command $console)
    {
        
$this->console $console;

        return 
$this;
    }

    
/**
     * Get console instance.
     *
     * @return \Illuminate\Console\Command
     */
    
public function getConsole()
    {
        return 
$this->console;
    }

    
/**
     * Get laravel filesystem instance.
     *
     * @return \Illuminate\Filesystem\Filesystem
     */
    
public function getFilesystem()
    {
        return 
$this->repository->getFiles();
    }

    
/**
     * Get destination path.
     *
     * @return string
     */
    
abstract public function getDestinationPath();

    
/**
     * Get source path.
     *
     * @return string
     */
    
abstract public function getSourcePath();

    
/**
     * Publish something.
     */
    
public function publish()
    {
        if (!
$this->console instanceof Command) {
            
$message "The 'console' property must instance of \\Illuminate\\Console\\Command.";

            throw new 
\RuntimeException($message);
        }

        if (!
$this->getFilesystem()->isDirectory($sourcePath $this->getSourcePath())) {
            return;
        }

        if (!
$this->getFilesystem()->isDirectory($destinationPath $this->getDestinationPath())) {
            
$this->getFilesystem()->makeDirectory($destinationPath0775true);
        }

        if (
$this->getFilesystem()->copyDirectory($sourcePath$destinationPath)) {
            if (
$this->showMessage === true) {
                
$this->console->line("<info>Published</info>: {$this->module->getStudlyName()}");
            }
        } else {
            
$this->console->error($this->error);
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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