| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2024-11-25 04:18:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * CreateAccessTokens.php | 
					
						
							| 
									
										
										
										
											2020-01-23 20:35:02 +01:00
										 |  |  |  * Copyright (c) 2020 james@firefly-iii.org | 
					
						
							| 
									
										
										
										
											2019-10-02 06:37:26 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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-10-02 07:00:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-23 08:10:59 +01:00
										 |  |  | namespace FireflyIII\Console\Commands\Correction; | 
					
						
							| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-20 07:16:56 +02:00
										 |  |  | use FireflyIII\Console\Commands\ShowsFriendlyMessages; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2025-05-27 16:57:36 +02:00
										 |  |  | use Exception; | 
					
						
							| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-27 06:56:08 +01:00
										 |  |  | class CreatesAccessTokens extends Command | 
					
						
							| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-06-20 07:16:56 +02:00
										 |  |  |     use ShowsFriendlyMessages; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-10 20:14:00 +02:00
										 |  |  |     protected $description = 'Creates user access tokens which are used for command line access to personal data.'; | 
					
						
							| 
									
										
										
										
											2023-11-05 09:54:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-27 07:24:47 +01:00
										 |  |  |     protected $signature   = 'correction:access-tokens'; | 
					
						
							| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Execute the console command. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2025-05-27 16:57:36 +02: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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-01 14:43:56 +01:00
										 |  |  |         $count      = 0; | 
					
						
							|  |  |  |         $users      = $repository->all(); | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-23 08:10:59 +01:00
										 |  |  |         /** @var User $user */ | 
					
						
							|  |  |  |         foreach ($users as $user) { | 
					
						
							| 
									
										
										
										
											2021-05-24 08:50:17 +02:00
										 |  |  |             $pref = app('preferences')->getForUser($user, 'access_token'); | 
					
						
							| 
									
										
										
										
											2019-03-23 08:10:59 +01:00
										 |  |  |             if (null === $pref) { | 
					
						
							|  |  |  |                 $token = $user->generateAccessToken(); | 
					
						
							|  |  |  |                 app('preferences')->setForUser($user, 'access_token', $token); | 
					
						
							| 
									
										
										
										
											2023-06-20 07:16:56 +02:00
										 |  |  |                 $this->friendlyInfo(sprintf('Generated access token for user %s', $user->email)); | 
					
						
							| 
									
										
										
										
											2019-03-23 08:10:59 +01:00
										 |  |  |                 ++$count; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-03-21 15:43:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-23 08:10:59 +01:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-03-18 16:53:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } |