2FAuth/app/Http/Controllers/SystemController.php

74 lines
3.0 KiB
PHP
Raw Normal View History

2022-07-21 15:48:23 +02:00
<?php
namespace App\Http\Controllers;
2022-07-30 17:51:02 +02:00
use App\Facades\Settings;
2022-11-22 15:15:52 +01:00
use App\Services\ReleaseRadarService;
2022-07-21 15:48:23 +02:00
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
2022-07-21 15:48:23 +02:00
use Illuminate\Support\Facades\DB;
class SystemController extends Controller
{
/**
* Get detailed information about the current installation
2022-11-22 15:15:52 +01:00
*
2022-07-21 15:48:23 +02:00
* @return \Illuminate\Http\JsonResponse
*/
public function infos(Request $request)
{
2022-11-22 15:15:52 +01:00
$infos = [];
$infos['common']['Date'] = date(DATE_RFC2822);
$infos['common']['userAgent'] = $request->header('user-agent');
2022-07-21 15:48:23 +02:00
// App info
$infos['common']['Version'] = config('2fauth.version');
$infos['common']['Environment'] = config('app.env');
$infos['common']['Install path'] = '/' . config('2fauth.config.appSubdirectory');
$infos['common']['Debug'] = var_export(config('app.debug'), true);
$infos['common']['Cache driver'] = config('cache.default');
$infos['common']['Log channel'] = config('logging.default');
$infos['common']['Log level'] = env('LOG_LEVEL');
$infos['common']['DB driver'] = DB::getDriverName();
2022-07-21 15:48:23 +02:00
// PHP info
$infos['common']['PHP version'] = PHP_VERSION;
$infos['common']['Operating system'] = PHP_OS;
$infos['common']['interface'] = PHP_SAPI;
// Auth & Security infos
if (! is_null($request->user())) {
$infos['common']['Auth guard'] = config('auth.defaults.guard');
if ($infos['common']['Auth guard'] === 'reverse-proxy-guard') {
$infos['common']['Auth proxy logout url'] = config('2fauth.config.proxyLogoutUrl');
$infos['common']['Auth proxy header for user'] = config('auth.auth_proxy_headers.user');
$infos['common']['Auth proxy header for email'] = config('auth.auth_proxy_headers.email');
}
$infos['common']['webauthn user verification'] = config('webauthn.user_verification');
$infos['common']['Trusted proxies'] = config('2fauth.config.trustedProxies') ?: 'none';
// Admin settings
if ($request->user()->is_admin == true) {
$infos['admin_settings']['useEncryption'] = Settings::get('useEncryption');
$infos['admin_settings']['lastRadarScan'] = Carbon::parse(Settings::get('lastRadarScan'))->format('Y-m-d H:i:s');
$infos['admin_settings']['checkForUpdate'] = Settings::get('CheckForUpdate');
}
2022-07-21 15:48:23 +02:00
}
// User info
if ($request->user()) {
$infos['user_preferences'] = $request->user()->preferences->toArray();
2022-07-21 15:48:23 +02:00
}
return response()->json($infos);
}
2022-09-21 21:50:41 +02:00
/**
* Get latest release
2022-11-22 15:15:52 +01:00
*
2022-09-21 21:50:41 +02:00
* @return \Illuminate\Http\JsonResponse
*/
public function latestRelease(Request $request, ReleaseRadarService $releaseRadar)
2022-09-21 21:50:41 +02:00
{
$release = $releaseRadar->manualScan();
2022-09-21 21:50:41 +02:00
return response()->json(['newRelease' => $release]);
2022-09-21 21:50:41 +02:00
}
}