项目作者: delino12

项目描述 :
A laravel package for managing application audit trail and system logs, showing client device and browser information
高级语言: PHP
项目地址: git://github.com/delino12/footprint.git
创建时间: 2020-06-07T08:37:30Z
项目社区:https://github.com/delino12/footprint

开源协议:

下载


Footprint

A laravel package viewing clients IPs, browser information and Device Operating System.

Footprint

Note: at this point I would strongly recommend use of route names.

To log view you can use the Footprint static logTrail method passing request object as parameter

  1. <?php
  2. use Footprint;
  3. // log trail
  4. public function index(Request $request){
  5. Footprint::logTrail($request);
  6. return view('welcome');
  7. }
  8. // log trail with description
  9. public function task(Request $request){
  10. $request->description = "Task manager";
  11. Footprint::logTrail($request);
  12. return view('task');
  13. }

Installation

Supported version Laravel 7.x and above.

With Composer

  1. $ composer require codedreamer/footprint
  1. {
  2. "require": {
  3. "codedreamer/footprint": "^1.0.0"
  4. }
  5. }
  1. $ composer install

Locate Laravel config/app.php add providers and aliases facades

  1. <?php
  2. 'providers' => [
  3. App\Providers\RouteServiceProvider::class,
  4. Codedreamer\Footprint\FootprintServiceProvider::class,
  5. ..................
  6. ]
  7. 'aliases' => [
  8. 'View' => Illuminate\Support\Facades\View::class,
  9. 'Footprint' => Codedreamer\Footprint\Facades\Footprint::class,
  10. ..................
  11. ]

Now publish package vendor to enable view customization and migration

  1. $ php artisan vendor:publish --provider="Codedreamer\Footprint\FootprintServiceProvider"

Now run the migration command to migrate footprints table

  1. $ php artisan migrate

Docs

To log every incoming authentication request add the Footprint static class inside the authenticate request middleware class

  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Auth\Middleware\Authenticate as Middleware;
  4. use Footprint;
  5. class Authenticate extends Middleware
  6. {
  7. /**
  8. * Get the path the user should be redirected to when they are not authenticated.
  9. *
  10. * @param \Illuminate\Http\Request $request
  11. * @return string|null
  12. */
  13. protected function redirectTo($request)
  14. {
  15. // log trail
  16. Footprint::logTrail($request);
  17. if (! $request->expectsJson()) {
  18. return route('login');
  19. }
  20. }
  21. }

To log user login / register add the following line to Auth\LoginController or Auth\RegisterController

  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Auth\Middleware\Authenticate as Middleware;
  4. use Footprint;
  5. class LoginController extends Controller
  6. {
  7. // an example
  8. protected function login($request)
  9. {
  10. // log trail
  11. Footprint::logTrail($request);
  12. // code here...
  13. }
  14. }

Security contact information

Coming soon

Credits

Coming soon

Contributors

This project exists thanks to all the people who contribute.

Coming soon

Translators

Work in progress

Backers

Thank you to all our backers! 🙏 become a backer and get your image tag to this package

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.