@@ -7,22 +7,22 @@ |
||
| 7 | 7 | |
| 8 | 8 | class AppServiceProvider extends ServiceProvider |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * Bootstrap any application services. |
|
| 12 | - */ |
|
| 13 | - public function boot() |
|
| 14 | - { |
|
| 15 | - // |
|
| 16 | - } |
|
| 10 | + /** |
|
| 11 | + * Bootstrap any application services. |
|
| 12 | + */ |
|
| 13 | + public function boot() |
|
| 14 | + { |
|
| 15 | + // |
|
| 16 | + } |
|
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Register any application services. |
|
| 20 | - */ |
|
| 21 | - public function register() |
|
| 22 | - { |
|
| 23 | - $this->app->bind( |
|
| 24 | - 'Illuminate\Contracts\Auth\Registrar', |
|
| 25 | - Registrar::class |
|
| 26 | - ); |
|
| 27 | - } |
|
| 18 | + /** |
|
| 19 | + * Register any application services. |
|
| 20 | + */ |
|
| 21 | + public function register() |
|
| 22 | + { |
|
| 23 | + $this->app->bind( |
|
| 24 | + 'Illuminate\Contracts\Auth\Registrar', |
|
| 25 | + Registrar::class |
|
| 26 | + ); |
|
| 27 | + } |
|
| 28 | 28 | } |
@@ -7,25 +7,25 @@ |
||
| 7 | 7 | |
| 8 | 8 | class BusServiceProvider extends ServiceProvider |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * Bootstrap any application services. |
|
| 12 | - * |
|
| 13 | - * @param \Illuminate\Bus\Dispatcher $dispatcher |
|
| 14 | - */ |
|
| 15 | - public function boot(Dispatcher $dispatcher) |
|
| 16 | - { |
|
| 17 | - $dispatcher->mapUsing(function ($command) { |
|
| 18 | - return Dispatcher::simpleMapping( |
|
| 19 | - $command, 'PiFinder\Commands', 'PiFinder\Handlers\Commands' |
|
| 20 | - ); |
|
| 21 | - }); |
|
| 22 | - } |
|
| 10 | + /** |
|
| 11 | + * Bootstrap any application services. |
|
| 12 | + * |
|
| 13 | + * @param \Illuminate\Bus\Dispatcher $dispatcher |
|
| 14 | + */ |
|
| 15 | + public function boot(Dispatcher $dispatcher) |
|
| 16 | + { |
|
| 17 | + $dispatcher->mapUsing(function ($command) { |
|
| 18 | + return Dispatcher::simpleMapping( |
|
| 19 | + $command, 'PiFinder\Commands', 'PiFinder\Handlers\Commands' |
|
| 20 | + ); |
|
| 21 | + }); |
|
| 22 | + } |
|
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * Register any application services. |
|
| 26 | - */ |
|
| 27 | - public function register() |
|
| 28 | - { |
|
| 29 | - // |
|
| 30 | - } |
|
| 24 | + /** |
|
| 25 | + * Register any application services. |
|
| 26 | + */ |
|
| 27 | + public function register() |
|
| 28 | + { |
|
| 29 | + // |
|
| 30 | + } |
|
| 31 | 31 | } |
@@ -6,17 +6,17 @@ |
||
| 6 | 6 | |
| 7 | 7 | class ConfigServiceProvider extends ServiceProvider |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * Overwrite any vendor / package configuration. |
|
| 11 | - * |
|
| 12 | - * This service provider is intended to provide a convenient location for you |
|
| 13 | - * to overwrite any "vendor" or package configuration that you may want to |
|
| 14 | - * modify before the application handles the incoming request / command. |
|
| 15 | - */ |
|
| 16 | - public function register() |
|
| 17 | - { |
|
| 18 | - config([ |
|
| 19 | - // |
|
| 20 | - ]); |
|
| 21 | - } |
|
| 9 | + /** |
|
| 10 | + * Overwrite any vendor / package configuration. |
|
| 11 | + * |
|
| 12 | + * This service provider is intended to provide a convenient location for you |
|
| 13 | + * to overwrite any "vendor" or package configuration that you may want to |
|
| 14 | + * modify before the application handles the incoming request / command. |
|
| 15 | + */ |
|
| 16 | + public function register() |
|
| 17 | + { |
|
| 18 | + config([ |
|
| 19 | + // |
|
| 20 | + ]); |
|
| 21 | + } |
|
| 22 | 22 | } |
@@ -7,27 +7,27 @@ |
||
| 7 | 7 | |
| 8 | 8 | class EventServiceProvider extends ServiceProvider |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * The event handler mappings for the application. |
|
| 12 | - * |
|
| 13 | - * @var array |
|
| 14 | - */ |
|
| 15 | - protected $listen = [ |
|
| 16 | - 'PiFinder\Events\ServerWasPoked' => [ |
|
| 17 | - 'PiFinder\Handlers\Events\NotifyUsersAboutPoke', |
|
| 18 | - 'PiFinder\Handlers\Events\UpdateStatistics', |
|
| 19 | - ], |
|
| 20 | - ]; |
|
| 10 | + /** |
|
| 11 | + * The event handler mappings for the application. |
|
| 12 | + * |
|
| 13 | + * @var array |
|
| 14 | + */ |
|
| 15 | + protected $listen = [ |
|
| 16 | + 'PiFinder\Events\ServerWasPoked' => [ |
|
| 17 | + 'PiFinder\Handlers\Events\NotifyUsersAboutPoke', |
|
| 18 | + 'PiFinder\Handlers\Events\UpdateStatistics', |
|
| 19 | + ], |
|
| 20 | + ]; |
|
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * Register any other events for your application. |
|
| 24 | - * |
|
| 25 | - * @param \Illuminate\Contracts\Events\Dispatcher $events |
|
| 26 | - */ |
|
| 27 | - public function boot(DispatcherContract $events) |
|
| 28 | - { |
|
| 29 | - parent::boot($events); |
|
| 22 | + /** |
|
| 23 | + * Register any other events for your application. |
|
| 24 | + * |
|
| 25 | + * @param \Illuminate\Contracts\Events\Dispatcher $events |
|
| 26 | + */ |
|
| 27 | + public function boot(DispatcherContract $events) |
|
| 28 | + { |
|
| 29 | + parent::boot($events); |
|
| 30 | 30 | |
| 31 | - // |
|
| 32 | - } |
|
| 31 | + // |
|
| 32 | + } |
|
| 33 | 33 | } |
@@ -7,23 +7,23 @@ |
||
| 7 | 7 | |
| 8 | 8 | class ObserverServiceProvider extends ServiceProvider |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * Bootstrap the application services. |
|
| 12 | - * |
|
| 13 | - * @return void |
|
| 14 | - */ |
|
| 15 | - public function boot() |
|
| 16 | - { |
|
| 17 | - Device::observe(app('PiFinder\Observers\DeviceObserver')); |
|
| 18 | - } |
|
| 10 | + /** |
|
| 11 | + * Bootstrap the application services. |
|
| 12 | + * |
|
| 13 | + * @return void |
|
| 14 | + */ |
|
| 15 | + public function boot() |
|
| 16 | + { |
|
| 17 | + Device::observe(app('PiFinder\Observers\DeviceObserver')); |
|
| 18 | + } |
|
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * Register the application services. |
|
| 22 | - * |
|
| 23 | - * @return void |
|
| 24 | - */ |
|
| 25 | - public function register() |
|
| 26 | - { |
|
| 27 | - // |
|
| 28 | - } |
|
| 20 | + /** |
|
| 21 | + * Register the application services. |
|
| 22 | + * |
|
| 23 | + * @return void |
|
| 24 | + */ |
|
| 25 | + public function register() |
|
| 26 | + { |
|
| 27 | + // |
|
| 28 | + } |
|
| 29 | 29 | } |
@@ -7,36 +7,36 @@ |
||
| 7 | 7 | |
| 8 | 8 | class RouteServiceProvider extends ServiceProvider |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * This namespace is applied to the controller routes in your routes file. |
|
| 12 | - * |
|
| 13 | - * In addition, it is set as the URL generator's root namespace. |
|
| 14 | - * |
|
| 15 | - * @var string |
|
| 16 | - */ |
|
| 17 | - protected $namespace = 'PiFinder\Http\Controllers'; |
|
| 10 | + /** |
|
| 11 | + * This namespace is applied to the controller routes in your routes file. |
|
| 12 | + * |
|
| 13 | + * In addition, it is set as the URL generator's root namespace. |
|
| 14 | + * |
|
| 15 | + * @var string |
|
| 16 | + */ |
|
| 17 | + protected $namespace = 'PiFinder\Http\Controllers'; |
|
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * Define your route model bindings, pattern filters, etc. |
|
| 21 | - * |
|
| 22 | - * @param \Illuminate\Routing\Router $router |
|
| 23 | - */ |
|
| 24 | - public function boot(Router $router) |
|
| 25 | - { |
|
| 26 | - parent::boot($router); |
|
| 19 | + /** |
|
| 20 | + * Define your route model bindings, pattern filters, etc. |
|
| 21 | + * |
|
| 22 | + * @param \Illuminate\Routing\Router $router |
|
| 23 | + */ |
|
| 24 | + public function boot(Router $router) |
|
| 25 | + { |
|
| 26 | + parent::boot($router); |
|
| 27 | 27 | |
| 28 | - // |
|
| 29 | - } |
|
| 28 | + // |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * Define the routes for the application. |
|
| 33 | - * |
|
| 34 | - * @param \Illuminate\Routing\Router $router |
|
| 35 | - */ |
|
| 36 | - public function map(Router $router) |
|
| 37 | - { |
|
| 38 | - $router->group(['namespace' => $this->namespace], function ($router) { |
|
| 39 | - require app_path('Http/routes.php'); |
|
| 40 | - }); |
|
| 41 | - } |
|
| 31 | + /** |
|
| 32 | + * Define the routes for the application. |
|
| 33 | + * |
|
| 34 | + * @param \Illuminate\Routing\Router $router |
|
| 35 | + */ |
|
| 36 | + public function map(Router $router) |
|
| 37 | + { |
|
| 38 | + $router->group(['namespace' => $this->namespace], function ($router) { |
|
| 39 | + require app_path('Http/routes.php'); |
|
| 40 | + }); |
|
| 41 | + } |
|
| 42 | 42 | } |
@@ -6,32 +6,32 @@ |
||
| 6 | 6 | |
| 7 | 7 | class MarkdownParser |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * Markdown parser instance. |
|
| 11 | - * |
|
| 12 | - * @var ParsedownExtra |
|
| 13 | - */ |
|
| 14 | - private $markdown; |
|
| 9 | + /** |
|
| 10 | + * Markdown parser instance. |
|
| 11 | + * |
|
| 12 | + * @var ParsedownExtra |
|
| 13 | + */ |
|
| 14 | + private $markdown; |
|
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * MarkdownParser constructor. |
|
| 18 | - * |
|
| 19 | - * @param ParsedownExtra $markdown |
|
| 20 | - */ |
|
| 21 | - public function __construct(ParsedownExtra $markdown) |
|
| 22 | - { |
|
| 23 | - $this->markdown = $markdown; |
|
| 24 | - } |
|
| 16 | + /** |
|
| 17 | + * MarkdownParser constructor. |
|
| 18 | + * |
|
| 19 | + * @param ParsedownExtra $markdown |
|
| 20 | + */ |
|
| 21 | + public function __construct(ParsedownExtra $markdown) |
|
| 22 | + { |
|
| 23 | + $this->markdown = $markdown; |
|
| 24 | + } |
|
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Parse a markdown document. |
|
| 28 | - * |
|
| 29 | - * @param $path |
|
| 30 | - * |
|
| 31 | - * @return mixed|string |
|
| 32 | - */ |
|
| 33 | - public function parse($path) |
|
| 34 | - { |
|
| 35 | - return $this->markdown->text($path); |
|
| 36 | - } |
|
| 26 | + /** |
|
| 27 | + * Parse a markdown document. |
|
| 28 | + * |
|
| 29 | + * @param $path |
|
| 30 | + * |
|
| 31 | + * @return mixed|string |
|
| 32 | + */ |
|
| 33 | + public function parse($path) |
|
| 34 | + { |
|
| 35 | + return $this->markdown->text($path); |
|
| 36 | + } |
|
| 37 | 37 | } |
@@ -8,33 +8,33 @@ |
||
| 8 | 8 | |
| 9 | 9 | class Registrar implements RegistrarContract |
| 10 | 10 | { |
| 11 | - /** |
|
| 12 | - * Get a validator for an incoming registration request. |
|
| 13 | - * |
|
| 14 | - * @param array $data |
|
| 15 | - * |
|
| 16 | - * @return \Illuminate\Contracts\Validation\Validator |
|
| 17 | - */ |
|
| 18 | - public function validator(array $data) |
|
| 19 | - { |
|
| 20 | - return Validator::make($data, [ |
|
| 21 | - 'email' => 'required|email|max:255|unique:users', |
|
| 22 | - 'password' => 'required|confirmed|min:6', |
|
| 23 | - ]); |
|
| 24 | - } |
|
| 11 | + /** |
|
| 12 | + * Get a validator for an incoming registration request. |
|
| 13 | + * |
|
| 14 | + * @param array $data |
|
| 15 | + * |
|
| 16 | + * @return \Illuminate\Contracts\Validation\Validator |
|
| 17 | + */ |
|
| 18 | + public function validator(array $data) |
|
| 19 | + { |
|
| 20 | + return Validator::make($data, [ |
|
| 21 | + 'email' => 'required|email|max:255|unique:users', |
|
| 22 | + 'password' => 'required|confirmed|min:6', |
|
| 23 | + ]); |
|
| 24 | + } |
|
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Create a new user instance after a valid registration. |
|
| 28 | - * |
|
| 29 | - * @param array $data |
|
| 30 | - * |
|
| 31 | - * @return User |
|
| 32 | - */ |
|
| 33 | - public function create(array $data) |
|
| 34 | - { |
|
| 35 | - return User::create([ |
|
| 36 | - 'email' => $data['email'], |
|
| 37 | - 'password' => bcrypt($data['password']), |
|
| 38 | - ]); |
|
| 39 | - } |
|
| 26 | + /** |
|
| 27 | + * Create a new user instance after a valid registration. |
|
| 28 | + * |
|
| 29 | + * @param array $data |
|
| 30 | + * |
|
| 31 | + * @return User |
|
| 32 | + */ |
|
| 33 | + public function create(array $data) |
|
| 34 | + { |
|
| 35 | + return User::create([ |
|
| 36 | + 'email' => $data['email'], |
|
| 37 | + 'password' => bcrypt($data['password']), |
|
| 38 | + ]); |
|
| 39 | + } |
|
| 40 | 40 | } |
@@ -7,53 +7,53 @@ discard block |
||
| 7 | 7 | |
| 8 | 8 | class Statistics |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * Returns the count of all pokes. |
|
| 12 | - * |
|
| 13 | - * @return mixed |
|
| 14 | - */ |
|
| 15 | - public function totalPokes() |
|
| 16 | - { |
|
| 17 | - $base = 189771; |
|
| 10 | + /** |
|
| 11 | + * Returns the count of all pokes. |
|
| 12 | + * |
|
| 13 | + * @return mixed |
|
| 14 | + */ |
|
| 15 | + public function totalPokes() |
|
| 16 | + { |
|
| 17 | + $base = 189771; |
|
| 18 | 18 | |
| 19 | - return Poke::count() + $base; |
|
| 20 | - } |
|
| 19 | + return Poke::count() + $base; |
|
| 20 | + } |
|
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * Returns the the count of all devices. |
|
| 24 | - * |
|
| 25 | - * @return mixed |
|
| 26 | - */ |
|
| 27 | - public function totalDevices() |
|
| 28 | - { |
|
| 29 | - return Poke::distinct()->count('mac'); |
|
| 30 | - } |
|
| 22 | + /** |
|
| 23 | + * Returns the the count of all devices. |
|
| 24 | + * |
|
| 25 | + * @return mixed |
|
| 26 | + */ |
|
| 27 | + public function totalDevices() |
|
| 28 | + { |
|
| 29 | + return Poke::distinct()->count('mac'); |
|
| 30 | + } |
|
| 31 | 31 | |
| 32 | - /** |
|
| 33 | - * Returns all pokes. |
|
| 34 | - * |
|
| 35 | - * @return mixed |
|
| 36 | - */ |
|
| 37 | - public function allPokes() |
|
| 38 | - { |
|
| 39 | - return Poke::select( |
|
| 40 | - DB::raw('count(*) as pokes, date(created_at) as date') |
|
| 41 | - ) |
|
| 42 | - ->groupBy('date') |
|
| 43 | - ->get(); |
|
| 44 | - } |
|
| 32 | + /** |
|
| 33 | + * Returns all pokes. |
|
| 34 | + * |
|
| 35 | + * @return mixed |
|
| 36 | + */ |
|
| 37 | + public function allPokes() |
|
| 38 | + { |
|
| 39 | + return Poke::select( |
|
| 40 | + DB::raw('count(*) as pokes, date(created_at) as date') |
|
| 41 | + ) |
|
| 42 | + ->groupBy('date') |
|
| 43 | + ->get(); |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Returns a collection of all networks and it's count. |
|
| 48 | - * |
|
| 49 | - * @return mixed |
|
| 50 | - */ |
|
| 51 | - public function networkDistribution() |
|
| 52 | - { |
|
| 53 | - $this->createSqliteRegexpFunction(); |
|
| 46 | + /** |
|
| 47 | + * Returns a collection of all networks and it's count. |
|
| 48 | + * |
|
| 49 | + * @return mixed |
|
| 50 | + */ |
|
| 51 | + public function networkDistribution() |
|
| 52 | + { |
|
| 53 | + $this->createSqliteRegexpFunction(); |
|
| 54 | 54 | |
| 55 | - $data = Poke::select( |
|
| 56 | - DB::raw(" |
|
| 55 | + $data = Poke::select( |
|
| 56 | + DB::raw(" |
|
| 57 | 57 | CASE |
| 58 | 58 | WHEN ip LIKE '192.168.%' |
| 59 | 59 | THEN '192.168.0.0/16' |
@@ -64,31 +64,31 @@ discard block |
||
| 64 | 64 | ELSE 'Internet' |
| 65 | 65 | END |
| 66 | 66 | AS label, count(*) as value") |
| 67 | - ) |
|
| 68 | - ->groupBy('label') |
|
| 69 | - ->orderBy('label') |
|
| 70 | - ->get(); |
|
| 67 | + ) |
|
| 68 | + ->groupBy('label') |
|
| 69 | + ->orderBy('label') |
|
| 70 | + ->get(); |
|
| 71 | 71 | |
| 72 | - return $this->addColors($data); |
|
| 73 | - } |
|
| 72 | + return $this->addColors($data); |
|
| 73 | + } |
|
| 74 | 74 | |
| 75 | - /** |
|
| 76 | - * Creates the Regexp function for the SQLITE database. |
|
| 77 | - */ |
|
| 78 | - protected function createSqliteRegexpFunction() |
|
| 79 | - { |
|
| 80 | - DB::connection()->getPdo()->sqliteCreateFunction('REGEXP', 'preg_match', 2); |
|
| 81 | - } |
|
| 75 | + /** |
|
| 76 | + * Creates the Regexp function for the SQLITE database. |
|
| 77 | + */ |
|
| 78 | + protected function createSqliteRegexpFunction() |
|
| 79 | + { |
|
| 80 | + DB::connection()->getPdo()->sqliteCreateFunction('REGEXP', 'preg_match', 2); |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - private function addColors($data) |
|
| 84 | - { |
|
| 85 | - $colors = ['rgb(23,103,153)', 'rgb(47,135,176)', 'rgb(66,164,187)', 'rgb(91,192,196)']; |
|
| 86 | - $highlight_colors = ['#8BB3CC', '#97C3D7', '#ADDFE1', '#BBEAE3']; |
|
| 87 | - foreach ($data as $i => $network) { |
|
| 88 | - $network['color'] = $colors[$i]; |
|
| 89 | - $network['highlight'] = $highlight_colors[$i]; |
|
| 90 | - } |
|
| 83 | + private function addColors($data) |
|
| 84 | + { |
|
| 85 | + $colors = ['rgb(23,103,153)', 'rgb(47,135,176)', 'rgb(66,164,187)', 'rgb(91,192,196)']; |
|
| 86 | + $highlight_colors = ['#8BB3CC', '#97C3D7', '#ADDFE1', '#BBEAE3']; |
|
| 87 | + foreach ($data as $i => $network) { |
|
| 88 | + $network['color'] = $colors[$i]; |
|
| 89 | + $network['highlight'] = $highlight_colors[$i]; |
|
| 90 | + } |
|
| 91 | 91 | |
| 92 | - return $data; |
|
| 93 | - } |
|
| 92 | + return $data; |
|
| 93 | + } |
|
| 94 | 94 | } |