| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | namespace BookStack\App\Providers; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-17 21:45:57 +08:00
										 |  |  | use BookStack\Facades\Theme; | 
					
						
							|  |  |  | use BookStack\Theming\ThemeEvents; | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | use Illuminate\Cache\RateLimiting\Limit; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | use Illuminate\Http\Request; | 
					
						
							| 
									
										
										
										
											2023-11-17 21:45:57 +08:00
										 |  |  | use Illuminate\Routing\Router; | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | use Illuminate\Support\Facades\RateLimiter; | 
					
						
							| 
									
										
										
										
											2021-09-26 22:37:55 +08:00
										 |  |  | use Illuminate\Support\Facades\Route; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class RouteServiceProvider extends ServiceProvider | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * The path to the "home" route for your application. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This is used by Laravel authentication to redirect users after login. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public const HOME = '/'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Define your route model bindings, pattern filters, etc. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-03-16 23:12:14 +08:00
										 |  |  |     public function boot(): void | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |         $this->configureRateLimiting(); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |         $this->routes(function () { | 
					
						
							|  |  |  |             $this->mapWebRoutes(); | 
					
						
							|  |  |  |             $this->mapApiRoutes(); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Define the "web" routes for the application. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * These routes all receive session state, CSRF protection, etc. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-03-16 23:12:14 +08:00
										 |  |  |     protected function mapWebRoutes(): void | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         Route::group([ | 
					
						
							|  |  |  |             'middleware' => 'web', | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'namespace'  => $this->namespace, | 
					
						
							| 
									
										
										
										
											2023-11-17 21:45:57 +08:00
										 |  |  |         ], function (Router $router) { | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |             require base_path('routes/web.php'); | 
					
						
							| 
									
										
										
										
											2023-11-17 21:45:57 +08:00
										 |  |  |             Theme::dispatch(ThemeEvents::ROUTES_REGISTER_WEB, $router); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Route::group([ | 
					
						
							|  |  |  |             'middleware' => ['web', 'auth'], | 
					
						
							|  |  |  |         ], function (Router $router) { | 
					
						
							|  |  |  |             Theme::dispatch(ThemeEvents::ROUTES_REGISTER_WEB_AUTH, $router); | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Define the "api" routes for the application. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * These routes are typically stateless. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-03-16 23:12:14 +08:00
										 |  |  |     protected function mapApiRoutes(): void | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |         Route::group([ | 
					
						
							|  |  |  |             'middleware' => 'api', | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'namespace'  => $this->namespace . '\Api', | 
					
						
							|  |  |  |             'prefix'     => 'api', | 
					
						
							| 
									
										
										
										
											2016-09-18 01:22:04 +08:00
										 |  |  |         ], function ($router) { | 
					
						
							|  |  |  |             require base_path('routes/api.php'); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Configure the rate limiters for the application. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-03-16 23:12:14 +08:00
										 |  |  |     protected function configureRateLimiting(): void | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         RateLimiter::for('api', function (Request $request) { | 
					
						
							| 
									
										
										
										
											2023-02-07 00:58:29 +08:00
										 |  |  |             return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip()); | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2024-05-20 21:00:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         RateLimiter::for('public', function (Request $request) { | 
					
						
							|  |  |  |             return Limit::perMinute(10)->by($request->ip()); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2025-01-01 23:42:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         RateLimiter::for('exports', function (Request $request) { | 
					
						
							|  |  |  |             $user = user(); | 
					
						
							|  |  |  |             $attempts = $user->isGuest() ? 4 : 10; | 
					
						
							|  |  |  |             $key = $user->isGuest() ? $request->ip() : $user->id; | 
					
						
							|  |  |  |             return Limit::perMinute($attempts)->by($key); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | } |