����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.222.30.59 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/vendor/ankitpokhrel/tus-php/src/Commands/ |
Upload File : |
<?php namespace TusPhp\Commands; use TusPhp\Config; use TusPhp\Cache\CacheFactory; use TusPhp\Tus\Server as TusServer; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class ExpirationCommand extends Command { /** @var TusServer */ protected $server; /** * {@inheritDoc} */ protected function configure() { $this ->setName('tus:expired') ->setDescription('Remove expired uploads.') ->setHelp('Deletes all expired uploads to free server resources. Values can be redis, file or apcu. Defaults to file.') ->addArgument( 'cache-adapter', InputArgument::OPTIONAL, 'Cache adapter to use: redis, file or apcu', 'file' ) ->addOption( 'config', 'c', InputArgument::OPTIONAL, 'File to get config parameters from.' ); } /** * {@inheritDoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $output->writeln([ '<info>Cleaning server resources</info>', '<info>=========================</info>', '', ]); $config = $input->getOption('config'); if ( ! empty($config)) { Config::set($config); } $cacheAdapter = $input->getArgument('cache-adapter') ?? 'file'; $this->server = new TusServer(CacheFactory::make($cacheAdapter)); $deleted = $this->server->handleExpiration(); if (empty($deleted)) { $output->writeln('<comment>Nothing to delete.</comment>'); } else { foreach ($deleted as $key => $item) { $output->writeln('<comment>' . ($key + 1) . ". Deleted {$item['name']} from " . \dirname($item['file_path']) . '</comment>'); } } $output->writeln(''); return 0; } }