@@ -37,7 +37,7 @@ |
||
| 37 | 37 | */ |
| 38 | 38 | public function map(Router $router) |
| 39 | 39 | { |
| 40 | - $router->group(['namespace' => $this->namespace], function ($router) { |
|
| 40 | + $router->group(['namespace' => $this->namespace], function($router) { |
|
| 41 | 41 | require app_path('Http/routes.php'); |
| 42 | 42 | }); |
| 43 | 43 | } |
@@ -19,8 +19,7 @@ discard block |
||
| 19 | 19 | public function list_devices(Request $request) { |
| 20 | 20 | if ($request->user()->level >= 10 || $request->user()->level == 5) { |
| 21 | 21 | return Device::all(); |
| 22 | - } |
|
| 23 | - else { |
|
| 22 | + } else { |
|
| 24 | 23 | return User::find($request->user()->user_id)->devices()->get(); |
| 25 | 24 | } |
| 26 | 25 | } |
@@ -31,8 +30,7 @@ discard block |
||
| 31 | 30 | public function list_ports(Request $request) { |
| 32 | 31 | if ($request->user()->level >= 10 || $request->user()->level == 5) { |
| 33 | 32 | return Port::all(); |
| 34 | - } |
|
| 35 | - else { |
|
| 33 | + } else { |
|
| 36 | 34 | return User::find($request->user()->user_id)->ports()->get(); |
| 37 | 35 | } |
| 38 | 36 | } |
@@ -19,8 +19,7 @@ discard block |
||
| 19 | 19 | public function list_devices(Request $request) { |
| 20 | 20 | if ($request->user()->level >= 10 || $request->user()->level == 5) { |
| 21 | 21 | return Device::all(); |
| 22 | - } |
|
| 23 | - else { |
|
| 22 | + } else { |
|
| 24 | 23 | return User::find($request->user()->user_id)->devices()->get(); |
| 25 | 24 | } |
| 26 | 25 | } |
@@ -31,8 +30,7 @@ discard block |
||
| 31 | 30 | public function list_ports(Request $request) { |
| 32 | 31 | if ($request->user()->level >= 10 || $request->user()->level == 5) { |
| 33 | 32 | return Port::all(); |
| 34 | - } |
|
| 35 | - else { |
|
| 33 | + } else { |
|
| 36 | 34 | return User::find($request->user()->user_id)->ports()->get(); |
| 37 | 35 | } |
| 38 | 36 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | // TODO: move to a common file |
| 46 | 46 | // base = 1024 for bits, 1000 for mibibits |
| 47 | - function formatBps($bits, $precision = 2, $base=1000) { |
|
| 47 | + function formatBps($bits, $precision = 2, $base = 1000) { |
|
| 48 | 48 | $units = array('bps', 'Kbps', 'Mbps', 'Gbps', 'Tbps'); |
| 49 | 49 | |
| 50 | 50 | $bits = max($bits, 0); |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | $bits /= pow($base, $pow); |
| 55 | 55 | |
| 56 | - return round($bits, $precision) . ' ' . $units[$pow]; |
|
| 56 | + return round($bits, $precision).' '.$units[$pow]; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // ---- Define Reletionships ---- |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | $stats['devices'] = DB::select('SELECT COUNT(device_id) AS `total` FROM `devices`')[0]->total; |
| 35 | 35 | $stats['ports'] = DB::select('SELECT COUNT(port_id) AS `total` FROM `ports`')[0]->total; |
| 36 | 36 | $stats['syslog'] = DB::select('SELECT COUNT(seq) AS `total` FROM `syslog`')[0]->total; |
| 37 | - $stats['eventlog'] = DB::select('SELECT COUNT(event_id) AS `total` FROM `eventlog`')[0]->total; |
|
| 37 | + $stats['eventlog'] = DB::select('SELECT COUNT(event_id) AS `total` FROM `eventlog`')[0]->total; |
|
| 38 | 38 | $stats['apps'] = DB::select('SELECT COUNT(app_id) AS `total` FROM `applications`')[0]->total; |
| 39 | 39 | $stats['services'] = DB::select('SELECT COUNT(service_id) AS `total` FROM `services`')[0]->total; |
| 40 | 40 | $stats['storage'] = DB::select('SELECT COUNT(storage_id) AS `total` FROM `storage`')[0]->total; |
@@ -21,6 +21,6 @@ |
||
| 21 | 21 | public function about() { |
| 22 | 22 | $versions = $this->api->be(auth()->user())->get('/api/info'); |
| 23 | 23 | $stats = $this->api->be(auth()->user())->get('/api/stats'); |
| 24 | - return view('general.about', ['versions'=>$versions,'stats'=>$stats]); |
|
| 24 | + return view('general.about', ['versions'=>$versions, 'stats'=>$stats]); |
|
| 25 | 25 | } |
| 26 | 26 | } |