Magento2ファイルのダウンロードアクション


11

コンテンツの強制ダウンロードアクションを作成するのに役立つmagentoユーティリティメソッドはありますか?


1
どのタイプ/拡張子のファイルを強制的にダウンロードする必要がありますか?
Fayyaz Khattak

回答:


19

\Magento\Backend\App\Actionバックエンドまたは\Magento\Framework\App\Action\Actionフロントエンド用に拡張することで、コントローラーアクションを作成できます。
次のようにします。

<?php 
namespace Your\Namespace\Here;

class ClassName extends \Magento\Backend\App\Action 
{
    public function __construct(
        \Magento\Framework\Controller\Result\RawFactory $resultRawFactory,
        \Magento\Framework\App\Response\Http\FileFactory $fileFactory,
        \Magento\Backend\App\Action\Context $context
    ) {
        $this->resultRawFactory      = $resultRawFactory;
        $this->fileFactory           = $fileFactory;
        parent::__construct($context);
    }
    public function execute()
    {
        //do your custom stuff here
        $fileName = 'file name for download here';
        $this->fileFactory->create(
            $fileName,
            null, //content here. it can be null and set later 
            base dir of the file to download here
            'application/octet-stream', //content type here
            content lenght here...can be null
        );
        $resultRaw = $this->resultRawFactory->create();
        $resultRaw->setContents(contents of file here); //set content for download file here
        return $resultRaw;
    }
}

コンテンツをnullで渡す方法、上記のメソッドの定義タイプと関数エラーを使用して渡すときにデータの配列があります。
Rakesh Jesadiya、2016年

3
$this->fileFactory->create()これはすでに応答の実装であり、必要がないため、直接結果を返すことができます$resultRaw
Fabian Schmengler '22

@fschmenglerあなたはおそらく正しいですが、私はバックアップダウンロードアクションのコアからこの例を取り上げました。
マリウス

1
ほとんどのM2コアモジュールは悪い例です;)
Fabian Schmengler '22

はいはい私は議論を知っています。私は実際にそれの一部を始めたと思います。しかし、これは常に正しいとは限りません
マリウス

8

また、ダウンロードしたいファイルへのパスを指定することもできます:

//Send file for download
//@see Magento\Framework\App\Response\Http\FileFactory::create()
return $this->_fileFactory->create(
    //File name you would like to download it by
    $filename,
    [
        'type'  => "filename", //type has to be "filename"
        'value' => "folder/{$filename}", // path will append to the
                                         // base dir
        'rm'    => true, // add this only if you would like the file to be
                         // deleted after being downloaded from server
    ],
    \Magento\Framework\App\Filesystem\DirectoryList::MEDIA
);

2

マリウスの答えに基づく。

class Download extends \Magento\Framework\App\Action\Action
{
    protected $resultRawFactory;
    protected $fileFactory;

    public function __construct(
        \Magento\Framework\Controller\Result\RawFactory $resultRawFactory,
        \Magento\Framework\App\Response\Http\FileFactory $fileFactory,
        \Magento\Backend\App\Action\Context $context
    ) {
        $this->resultRawFactory      = $resultRawFactory;
        $this->fileFactory           = $fileFactory;
        parent::__construct($context);
    }
    public function execute()
    {
        try{
            $fileName = 'FileName'; // the name of the downloaded resource
            $this->fileFactory->create(
                $fileName,
                [
                    'type' => 'filename',
                    'value' => 'relative/path/to/file/from/basedir'
                ],
                DirectoryList::MEDIA , //basedir
                'application/octet-stream',
                '' // content length will be dynamically calculated
            );
        }catch (\Exception $exception){
            // Add your own failure logic here
            var_dump($exception->getMessage());
            exit;
        }
        $resultRaw = $this->resultRawFactory->create();
        return $resultRaw;
    }
}

正しい権限がない場合(ここでは読み取りが必要ですが、Magentoが書き込み権限をチェックします)は、奇妙なエラーになります。「サイトがダウンしているか、移動している」またはそのようなもの。

$ fileFactory-> create()内のロジックも少し試してみる価値があります。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.