Files
firefly-iii/app/Console/Commands/Correction/CreateAccessTokens.php

102 lines
3.2 KiB
PHP
Raw Normal View History

2019-03-18 16:53:05 +01:00
<?php
/**
* CreateAccessTokens.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2019-08-17 12:09:03 +02:00
declare(strict_types=1);
2019-03-18 16:53:05 +01:00
/**
2019-03-23 08:10:59 +01:00
* CreateAccessTokens.php
2019-03-18 16:53:05 +01:00
* Copyright (c) 2019 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
2019-03-23 08:10:59 +01:00
namespace FireflyIII\Console\Commands\Correction;
2019-03-18 16:53:05 +01:00
2019-03-23 08:10:59 +01:00
use Exception;
2019-06-10 20:14:00 +02:00
use FireflyIII\Repositories\User\UserRepositoryInterface;
2019-03-23 08:10:59 +01:00
use FireflyIII\User;
2019-03-18 16:53:05 +01:00
use Illuminate\Console\Command;
/**
2019-03-23 08:10:59 +01:00
* Class CreateAccessTokens
2019-03-18 16:53:05 +01:00
*/
2019-03-23 08:10:59 +01:00
class CreateAccessTokens extends Command
2019-03-18 16:53:05 +01:00
{
/**
* The console command description.
*
* @var string
*/
2019-06-10 20:14:00 +02:00
protected $description = 'Creates user access tokens which are used for command line access to personal data.';
2019-03-18 16:53:05 +01:00
/**
* The name and signature of the console command.
*
* @var string
*/
2019-03-23 08:10:59 +01:00
protected $signature = 'firefly-iii:create-access-tokens';
2019-03-18 16:53:05 +01:00
/**
* Execute the console command.
*
* @return int
2019-03-23 08:10:59 +01:00
* @throws Exception
2019-03-18 16:53:05 +01:00
*/
public function handle(): int
{
2019-06-10 20:14:00 +02:00
// make repository:
/** @var UserRepositoryInterface $repository */
$repository = app(UserRepositoryInterface::class);
2019-03-23 18:58:06 +01:00
$start = microtime(true);
2019-03-23 08:10:59 +01:00
$count = 0;
2019-06-13 15:48:35 +02:00
$users = $repository->all();
2019-03-23 08:10:59 +01:00
/** @var User $user */
foreach ($users as $user) {
$pref = app('preferences')->getForUser($user, 'access_token', null);
if (null === $pref) {
$token = $user->generateAccessToken();
app('preferences')->setForUser($user, 'access_token', $token);
$this->line(sprintf('Generated access token for user %s', $user->email));
++$count;
}
2019-03-18 16:53:05 +01:00
}
2019-03-23 08:10:59 +01:00
if (0 === $count) {
$this->info('All access tokens OK!');
2019-03-18 16:53:05 +01:00
}
2019-03-23 18:58:06 +01:00
$end = round(microtime(true) - $start, 2);
$this->info(sprintf('Verify access tokens in %s seconds.', $end));
2019-03-18 16:53:05 +01:00
2019-03-23 08:10:59 +01:00
return 0;
2019-03-18 16:53:05 +01:00
}
}