santigarcor/laravel-ownable
Composer 安装命令:
composer require santigarcor/laravel-ownable
包简介
Simple trait to manage the ownershipt of models/objects
关键字:
README 文档
README
This trait allows you to check if a model owns some other model in your Laravel application.
Installation
Simply run:
composer require santigarcor/laravel-ownable
Then you have to use the OwnsModels trait in the models you want to check if they own other models.
<?php use Ownable\OwnsModels; use Illuminate\Database\Eloquent\Model; class User extends Model { use OwnsModels; }
You are now ready to use it.
Usage
<?php use Ownable\OwnsModels; use Illuminate\Database\Eloquent\Model; class User extends Model { use OwnsModels; } class Video extends Model { } $user = User::first(); $video = Video::first(); // Check If the user owns the video if ($user->owns($video)){} // Check If the user doesn't owns the video if ($user->doesntOwn($video)){} // Check If the user owns the video but the foreign key is the_user_id if ($user->owns($video, 'the_user_id')){}
If for some reason the ownership check needs a more complex logic, you can implement the Ownable interface inside your ownable objects and then you can define your custom logic in the isOwnedBy method. When this method is called, the object that called the owns method is passed as an attribute to the isOwnedBy method.
<?php use Ownable\OwnsModels; use Illuminate\Database\Eloquent\Model; class User extends Model { use OwnsModels; } use Ownable\Contracts\Ownable; class Video extends Model implements Ownable { public function isOwnedBy($owner): bool { if ($owner instanceof User) { return $this->someRelationship->user_id == $owner->id; } return false; } } $user = User::first(); $video = Video::first(); // Then you can simply call the owns method on the user and it will work. // Check If the user owns the video if ($user->owns($video)){} // Check If the user owns the video but don't use the ownable logic, instead the regular one with the foreign key. if ($user->owns($video, null, false)){}
santigarcor/laravel-ownable 适用场景与选型建议
santigarcor/laravel-ownable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 229 次下载、GitHub Stars 达 20, 最近一次更新时间为 2020 年 05 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「ownable」 「ownership」 「owns」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 santigarcor/laravel-ownable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 santigarcor/laravel-ownable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 santigarcor/laravel-ownable 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Ownership simplify management of Eloquent model's owner.
Short headline for Identity
Easy ownership for Eloquent Models on Laravel 5
Alfabank REST API integration
Master data for OPD (organizational units), PIC (person-in-charge), and asset ownership across Nawasara packages.
Psr-15 middleware allowing to validate the user session ownership
统计信息
- 总下载量: 229
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-14