snipe-it/app/Console/Commands/Versioning.php

93 lines
2 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
namespace App\Console\Commands;
use Symfony\Component\Console\Input\InputArgument;
use Illuminate\Console\Command;
2016-06-22 12:27:41 -07:00
class Versioning extends Command
{
2016-03-25 01:18:05 -07:00
/**
* The console command name.
*
* @var string
*/
protected $name = 'versioning:update';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Generate and update app\'s version via git.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return void
*/
public function fire()
{
// Path to the file containing your version
// This will be overwritten everything you commit a message
2016-07-21 21:30:49 -07:00
$versionFile = 'config/version.php';
2016-03-25 01:18:05 -07:00
// The git's output
// get the argument passed in the git command
2016-06-22 12:27:41 -07:00
$hash_version = $this->argument('app_version');
2016-03-25 01:18:05 -07:00
2016-06-22 12:27:41 -07:00
// discard the commit hash
$version = explode('-', $hash_version);
2016-07-21 21:39:23 -07:00
$realVersion = $version[0];
2016-03-25 01:18:05 -07:00
2016-06-22 12:27:41 -07:00
// save the version array to a variable
$array = var_export(array('app_version' => $realVersion,'hash_version' => $hash_version), true);
2016-03-25 01:18:05 -07:00
// Construct our file content
$content = <<<CON
<?php
return $array;
CON;
// And finally write the file and output the current version
\File::put($versionFile, $content);
$this->line('Setting version: '. \config('version.latest'));
}
/**
* Get the console command arguments.
*
* @return array
*/
protected function getArguments()
{
return array(
array('app_version', InputArgument::REQUIRED, 'version number is required.'),
);
}
/**
* Get the console command options.
*
* @return array
*/
protected function getOptions()
{
return array(
);
}
}