jeroen-g/guestpass
Composer 安装命令:
composer require jeroen-g/guestpass
包简介
Flickr-like Guest Pass system for Laravel.
README 文档
README
Installation
Via Composer
$ composer require jeroen-g/guestpass
If you run Laravel 5.5, the service provider and facade are autodiscovered. If not then add them manually:
JeroenG\GuestPass\GuestPassServiceProvider::class, // ... 'GuestPass' => JeroenG\GuestPass\GuestPassFacade::class,
Usage
To use Guest Passes, you will need two models: one that is the owner granting guest access (typically a user) and another that is the object to which access is being granted. In the examples below, a photo is used for this.
Creating new Guest Passes
Requires the owner and object models.
GuestPass::create($user, $photo);
Returns true if successfull, false otherwise.
Retrieving Guest Pass data
A Guest Pass contains the following data: owner_model, owner_id; object_model, object_id; key (unique); view (nullable).
Getting all keys of the owner
Requires the owner model.
GuestPass::getKeysOf($user);
Returns a collection of all Guest Pass keys and their corresponding data is attached as well.
Finding a Guest Pass for corresponding owner and object
Requires the owner and object model.
GuestPass::findGuestPass($user, $photo);
Returns an Eloquent model (or throws an exception).
Get one specific Guest Pass by its key
Requires the key (string).
GuestPass::getGuestPass($key);
Returns an Eloquent model (or throws an exception).
Checking ownership
Requires the owner and Guest Pass models.
GuestPass::isOwner($user, $guestpass);
Returns true or false.
Access controller
The package ships with a controller that checks for the /gp/{owner id}/{key} route and when valid it returns the view (404 otherwise). Each view is passed the object and the Guest Pass models.
The views will be sought in the resources/views/guests/ directory.
Custom views
When creating a Guest Pass it is possible to pass a custom view as the third parameter
GuestPass::create($user, $photo, 'album');
In this case, the access controller will not use photo.blade.php (which would be the default) but album.blade.php but the directory remains the same and it is not necessary to add the file extension.
Changelog
Please see changelog.md for what has changed recently.
Contributing
Please see contributing.md for details.
Credits
License
The EU Public License. Please see license.md for more information.
jeroen-g/guestpass 适用场景与选型建议
jeroen-g/guestpass 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 21, 最近一次更新时间为 2017 年 08 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「JeroenG」 「guestpass」 「Guest Pass」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jeroen-g/guestpass 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jeroen-g/guestpass 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jeroen-g/guestpass 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This plugin allows you to save guest entries from the front-end of your website.
Modern PHP package to make Flickr API calls. Ships with Laravel implementation.
Additional Wishlist functionality for the Magento 2 project
Advanced Guestbook for TYPO3 - TYPO3 Guestbook Extension easily integrates all the features of a guestbook, including a review form with email sending functionality. This TYPO3 guestbook plugin also includes spam protection and numerous customization options. Guests can share their reviews, ratings,
Add a honeypot captcha to your Craft CMS guest entries form
Add a box that invite user to register under navbar
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: EUPL-1.1
- 更新时间: 2017-08-16