- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近遇到了 SOLID 设计原则,并一直在寻找将依赖注入(inject)纳入我的工作的方法,以便我可以编写更好的测试并模拟任何外部调用。我在 PHP Laravel (Lumen) 中进行了一些依赖注入(inject),但下面的内容似乎不正确。
创建依赖关系的代码是在其中一个 Controller 的公共(public)方法中创建的。这似乎不是放置它的合适位置,因为我现在有很多非常丑陋的代码在 Controller 内实例化对象,而不仅仅是接收请求和打包响应。有没有更适合实例化的地方?也适用于某些元素,例如$paying_user 对象
。我正在创建一个空的 Eloquent 模型,使用一种方法来检索集合中的第一项并将其与要注入(inject)的返回对象交换。这感觉也不对。谁能指出构建以下内容的最佳和正确方法应该是什么?
public function cancel_subscription(Request $request)
{
$result = false;
// Create dependencies
$platform_id = Sanitiser::clean_integer($request->input('platform_id'));
$paying_user = new PayingUserModel();
$paying_user = $paying_user->where('platform_id','=',$platform_id)->first();
$current_subscription_model = $paying_user->non_cancelled_subscriptions->first();
$refund_model = new RefundModel();
$stripe = new Stripe();
$stripe_refund = new Refund();
$charge = new ChargeModel();
$stripe::setAPIkey(env('STRIPE_SK'));
$stripe_subscription = new Subscription();
// Create services and inject
$this->cancellation_service = new CancellationService($paying_user,$current_subscription_model,$stripe_subscription);
$this->refund_service = new RefundService($paying_user,$current_subscription_model,$refund_model,$stripe_refund,$charge);
// Run services
$result = $this->cancellation_service->cancel_subscription();
if($this->cancellation_service->get_refund_required()==true){
$result = $this->refund_service->handle_refund();
}
}
最佳答案
如果我没看错的话,你是在尝试使用依赖注入(inject)来组织你的代码。我认为最简单的方法是使用 Laravel 的自动注入(inject)。
查看您的代码,定义 cancel_subscription()
的类取决于 CancellationService
和 RefundService
。
同时CancellationService
依赖于PayingUserModel
和Subscription
。而RefundService
依赖于PayingUserModel
、RefundModel
、Refund
和ChargeModel
。
您可以通过类型提示每个类构造函数中的参数来使用自动注入(inject)。
例如CancellationService
类构造函数看起来像这样:
class CancellationService
{
protected $payingUserModel;
protected $subscription;
public function __construct(PayingUserModel $payingUserModel, Subscription $subscription)
{
$this->payingUserModel = $payingUserModel;
$this->subscription = $subscription;
}
}
现在,您要为 PayingUserModel
传递该类的特定实例。
这可以通过将实例绑定(bind)到 AppServiceProvider
类中的容器来完成。
$platform_id = request()->input('platform_id');
$user = PayingUserModel::where('platform_id', '=', $platform_id)->first();
$this->app->instance('PayingUserModel', $user);
或者,您可以将 PayingUserModel
实例注册为单例。
$this->app->singleton('PayingUserModel', function() use($platform_id) {
return PayingUserModel::where('platform_id', '=', $platform_id)->first();
});
我自己没有尝试过,所以我不能 100% 确定这是否可行。但是根据Laravel documentation这就是您管理依赖项注入(inject)的方式,希望它能让您了解如何继续。
关于PHP (Laravel) 依赖注入(inject)基础,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47685222/
我正在尝试测试依赖于其他服务 authService 的服务 documentViewer angular .module('someModule') .service('docu
如果我的网站上线(不要认为它会,目前它只是一个学习练习)。 我一直在使用 mysql_real_escape_string();来自 POST、SERVER 和 GET 的数据。另外,我一直在使用 i
我有以下代码,它容易受到 SQL 注入(inject)的攻击(我认为?): $IDquery = mysqli_query($connection, "SELECT `ID` FROM users W
我一直在自学如何创建扩展,以期将它们用于 CSS 注入(inject)(以及最终以 CSS 为载体的 SVG 注入(inject),但那是以后的问题)。 这是我当前的代码: list .json {
这个简单的代码应该通过 Java Spring 实现一个简单的工厂。然而结果是空指针,因为 Human 对象没有被注入(inject)对象(所以它保持空)。 我做错了什么? 谢谢 配置 @Config
我正在编写一个 ASP.NET MVC4 应用程序,它最终会动态构建一个 SQL SELECT 语句,以便稍后存储和执行。动态 SQL 的结构由用户配置以用户友好的方式确定,具有标准复选框、下拉列表和
首先让我说我是我为确保 SQL 注入(inject)攻击失败而采取的措施的知己。所有 SQL 查询值都是通过事件记录准备语句完成的,所有运算符(如果不是硬编码)都是通过数字白名单系统完成的。这意味着如
这是 SQL 映射声称可注入(inject)的负载: user=-5305' UNION ALL SELECT NULL,CONCAT(0x716b6b7071,0x4f5577454f76734
我正在使用 Kotlin 和 Android 架构组件(ViewModel、LiveData)构建一个新的 Android 应用程序的架构,并且我还使用 Koin 作为我的依赖注入(inject)提供
假设 RequestScope 处于 Activity 状态(使用 cdi-unit 的 @InRequestScope) 给定 package at.joma.stackoverflow.cdi;
我有一个搜索表单,可以在不同的提供商中搜索。 我从拥有一个基本 Controller 开始 public SearchController : Controller { protected r
SQLite 注入 如果您的站点允许用户通过网页输入,并将输入内容插入到 SQLite 数据库中,这个时候您就面临着一个被称为 SQL 注入的安全问题。本章节将向您讲解如何防止这种情况的发生,确保脚
我可以从什么 dll 中获得 Intercept 的扩展?我从 http://github.com/danielmarbach/ninject.extensions.interception 添加了
使用 NInject 解析具有多个构造函数的类似乎不起作用。 public class Class1 : IClass { public Class1(int param) {...} public
我有一个 MetaManager 类: @Injectable() export class MetaManager{ constructor(private handlers:Handler
我是 Angular 的新手,我不太清楚依赖注入(inject)是如何工作的。我的问题是我有依赖于服务 B 的服务 A,但是当我将服务 A 注入(inject)我的测试服务 B 时,服务 B 变得未定
我正在为我的项目使用 android 应用程序启动、刀柄和空间。我在尝试排队工作时遇到错误: com.test E/WM-WorkerFactory: Could not instantiate co
我不确定这是什么糖语法,但让我向您展示问题所在。 def factors num (1..num).select {|n| num % n == 0} end def mutual_factors
简单的问题,我已经看过这个了:Managing imports in Scalaz7 ,但我不知道如何最小化注入(inject) right和 left方法到我的对象中以构造 \/ 的实例. 我确实尝
在我的 Aurelia SPA 中,我有一些我想在不同模块中使用的功能。它依赖于调用时给出的参数和单例的参数。有没有办法创建一个导出函数,我可以将我的 Auth 单例注入(inject)其中,而不必在
我是一名优秀的程序员,十分优秀!