| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | use BookStack\Http\Request; | 
					
						
							| 
									
										
										
										
											2021-11-05 06:57:49 +08:00
										 |  |  | use Illuminate\Contracts\Http\Kernel; | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 01:59:12 +08:00
										 |  |  | define('LARAVEL_START', microtime(true)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | |-------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | | Check If The Application Is Under Maintenance | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | |-------------------------------------------------------------------------- | 
					
						
							|  |  |  | | | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | | If the application is in maintenance / demo mode via the "down" command | 
					
						
							|  |  |  | | we will load this file so that any pre-rendered content can be shown | 
					
						
							|  |  |  | | instead of starting the framework, which could cause an exception. | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | | | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | if (file_exists(__DIR__ . '/../storage/framework/maintenance.php')) { | 
					
						
							|  |  |  |     require __DIR__ . '/../storage/framework/maintenance.php'; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | |-------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | | Register The Auto Loader | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | |-------------------------------------------------------------------------- | 
					
						
							|  |  |  | | | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | | Composer provides a convenient, automatically generated class loader for | 
					
						
							|  |  |  | | this application. We just need to utilize it! We'll simply require it | 
					
						
							|  |  |  | | into the script here so we don't need to manually load our classes. | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | | | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | require __DIR__ . '/../vendor/autoload.php'; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | |-------------------------------------------------------------------------- | 
					
						
							|  |  |  | | Run The Application | 
					
						
							|  |  |  | |-------------------------------------------------------------------------- | 
					
						
							|  |  |  | | | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | | Once we have the application, we can handle the incoming request using | 
					
						
							|  |  |  | | the application's HTTP kernel. Then, we will send the response back | 
					
						
							|  |  |  | | to this client's browser, allowing them to enjoy our application. | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | | | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | $app = require_once __DIR__ . '/../bootstrap/app.php'; | 
					
						
							|  |  |  | $app->alias('request', Request::class); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | $kernel = $app->make(Kernel::class); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | $response = tap($kernel->handle( | 
					
						
							|  |  |  |     $request = Request::capture() | 
					
						
							|  |  |  | ))->send(); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-05 06:57:49 +08:00
										 |  |  | $kernel->terminate($request, $response); |