mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 06:47:22 +08:00
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use App\Services;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Pagination\Paginator;
|
||
|
use Illuminate\Support\Facades\URL;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class AppServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
public function register()
|
||
|
{
|
||
|
$this->app->singleton('cipher', 'App\Services\Cipher\\'.config('secure.cipher'));
|
||
|
$this->app->singleton(Services\Option::class);
|
||
|
$this->app->alias(Services\Option::class, 'options');
|
||
|
}
|
||
|
|
||
|
public function boot(Request $request)
|
||
|
{
|
||
|
Paginator::useBootstrap();
|
||
|
|
||
|
$this->configureUrlGenerator($request);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Control the URL generated by url() function.
|
||
|
*
|
||
|
* @codeCoverageIgnore
|
||
|
*/
|
||
|
protected function configureUrlGenerator(Request $request): void
|
||
|
{
|
||
|
if (!option('auto_detect_asset_url')) {
|
||
|
$rootUrl = option('site_url');
|
||
|
|
||
|
// Replace HTTP_HOST with site_url set in options,
|
||
|
// to prevent CDN source problems.
|
||
|
if (URL::isValidUrl($rootUrl)) {
|
||
|
URL::forceRootUrl($rootUrl);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Check whether the request is secure or not.
|
||
|
* True is always returned when "X-Forwarded-Proto" header is set.
|
||
|
*
|
||
|
* We define this function because Symfony's "Request::isSecure()" method
|
||
|
* needs "setTrustedProxies()" which sucks when load balancer is enabled.
|
||
|
*/
|
||
|
$isRequestSecure = $request->server('HTTPS') === 'on'
|
||
|
|| $request->server('HTTP_X_FORWARDED_PROTO') === 'https'
|
||
|
|| $request->server('HTTP_X_FORWARDED_SSL') === 'on';
|
||
|
|
||
|
if (option('force_ssl') || $isRequestSecure) {
|
||
|
URL::forceScheme('https');
|
||
|
}
|
||
|
}
|
||
|
}
|