| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2024-11-25 04:18:55 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * InstallationId.php | 
					
						
							|  |  |  |  * Copyright (c) 2020 james@firefly-iii.org | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							| 
									
										
										
										
											2021-03-28 11:46:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  | namespace FireflyIII\Http\Middleware; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-06 06:57:44 +02:00
										 |  |  | use FireflyIII\Support\System\GeneratesInstallationId; | 
					
						
							| 
									
										
										
										
											2021-03-21 09:15:40 +01:00
										 |  |  | use Illuminate\Http\Request; | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Class InstallationId | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class InstallationId | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-06-06 06:57:44 +02:00
										 |  |  |     use GeneratesInstallationId; | 
					
						
							| 
									
										
										
										
											2020-11-25 06:25:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Handle an incoming request. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2023-06-21 12:34:58 +02:00
										 |  |  |      * @param Request $request | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-03-17 15:02:57 +01:00
										 |  |  |      * @return mixed | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-12-20 19:35:52 +01:00
										 |  |  |     public function handle($request, \Closure $next) | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-06-06 06:57:44 +02:00
										 |  |  |         $this->generateInstallationId(); | 
					
						
							| 
									
										
										
										
											2020-01-31 07:24:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $next($request); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-17 15:02:57 +01:00
										 |  |  | } |