mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class StoreAuthenticationTokenCommand extends Command
|
|
{
|
|
protected $signature = 'token {token?}';
|
|
|
|
protected $description = 'Set or retrieve the authentication token to use with expose.';
|
|
|
|
public function handle()
|
|
{
|
|
$config = config('expose', []);
|
|
|
|
if (!is_null($this->argument('token'))) {
|
|
$this->info('Setting the expose authentication token to "' . $this->argument('token') . '"');
|
|
|
|
$config['auth_token'] = $this->argument('token');
|
|
|
|
$configFile = implode(DIRECTORY_SEPARATOR, [
|
|
$_SERVER['HOME'],
|
|
'.expose',
|
|
'config.php'
|
|
]);
|
|
|
|
@mkdir(dirname($configFile), 0777, true);
|
|
|
|
file_put_contents($configFile, '<?php return ' . var_export($config, true) . ';');
|
|
return;
|
|
}
|
|
|
|
if (is_null($token = config('expose.auth_token'))) {
|
|
$this->info('There is no authentication token specified.');
|
|
} else {
|
|
$this->info('Current authentication token: ' . $token);
|
|
}
|
|
}
|
|
}
|