Fix issues with travis and setting up an indieweb user we don’t need anymore

This commit is contained in:
Jonny Barnes 2017-10-19 13:59:18 +01:00
parent 08cdfe1e44
commit 2151d5658b
3 changed files with 0 additions and 101 deletions

View file

@ -1,61 +0,0 @@
<?php
namespace App\Console\Commands;
use App\IndieWebUser;
use App\Services\TokenService;
use Illuminate\Console\Command;
class GenerateToken extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'token:generate';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Generate a token that can be used for testing purposes';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* The token service class.
*
* @var TokenService
*/
protected $tokenService;
/**
* Execute the console command.
*
* @return mixed
*/
public function handle(TokenService $tokenService)
{
$data = [
'me' => config('app.url'),
'client_id' => route('micropub-client'),
'scope' => 'create update',
];
$token = $tokenService->getNewToken($data);
$user = IndieWebUser::where('me', config('app.url'))->first();
$user->token = $token;
$user->save();
$this->info('Set token');
}
}