sourcequartet / visitor-log
A package for Laravel 5 to log all visitors
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: >=5.3.0
- illuminate/auth: 5.1.*
- illuminate/config: 5.1.*
- illuminate/database: 5.1.*
- illuminate/http: 5.1.*
- illuminate/session: 5.1.*
- illuminate/support: 5.1.*
- jenssegers/agent: ^2.1
Requires (Dev)
- laracasts/testdummy: ~2.0
- orchestra/testbench: 3.1.*
- phpspec/phpspec: ~2.1
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2023-05-27 10:41:26 UTC
README
A K.I.S.S package to log your Visitor for your Laravel 5 apps.
This package allows you to log your visitor into the database with their useragent and has multiples habilities, it can find if an user is currently on your website, if a visitor is a authentificated user and others habilities 👍
It also includes jenssegers/laravel-agent based from Mobile-Detect library to allow you to identify the Useragent of a Visitor.
It is based on the excellent base from JN-Jones/visitor-log, completely reworked for Laravel 5 using Repositories pattern and Middleware.
Installation
Little thing before anything, the Laravel 'file' driver is known to have no-persistency in session storing, you should store your session through another driver, however, this package has been made to work and override session sid by IP in order to make file driver persistant, it's not ideal.. but it works.
$ composer require sourcequartet/visitor-log
$ php composer update
Configuration on Laravel 5+
Add providers to config/app.php
'providers' => [ SourceQuartet\VisitorLog\VisitorLogServiceProvider::class, ],
Also you can add the Facade for Visitor class :
'aliases' => [ 'Visitor' => SourceQuartet\VisitorLog\VisitorLogFacade::class, ],
Publish migration and package config:
$ php artisan vendor:publish --provider="SourceQuartet\VisitorLog\VisitorLogServiceProvider"
Add the Middleware (you must)
Add this line to your App/Http/Kernel.php
protected $middleware = [ \SourceQuartet\VisitorLog\Middleware\VisitorMiddleware::class, ];
You can also register it to as a route Middleware but as the package can ignore route within his own configuration, it's all you choice, I recommand to not 😋
Configuration
onlinetime
: The time (in minutes) while a visitor is still savedusermodel
: Set this to the Auth Provider you're using:Laravel
: The package will use any package that extend Laravel Guard or will use the basic Auth GuardSentinel
: Visitor-Log will try to get the User with Sentinel -- NOT READY --
ignore
: This is an array of pages that will be ignored by Visitor-Log. Example "admin/online"
API and VisitorLog classes
The Visitor class is an interface binded and included into the Service Container as a Singleton :
SourceQuartet\VisitorLog\Visitor\Visitor
is the VisitorManager InterfaceSourceQuartet\VisitorLog\Visitor\VisitorManager
is the direct instance of the VisitorManager, where the logic before sending data to Repository is stored, requireIlluminate\Config\Repository
,Illuminate\Http\Request
andJenssegers\Agent\Agent
as dependencies to be constructed.SourceQuartet\VisitorLog\Contracts\Visitor\VisitorContract
is the VisitorRepository Interface-ContractSourceQuartet\VisitorLog\Visitor\VisitorRepository
is theSourceQuartet\VisitorLog\VisitorModel
repository handling all the database layer, it requiresSourceQuartet\VisitorLog\VisitorModel
andIlluminate\Database\DatabaseManager
to be constructed and is bind with his Contract called :SourceQuartet\VisitorLog\Contracts\Visitor\VisitorContract
SourceQuartet\VisitorLog\VisitorModel
is the Visitor table Model, it manages the logging of thesid
attributes and is extended byIlluminate\Database\Eloquent\Model
Facade and Visitor class methods
/** Will check whether the user with $id is online and registered as a visitor * return false if the user is not an authentificated User, else, it returns true */ Visitor::checkOnline($id); /** Find the current visitor using his address IP and retriving his unique SID, * The SID is also stored into the session through Illuminate\Http\Request accessor */ Visitor::findCurrent(); /** Clear all visitor where the created_at timestamp is inferior at created_at minus config(visitor-log::onlinetime) * Should not be called out of the scope of a custom Middleware. */ Visitor::clear($time); /** loggedIn() - Will return all visitor that are currently authentificated through Auth or Sentinel * guests() - Will return all visitor that are currently not authentificated through Auth or Sentinel */ Visitor::loggedIn(); Visitor::guests(); /** Find a visitor by his User id, if the user is online and authentificated, it'll return VisitorModel Collection * If the $id isn't passed as an attribute, it'll throw an SourceQuartet\Exception\InvalidArgumentException, * If the user corresponding to the $id is not a visitor (offline), it'll return a null */ Visitor::findUser($id); /** Find a visitor by his IP, if the user is online and authentificated, it'll return VisitorModel Collection * If the $ip isn't passed as an attribute/invalid IP, it'll throw an SourceQuartet\Exception\InvalidArgumentException, */ Visitor::findByIp($id); /** isUser() - Check if current Visitor is an Authentificated User, return bool (true if authentificated, false if not) * isGuest() - Opposite method to isUser() * getUseragent() - Get current Visitor stored Useragent */ Visitor::isUser(); Visitor::isGuest(); Visitor::getUseragent(); // Fetch all visitor logged into the database. Visitor::all(); // Should not be used out of the scope of a Custom Middleware of for testing purposes. Visitor::create(array $attributes); Visitor::updateOrCreate(array $attributes); // Find Visitor directly with his SID Visitor::create($id); // Should not be used out of the VisitorManager constructor or Custom Middleware Visitor::setAgentDetector();
Using jenssegers/laravel-agent
getAgentDetector()
- This method will return an Instance ofJenssegers\Agent\Agent
is('Agent') method :
Visitor::getAgentDetector()->is('Windows'); // Check if UserAgent is Windows Visitor::getAgentDetector()->is('Firefox'); // Check if UserAgent is Firefox Visitor::getAgentDetector()->is('iPhone'); // Check if UserAgent is iPhone Visitor::getAgentDetector()->is('OS X'); // Check if UserAgent is OS X
Magic is-Methods :
Visitor::getAgentDetector()->isAndroidOS(); Visitor::getAgentDetector()->isNexus(); Visitor::getAgentDetector()->isSafari(); Visitor::getAgentDetector()->isMobile(); Visitor::getAgentDetector()->isTablet();
Setting up an UserAgent
Sometime, you may need to foreach or to set manually the Useragent to analyze, so it's quite simple :
$visitors = Visitor::all(); foreach($visitors as $visitor) { Visitor::getAgentDetector()->setAgentToDetector($visitor->useragent); Visitor::getAgentDetector()->isAndroidOS(); }
Or in the case if you need to load the current Useragent :
// Just leave it empty Visitor::getAgentDetector()->setAgentToDetector(); Visitor::getAgentDetector()->isAndroidOS(); ```php Or in the case of a single loading ```php $visitor = Visitor::findUser($id); Visitor::getAgentDetector()->setAgentToDetector($visitor->useragent); Visitor::getAgentDetector()->isAndroidOS();
Others functionnality of the AgentDetector using MobileDetect and jenssegers\laravel-agent :
Please check out jenssenger\laravel-agent docs for a more complete documentation on how to use this UserAgent detector, if you want to use inbuild of VisitorLog, just replace Agent::method()
by Visitor::getAgentDetector()->method()
it's not simpler, and if you want use directely the Agent Facade, register it as jenssenger\laravel-agent
is a dependency of this package and so, you just need to follow the installation inscruction to use it out of the scope of this package 👍
Visitor Model
The Visitor Model also provides some attributes:
sid
: A random String which is used to identicate the visitorip
: The IP of the visitorpage
: The Page where the visitor isuseragent
: The useragent of the visitoruser
: The UserID of the visitor