-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMakeClickhouseMigrationCommand.php
145 lines (122 loc) · 3.81 KB
/
MakeClickhouseMigrationCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
/*
* This file is part of Laravel ClickHouse.
*
* (c) Anton Komarev <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Laravel\Clickhouse\ConsoleCommand;
use Cog\Laravel\Clickhouse\Migration\MigrationCreator;
use Illuminate\Console\Command;
use Illuminate\Contracts\Config\Repository as AppConfigRepositoryInterface;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Illuminate\Support\Composer;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
final class MakeClickhouseMigrationCommand extends Command
{
private MigrationCreator $creator;
private Composer $composer;
private AppConfigRepositoryInterface $appConfigRepository;
protected $description = 'Create a new ClickHouse migration file';
protected static $defaultName = 'make:clickhouse-migration';
protected function getArguments(): array
{
return [
new InputArgument(
'name',
InputArgument::REQUIRED,
'The name of the migration',
),
];
}
protected function getOptions(): array
{
return [
new InputOption(
'path',
null,
InputOption::VALUE_REQUIRED,
'The location where the migration file should be created',
),
new InputOption(
'realpath',
null,
InputOption::VALUE_NONE,
'Indicate any provided migration file paths are pre-resolved absolute paths',
),
new InputOption(
'fullpath',
null,
InputOption::VALUE_NONE,
'Output the full path of the migration',
),
];
}
public function __construct(
MigrationCreator $creator,
Composer $composer,
AppConfigRepositoryInterface $appConfigRepository
) {
parent::__construct();
$this->creator = $creator;
$this->composer = $composer;
$this->appConfigRepository = $appConfigRepository;
}
/**
* @throws FileNotFoundException
*/
public function handle(): int
{
$migrationFileName = $this->getNameArgument();
$this->writeMigration($migrationFileName);
$this->composer->dumpAutoloads();
return self::SUCCESS;
}
/**
* @throws FileNotFoundException
*/
private function writeMigration(
string $migrationFileName
): void {
$filePath = $this->creator->create(
$migrationFileName,
$this->getMigrationPath(),
);
if (!$this->option('fullpath')) {
$filePath = pathinfo($filePath, PATHINFO_FILENAME);
}
$this->line("<info>Created Migration:</info> $filePath");
}
protected function getNameArgument(): string
{
return trim($this->argument('name'));
}
/**
* Get migration path (either specified by '--path' option or default location).
*/
private function getMigrationPath(): string
{
$targetPath = $this->input->getOption('path');
if ($targetPath !== null) {
return $this->isUsingRealPath()
? $targetPath
: $this->laravel->basePath() . '/' . $targetPath;
}
return rtrim(
$this->appConfigRepository->get('clickhouse.migrations.path'),
'/',
);
}
/**
* Determine if the given path(s) are pre-resolved "real" paths.
*/
protected function isUsingRealPath(): bool
{
return $this->input->hasOption('realpath')
&& $this->option('realpath');
}
}