简体   繁体   English

在 Mezzio 框架 (Zend/Laminas) 中下载 CSV

[英]Download CSV in Mezzio Framework (Zend/Laminas)

In Mezzion Framework I have the next Handler:在 Mezzion 框架中,我有下一个处理程序:

 <?php

namespace Bgc\Handler;

use App\Service\GenerateReportToCSV;
use Bgc\Queue\BGCQueueManager;
use Laminas\Diactoros\Response\TextResponse;
use League\Csv\Writer;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;

class DownloadBgcReportHandler implements RequestHandlerInterface
{
    protected $bgcQManager;
    protected $reportToCSV;

    public function __construct(BGCQueueManager $bgcQManager, $reportToCSV)
    {
        $this->bgcQManager = $bgcQManager;
        $this->reportToCSV = $reportToCSV;
    }

    public function handle(ServerRequestInterface $request): TextResponse
    {
        $queryParams = $request->getQueryParams();
        $params = [];

        if (isset($queryParams['startDate'])) {
            $starDate = new \DateTime($queryParams['startDate']);
            $params['startDate'] = $starDate->modify('midnight');
        }

        if (isset($queryParams['startDate'])) {
            $endDate = new \DateTime($queryParams['endDate']);
            $params['endDate'] = $endDate->modify('tomorrow');
        }

        $itemsBGC = $this->bgcQManager->getDataToDownload($params);
        $time = time();
        $fileName = "bgc-report-$time.csv";

        $csv = Writer::createFromFileObject(new \SplFileObject());
        $csv->insertOne($this->reportToCSV->getHeadingsBGC());

        foreach ($itemsBGC as $item) {
            $csv->insertOne($item);
        }

        return new TextResponse($csv->getContent(), 200, [
            'Content-Type' => 'text/csv',
            'Content-Transfer-Encoding' => 'binary',
            'Content-Disposition' => "attachment; filename='$fileName'"
        ]);
    }
}

I have the below error:我有以下错误:

Whoops\Exception\ErrorException: Declaration of Bgc\Handler\DownloadBgcReportHandler::handle(Psr\Http\Message\ServerRequestInterface $request): Laminas\Diactoros\Response\TextResponse must be compatible with Psr\Http\Server\RequestHandlerInterface::handle(Psr\Http\Message\ServerRequestInterface $request): Psr\Http\Message\ResponseInterface in file /home/peter/proyectos/revelations-thena-api/src/Bgc/src/Handler/DownloadBgcReportHandler.php on line 20

I don't know, to create a downloable file.我不知道,要创建一个可下载的文件。 The hadbler works fine with Json. hadbler 与 Json 一起工作得很好。 I tried to change from ResponseInterface to TextResponse.我试图从 ResponseInterface 更改为 TextResponse。

How can I download file CSV?如何下载文件 CSV? Thank you谢谢

The error you received is telling you that your method signature is not compliant to interface's method signature.您收到的错误是告诉您您的方法签名不符合接口的方法签名。

RequestHandlerInterface:请求处理程序接口:

interface RequestHandlerInterface
{
    public function handle(ServerRequestInterface $request): ResponseInterface;
}

As you see, the signature states that an object of type ResponseInterface is returned.如您所见,签名声明返回了一个ResponseInterface类型的对象。

You modified the signature:您修改了签名:

class DownloadBgcReportHandler implements RequestHandlerInterface
{
    public function handle(ServerRequestInterface $request): TextResponse;
}

The signature must be the same, but then you can return the TextResponse without problem (since it extends Laminas\\Diactoros\\Response , which implements Psr\\Http\\Message\\ResponseInterface )签名必须相同,但随后您可以毫无问题地返回 TextResponse (因为它扩展了Laminas\\Diactoros\\Response ,它实现了Psr\\Http\\Message\\ResponseInterface

Just change that and it will works :)只需改变它,它就会起作用:)

你已经修改了你的处理方法,所以现在你没有满足 RequestHandlerInterface 的要求

Replace the return value for the handler with ResponseInterface enforced in the interface: RequestHandlerInterface用接口中强制执行的ResponseInterface替换处理程序的返回值: RequestHandlerInterface

so i think you are best helped with:所以我认为你最好在以下方面得到帮助:

<?php

namespace Bgc\Handler;

use App\Service\GenerateReportToCSV;
use Bgc\Queue\BGCQueueManager;
use Laminas\Diactoros\Response;
use Laminas\Diactoros\Stream;
use League\Csv\Writer;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;

class DownloadBgcReportHandler implements RequestHandlerInterface
{
    protected $bgcQManager;
    protected $reportToCSV;

    public function __construct(BGCQueueManager $bgcQManager, $reportToCSV)
    {
        $this->bgcQManager = $bgcQManager;
        $this->reportToCSV = $reportToCSV;
    }

    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        $queryParams = $request->getQueryParams();
        $params = [];

        if (isset($queryParams['startDate'])) {
            $starDate = new \DateTime($queryParams['startDate']);
            $params['startDate'] = $starDate->modify('midnight');
        }

        if (isset($queryParams['startDate'])) {
            $endDate = new \DateTime($queryParams['endDate']);
            $params['endDate'] = $endDate->modify('tomorrow');
        }

        $itemsBGC = $this->bgcQManager->getDataToDownload($params);
        $time = time();
        $fileName = "bgc-report-$time.csv";

        // $csv = Writer::createFromFileObject(new \SplFileObject());
        // $csv->insertOne($this->reportToCSV->getHeadingsBGC());
        $csv = Writer::createFromString($this->reportToCSV->getHeadingsBGC());

        foreach ($itemsBGC as $item) {
            $csv->insertOne($item);
        }

        $body = new Stream($csv->getContent());

        return new Response($body, 200, [
            'Cache-Control' => 'must-revalidate',
            'Content-Disposition' => 'attachment; filename=' . $fileName,
            'Content-Length' => strval($body->getSize()),
            'Content-Type' => 'text/csv',
            'Content-Transfer-Encoding' => 'binary',
            'Expires' => '0',
            'Pragma' => 'public',
        ]);
    }
}

PS: i have commented the 2 lines in which an empty new \\SplFileObject() was used, because the required param $filename was empty (and i did not want to make a decision there) and added a line with Writer::createFromString() . PS:我已经评论了其中使用空的new \\SplFileObject()的 2 行,因为所需的参数$filename是空的(我不想在那里做出决定)并添加了一行Writer::createFromString()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM