| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace Dcat\Admin\Console\Development;
- use Dcat\Admin\Admin;
- use Illuminate\Console\Command;
- use Illuminate\Filesystem\Filesystem;
- class LinkCommand extends Command
- {
- /**
- * The console command signature.
- *
- * @var string
- */
- protected $signature = 'admin:dev';
- /**
- * Execute the console command.
- *
- * @return void
- */
- public function handle()
- {
- $files = $this->laravel->make('files');
- $this->linkAssets($files);
- $this->linkTests($files);
- }
- /**
- * @param Filesystem $files
- * @return void
- */
- protected function linkTests($files)
- {
- if (! is_file(base_path('phpunit.dusk.xml'))) {
- $files->copy(realpath(__DIR__.'/../../../phpunit.dusk.xml'), base_path('phpunit.dusk.xml'));
- }
- $target = base_path('tests');
- $testsPath = realpath(__DIR__.'/../../../tests');
- if (is_dir($target)) {
- $result = $this->ask("The [{$target}] directory already exists, are you sure to delete it? [yes/no]");
- if (strtolower($result) !== 'yes') {
- return;
- }
- $files->deleteDirectory($target);
- }
- $files->link(
- $testsPath, $target
- );
- $this->info("The [$testsPath] directory has been linked.");
- }
- /**
- * @param Filesystem $files
- * @return void
- */
- protected function linkAssets($files)
- {
- $basePath = Admin::asset()->getRealPath('@admin');
- $publicPath = public_path($basePath);
- if (! is_dir($publicPath.'/..')) {
- $files->makeDirectory($publicPath.'/..', 0755, true, true);
- }
- if (file_exists($publicPath)) {
- $this->warn("The [public/{$basePath}] directory already exists.");
- return;
- }
- $distPath = realpath(__DIR__.'/../../../resources/pre-dist');
- $files->link(
- $distPath, $publicPath
- );
- $this->info("The [$basePath] directory has been linked.");
- }
- }
|