gpt4 book ai didi

php - 如何使用依赖注入(inject)来包装 League Flysystem

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:40:19 25 4
gpt4 key购买 nike

目的是创建一个Reader 类,它是League Flysystem 之上的包装器documentation

Reader 应该提供方便的方式来读取目录中的所有文件,无论文件的物理形式如何(本地文件,还是存档中的文件)

由于 DI 方法,包装器不应在其内部创建依赖项的实例,而是将这些依赖项作为参数传递给构造函数或其他 setter 方法。

这是一个示例如何单独使用 League Flysystem(没有提到的包装器)从磁盘读取常规文件:

<?php
use League\Flysystem\Filesystem;
use League\Flysystem\Adapter\Local;

$adapter = new Local(__DIR__.'/path/to/root');
$filesystem = new Filesystem($adapter);
$content = $filesystem->read('path-to-file.txt');

正如您首先看到的,您创建了一个本地适配器,它在其构造函数中需要路径然后创建文件系统,在其构造函数中需要适配器实例。

两者的参数:FilesystemLocal 不是可选的。从这些类创建对象时必须传递它们。这两个类也没有这些参数的任何公共(public) setter 。

我的问题是如何使用依赖注入(inject)来编写包装 Filesytem 和 Local 的 Reader 类?

我通常会做类似的事情:

<?php

use League\Flysystem\FilesystemInterface;
use League\Flysystem\AdapterInterface;

class Reader
{
private $filesystem;
private $adapter

public function __construct(FilesystemInterface $filesystem,
AdapterInterface $adapter)
{
$this->filesystem = $filesystem;
$this->adapter = $adapter;
}

public function readContents(string $pathToDirWithFiles)
{
/**
* uses $this->filesystem and $this->adapter
*
* finds all files in the dir tree
* reads all files
* and returns their content combined
*/
}
}

// and class Reader usage
$reader = new Reader(new Filesytem, new Local);
$pathToDir = 'someDir/';
$contentsOfAllFiles = $reader->readContents($pathToDir);

//somwhere later in the code using the same reader object
$contentsOfAllFiles = $reader->readContents($differentPathToDir);

但这行不通,因为我需要将本地适配器传递给文件系统构造函数,为了做到这一点,我需要传递给本地适配器路径优先,完全违背整点Reader 的使用方便性只是将路径传递给 dir所有文件所在的位置,Reader 执行所有需要完成的操作仅通过一种方法 readContents() 即可提供这些文件的内容。

所以我卡住了。是否有可能将该读取器实现为 Filestem 及其本地适配器的包装器?

我想在使用关键字 new 的地方避免紧耦合,并以这种方式获取依赖项的对象:

<?php
use League\Flysystem\Filesystem;
use League\Flysystem\Adapter\Local;

class Reader
{
public function __construct()
{
}

public function readContents(string $pathToDirWithFiles)
{

$adapter = new Local($pathToDirWithFiles);
$filesystem = new Filesystem($adapter);

/**
* do all dir listing..., content reading
* and returning results.
*/
}
}

问题:

  1. 有没有什么方法可以编写一个包装器,以依赖注入(inject)方式使用文件系统和本地作为依赖项?

  2. 除了包装器(适配器)之外,是否还有其他模式可以帮助构建 Reader 类而不与文件系统和本地紧密耦合?

  3. 暂时完全忘记了 Reader 类:如果 Filesystem 在其构造函数中需要 Local 实例,而 Local 在其构造函数中需要字符串(目录路径),那么是否可以在依赖注入(inject)容器中使用这些类( Symfony 或 Pimple)以合理的方式?DIC 不知道将什么路径 arg 传递给本地适配器,因为稍后将在代码中的某处评估该路径。

最佳答案

无论何时调用readContents 方法,您都可以使用工厂模式动态生成文件系统:

<?php

use League\Flysystem\FilesystemInterface;
use League\Flysystem\AdapterInterface;

class Reader
{
private $factory;

public function __construct(LocalFilesystemFactory $factory)
{
$this->filesystem = $factory;
}

public function readContents(string $pathToDirWithFiles)
{
$filesystem = $this->factory->createWithPath($pathToDirWithFiles);

/**
* uses local $filesystem
*
* finds all files in the dir tree
* reads all files
* and returns their content combined
*/
}
}

然后您的工厂负责创建正确配置的文件系统对象:

<?php

use League\Flysystem\Filesystem;
use League\Flysystem\Adapter\Local as LocalAdapter;

class LocalFilesystemFactory {
public function createWithPath(string $path) : Filesystem
{
return new Filesystem(new LocalAdapter($path));
}
}

最后,当你构建你的 Reader 时,它看起来像这样:

<?php

$reader = new Reader(new LocalFilesystemFactory);
$fooContents = $reader->readContents('/foo');
$barContents = $reader->readContents('/bar');

您将创建文件系统的工作委托(delegate)给工厂,同时仍然通过依赖注入(inject)保持组合的目标。

关于php - 如何使用依赖注入(inject)来包装 League Flysystem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55164084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com