Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Livewire\Features\SupportConsoleCommands\Commands; use Illuminate\Suppor..
Decoded Output download
<?php
namespace Livewire\Features\SupportConsoleCommands\Commands;
use Illuminate\Support\Facades\File;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'livewire:copy')]
class CopyCommand extends FileManipulationCommand
{
protected $signature = 'livewire:copy {name} {new-name} {--inline} {--force} {--test}';
protected $description = 'Copy a Livewire component';
protected $newParser;
public function handle()
{
$this->parser = new ComponentParser(
config('livewire.class_namespace'),
config('livewire.view_path'),
$this->argument('name')
);
$this->newParser = new ComponentParserFromExistingComponent(
config('livewire.class_namespace'),
config('livewire.view_path'),
$this->argument('new-name'),
$this->parser
);
$force = $this->option('force');
$inline = $this->option('inline');
$test = $this->option('test');
$class = $this->copyClass($force, $inline);
if (! $inline) $view = $this->copyView($force);
if ($test){
$test = $this->copyTest($force);
}
$this->line("<options=bold,reverse;fg=green> COMPONENT COPIED </>
");
$class && $this->line("<options=bold;fg=green>CLASS:</> {$this->parser->relativeClassPath()} <options=bold;fg=green>=></> {$this->newParser->relativeClassPath()}");
if (! $inline) $view && $this->line("<options=bold;fg=green>VIEW:</> {$this->parser->relativeViewPath()} <options=bold;fg=green>=></> {$this->newParser->relativeViewPath()}");
if ($test) $test && $this->line("<options=bold;fg=green>Test:</> {$this->parser->relativeTestPath()} <options=bold;fg=green>=></> {$this->newParser->relativeTestPath()}");
}
protected function copyTest($force)
{
if (File::exists($this->newParser->testPath()) && ! $force) {
$this->line("<options=bold,reverse;fg=red> WHOOPS-IE-TOOTLES </>
");
$this->line("<fg=red;options=bold>Test already exists:</> {$this->newParser->relativeTestPath()}");
return false;
}
$this->ensureDirectoryExists($this->newParser->testPath());
return File::copy("{$this->parser->testPath()}", $this->newParser->testPath());
}
protected function copyClass($force, $inline)
{
if (File::exists($this->newParser->classPath()) && ! $force) {
$this->line("<options=bold,reverse;fg=red> WHOOPS-IE-TOOTLES </>
");
$this->line("<fg=red;options=bold>Class already exists:</> {$this->newParser->relativeClassPath()}");
return false;
}
$this->ensureDirectoryExists($this->newParser->classPath());
return File::put($this->newParser->classPath(), $this->newParser->classContents($inline));
}
protected function copyView($force)
{
if (File::exists($this->newParser->viewPath()) && ! $force) {
$this->line("<fg=red;options=bold>View already exists:</> {$this->newParser->relativeViewPath()}");
return false;
}
$this->ensureDirectoryExists($this->newParser->viewPath());
return File::copy("{$this->parser->viewPath()}", $this->newParser->viewPath());
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Livewire\Features\SupportConsoleCommands\Commands;
use Illuminate\Support\Facades\File;
use Symfony\Component\Console\Attribute\AsCommand;
#[AsCommand(name: 'livewire:copy')]
class CopyCommand extends FileManipulationCommand
{
protected $signature = 'livewire:copy {name} {new-name} {--inline} {--force} {--test}';
protected $description = 'Copy a Livewire component';
protected $newParser;
public function handle()
{
$this->parser = new ComponentParser(
config('livewire.class_namespace'),
config('livewire.view_path'),
$this->argument('name')
);
$this->newParser = new ComponentParserFromExistingComponent(
config('livewire.class_namespace'),
config('livewire.view_path'),
$this->argument('new-name'),
$this->parser
);
$force = $this->option('force');
$inline = $this->option('inline');
$test = $this->option('test');
$class = $this->copyClass($force, $inline);
if (! $inline) $view = $this->copyView($force);
if ($test){
$test = $this->copyTest($force);
}
$this->line("<options=bold,reverse;fg=green> COMPONENT COPIED </> \n");
$class && $this->line("<options=bold;fg=green>CLASS:</> {$this->parser->relativeClassPath()} <options=bold;fg=green>=></> {$this->newParser->relativeClassPath()}");
if (! $inline) $view && $this->line("<options=bold;fg=green>VIEW:</> {$this->parser->relativeViewPath()} <options=bold;fg=green>=></> {$this->newParser->relativeViewPath()}");
if ($test) $test && $this->line("<options=bold;fg=green>Test:</> {$this->parser->relativeTestPath()} <options=bold;fg=green>=></> {$this->newParser->relativeTestPath()}");
}
protected function copyTest($force)
{
if (File::exists($this->newParser->testPath()) && ! $force) {
$this->line("<options=bold,reverse;fg=red> WHOOPS-IE-TOOTLES </> \n");
$this->line("<fg=red;options=bold>Test already exists:</> {$this->newParser->relativeTestPath()}");
return false;
}
$this->ensureDirectoryExists($this->newParser->testPath());
return File::copy("{$this->parser->testPath()}", $this->newParser->testPath());
}
protected function copyClass($force, $inline)
{
if (File::exists($this->newParser->classPath()) && ! $force) {
$this->line("<options=bold,reverse;fg=red> WHOOPS-IE-TOOTLES </> \n");
$this->line("<fg=red;options=bold>Class already exists:</> {$this->newParser->relativeClassPath()}");
return false;
}
$this->ensureDirectoryExists($this->newParser->classPath());
return File::put($this->newParser->classPath(), $this->newParser->classContents($inline));
}
protected function copyView($force)
{
if (File::exists($this->newParser->viewPath()) && ! $force) {
$this->line("<fg=red;options=bold>View already exists:</> {$this->newParser->relativeViewPath()}");
return false;
}
$this->ensureDirectoryExists($this->newParser->viewPath());
return File::copy("{$this->parser->viewPath()}", $this->newParser->viewPath());
}
}
Function Calls
None |
Stats
MD5 | b588cd58c8e424eb666aa39d435533ee |
Eval Count | 0 |
Decode Time | 128 ms |