init
This commit is contained in:
48
app/Console/Commands/AppVersionUpdateCommand.php
Normal file
48
app/Console/Commands/AppVersionUpdateCommand.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class AppVersionUpdateCommand extends Command
|
||||
{
|
||||
protected $signature = 'app:version {version?} {--auto}';
|
||||
|
||||
protected $description = '更新 .env 文件中的 APP_VERSION 版本号';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$envPath = base_path('.env');
|
||||
if (!file_exists($envPath)) {
|
||||
$this->error('.env 文件不存在');
|
||||
return;
|
||||
}
|
||||
$current = env('APP_VERSION');
|
||||
$version = $this->argument('version');
|
||||
if ($version) {
|
||||
if (!preg_match('/^\d+\.\d+\.\d+$/', $version)) {
|
||||
$this->error('版本号格式错误');
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
$version = preg_replace_callback('/(\d+)$/', fn ($matches) => $matches[1] + 1, $current);
|
||||
}
|
||||
|
||||
$isAuto = $this->option('auto');
|
||||
if ($isAuto) {
|
||||
file_put_contents($envPath, preg_replace('/APP_VERSION=.*/', 'APP_VERSION=' . $version, file_get_contents($envPath)));
|
||||
$this->info('更新成功 ' . $current . ' -> ' . $version);
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
$confirmed = $this->confirm('当前版本号:' . $current . ' 新版号 ' . $version . ' 确认更新么', true);
|
||||
if (!$confirmed) {
|
||||
$this->line('已取消');
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
file_put_contents($envPath, preg_replace('/APP_VERSION=.*/', 'APP_VERSION=' . $version, file_get_contents($envPath)));
|
||||
$this->info('更新成功 ' . $current . ' -> ' . $version);
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user