2018-01-07 07:00:47 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
use App\Console\Command;
|
2019-08-07 05:48:00 +08:00
|
|
|
use App\Services\VersionService;
|
2018-01-07 07:00:47 +08:00
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* Class Version
|
|
|
|
*/
|
|
|
|
class Version extends Command
|
2018-01-07 07:00:47 +08:00
|
|
|
{
|
2018-02-04 03:16:37 +08:00
|
|
|
protected $signature = 'phpvms:version {--write} {--base-only}';
|
2018-01-07 07:00:47 +08:00
|
|
|
|
2019-08-07 05:48:00 +08:00
|
|
|
private $versionSvc;
|
2018-01-20 01:08:43 +08:00
|
|
|
|
2019-08-07 05:48:00 +08:00
|
|
|
public function __construct(VersionService $versionSvc)
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->versionSvc = $versionSvc;
|
2018-01-20 01:08:43 +08:00
|
|
|
}
|
|
|
|
|
2018-01-07 07:00:47 +08:00
|
|
|
/**
|
|
|
|
* Run dev related commands
|
2018-08-27 00:40:04 +08:00
|
|
|
*
|
2018-01-07 07:00:47 +08:00
|
|
|
* @throws \Symfony\Component\Yaml\Exception\ParseException
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2019-08-07 05:48:00 +08:00
|
|
|
// Write the updated build number out to the file
|
2018-03-08 22:51:36 +08:00
|
|
|
if ($this->option('write')) {
|
2019-08-07 05:48:00 +08:00
|
|
|
$version_file = config_path('version.yml');
|
|
|
|
$cfg = Yaml::parse(file_get_contents($version_file));
|
|
|
|
$build_number = $this->versionSvc->getBuildId($cfg);
|
|
|
|
$cfg['build']['number'] = $build_number;
|
2018-01-07 07:00:47 +08:00
|
|
|
|
2019-08-07 05:48:00 +08:00
|
|
|
file_put_contents($version_file, Yaml::dump($cfg, 4, 2));
|
2018-03-08 22:16:42 +08:00
|
|
|
}
|
|
|
|
|
2019-08-07 05:48:00 +08:00
|
|
|
$version = $this->versionSvc->getCurrentVersion(!$this->option('base-only'));
|
2018-08-27 00:40:04 +08:00
|
|
|
echo $version."\n";
|
2018-01-07 07:00:47 +08:00
|
|
|
}
|
|
|
|
}
|