shetabit/visitor
Composer 安装命令:
composer require shetabit/visitor
包简介
Laravel visitor
README 文档
README
Laravel Visitor
This is a laravel package to extract and access visitors' information such as browser, ip, device and etc.
In this package, you can recognize online users and determine if a user is online or not
Install
Via composer
composer require shetabit/visitor
Configure
If you are using Laravel 5.5 or higher then you don't need to add the provider and alias.
# In your providers array. 'providers' => [ ... Shetabit\Visitor\Provider\VisitorServiceProvider::class, ], # In your aliases array. 'aliases' => [ ... 'Visitor' => Shetabit\Visitor\Facade\Visitor::class, ],
Then, run the below commands to publish migrations and create tables
php artisan vendor:publish php artisan migrate
How to use
You can access to visitor's information using $request->visitor() in your controllers , and you can access to the visitor's information using visitor() helper function any where.
We have the below methods to retrieve a visitor's information:
device: device's nameplatform: platform's namebrowser: browser's namelanguages: language's nameip: client's iprequest: the whole request inputsuseragent: the whole useragentisOnline: determines if current (or given) user is online
$request->visitor()->browser(); // firefox $request->visitor()->visit($post); // create log for post $request->visitor()->setVisitor($user)->visit($post); // create a log which says $user has visited $post
Store Logs
You can create logs using the visit method like the below
visitor()->visit(); // create a visit log
use Shetabit\Visitor\Traits\Visitable trait in your models, then you can save visit's log for your models like the below
// or you can save log like the below visitor()->visit($model); // or like the below $model->createVisitLog(); // you can say which user has visited the given $model $model->createVisitLog($user); // or like the below visitor()->setVisitor($user)->visit($model);
Model views can be loaded using visits relation.
You can count model visits like the below
$model->visitLogs()->count();
unique users can be counted by their IP and by model.
// by ip $model->visitLogs()->distinct('ip')->count('ip'); // by user's model $model->visitLogs()->visitor()->count();
use Shetabit\Visitor\Traits\Visitor in your User class, then you can run below codes
$user->visit(); // create a visit log $user->visit($model); // create a log which says, $user has visited $model
Retrieve and Determine Online users
use Shetabit\Visitor\Traits\Visitor in your User class at first.
Then you can retrieve online users which are instance of User class and determine if a user is online.
visitor()->onlineVisitors(User::class); // returns collection of online users User::online()->get(); // another way visitor()->isOnline($user); // determines if the given user is online $user->isOnline(); // another way
Automatic logging
Your application can store visitor's log automatically using LogVisits middleware.
Add the Shetabit\Visitor\Middlewares\LogVisits middleware if you want to save logs automatically.
The middleware will store logs for models which has binded in router (router model binding) and has used Shetabit\Visitor\Traits\Visitable trait.
Star History
shetabit/visitor 适用场景与选型建议
shetabit/visitor 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 631.15k 次下载、GitHub Stars 达 566, 最近一次更新时间为 2019 年 10 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「visitor」 「shetabit」 「track laravel visitors」 「trace laravel visitors」 「parse laravel user agents」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shetabit/visitor 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shetabit/visitor 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shetabit/visitor 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Payment Gateway Integration Package
Web-IT GLS Tracking API
The PHP SDK of TrackingMore API
Assigns UID to user and allows to perform varios actions.
The PHP SDK of 51Tracking API
A Laravel 5 package to automatically log attributes changes on any of your app models.
统计信息
- 总下载量: 631.15k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 568
- 点击次数: 27
- 依赖项目数: 7
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-10-14
