123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Controller\Download;
- use Magento\Downloadable\Helper\Download as DownloadHelper;
- use Magento\Framework\App\ResponseInterface;
- class LinkSample extends \Magento\Downloadable\Controller\Download
- {
- /**
- * Download link's sample action
- *
- * @return ResponseInterface
- * @SuppressWarnings(PHPMD.ExitExpression)
- */
- public function execute()
- {
- $linkId = $this->getRequest()->getParam('link_id', 0);
- /** @var \Magento\Downloadable\Model\Link $link */
- $link = $this->_objectManager->create(\Magento\Downloadable\Model\Link::class)->load($linkId);
- if ($link->getId()) {
- $resource = '';
- $resourceType = '';
- if ($link->getSampleType() == DownloadHelper::LINK_TYPE_URL) {
- $resource = $link->getSampleUrl();
- $resourceType = DownloadHelper::LINK_TYPE_URL;
- } elseif ($link->getSampleType() == DownloadHelper::LINK_TYPE_FILE) {
- $resource = $this->_objectManager->get(
- \Magento\Downloadable\Helper\File::class
- )->getFilePath(
- $this->_getLink()->getBaseSamplePath(),
- $link->getSampleFile()
- );
- $resourceType = DownloadHelper::LINK_TYPE_FILE;
- }
- try {
- $this->_processDownload($resource, $resourceType);
- exit(0);
- } catch (\Exception $e) {
- $this->messageManager->addError(
- __('Sorry, there was an error getting requested content. Please contact the store owner.')
- );
- }
- }
- return $this->getResponse()->setRedirect($this->_redirect->getRedirectUrl());
- }
- }
|