mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
dc157f8f78
Signed-off-by: snipe <snipe@snipe.net>
52 lines
1.7 KiB
PHP
Executable file
52 lines
1.7 KiB
PHP
Executable file
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
|
|
/**
|
|
* This controller handles all actions related to the Admin Dashboard
|
|
* for the Snipe-IT Asset Management application.
|
|
*
|
|
* @author A. Gianotto <snipe@snipe.net>
|
|
* @version v1.0
|
|
*/
|
|
class DashboardController extends Controller
|
|
{
|
|
/**
|
|
* Check authorization and display admin dashboard, otherwise display
|
|
* the user's checked-out assets.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v1.0]
|
|
* @return View
|
|
*/
|
|
public function index()
|
|
{
|
|
// Show the page
|
|
if (Auth::user()->hasAccess('admin')) {
|
|
$asset_stats = null;
|
|
|
|
$counts['asset'] = \App\Models\Asset::count();
|
|
$counts['accessory'] = \App\Models\Accessory::count();
|
|
$counts['license'] = \App\Models\License::assetcount();
|
|
$counts['consumable'] = \App\Models\Consumable::count();
|
|
$counts['component'] = \App\Models\Component::count();
|
|
$counts['users'] = \App\Models\User::count();
|
|
$counts['grand_total'] = $counts['asset'] + $counts['accessory'] + $counts['license'] + $counts['consumable'];
|
|
|
|
if ((! file_exists(storage_path().'/oauth-private.key')) || (! file_exists(storage_path().'/oauth-public.key'))) {
|
|
Artisan::call('migrate', ['--force' => true]);
|
|
\Artisan::call('passport:install');
|
|
}
|
|
|
|
return view('dashboard')->with('asset_stats', $asset_stats)->with('counts', $counts);
|
|
} else {
|
|
// Redirect to the profile page
|
|
return redirect()->intended('account/view-assets');
|
|
}
|
|
}
|
|
}
|