Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15338 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
16768 efrain 7
 
15338 efrain 8
use Laminas\Mvc\Controller\AbstractActionController;
9
use Laminas\Log\LoggerInterface;
10
 
11
 
12
class StorageNetworkController extends AbstractActionController
13
{
14
    /**
15
     *
16769 efrain 16
     * @var \Laminas\Db\Adapter\AdapterInterface
15338 efrain 17
     */
18
    private $adapter;
19
 
20
    /**
21
     *
16769 efrain 22
     * @var \LeadersLinked\Cache\CacheInterface
15338 efrain 23
     */
16769 efrain 24
    private $cache;
25
 
26
 
27
    /**
28
     *
29
     * @var \Laminas\Log\LoggerInterface
30
     */
15338 efrain 31
    private $logger;
32
 
33
    /**
34
     *
35
     * @var array
36
     */
37
    private $config;
38
 
16769 efrain 39
 
15338 efrain 40
    /**
41
     *
16769 efrain 42
     * @var \Laminas\Mvc\I18n\Translator
43
     */
44
    private $translator;
45
 
46
 
47
    /**
48
     *
49
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
50
     * @param \LeadersLinked\Cache\CacheInterface $cache
51
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
15338 efrain 52
     * @param array $config
16769 efrain 53
     * @param \Laminas\Mvc\I18n\Translator $translator
15338 efrain 54
     */
16769 efrain 55
    public function __construct($adapter, $cache, $logger, $config, $translator)
15338 efrain 56
    {
16769 efrain 57
        $this->adapter      = $adapter;
58
        $this->cache        = $cache;
59
        $this->logger       = $logger;
60
        $this->config       = $config;
61
        $this->translator   = $translator;
15338 efrain 62
    }
63
 
64
    public function downloadAction()
65
    {
66
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
67
        $currentNetwork = $currentNetworkPlugin->getNetwork();
68
 
69
 
70
 
71
        $path = $this->config['leaderslinked.fullpath.network'];
72
 
73
 
74
        $type = $this->params()->fromRoute('type', 'logo');
75
        if($type == 'favico') {
76
            $filename = 'favico.png';
77
        } else  if($type == 'navbar') {
78
            $filename = 'navbar.png';
79
        } else {
80
            $filename = 'logo.png';
81
        }
82
 
83
 
84
        $request_fullpath = $path . $currentNetwork->uuid . DIRECTORY_SEPARATOR . $filename;
85
 
86
 
87
        if(!file_exists($request_fullpath)) {
88
            $request_fullpath = $this->config['leaderslinked.images_default.no_image'];
89
        }
90
 
91
 
92
        if(file_exists($request_fullpath)) {
93
            if (!is_readable($request_fullpath)) {
94
                return $this->getResponse()->setStatusCode(500);
95
            }
96
 
97
            $fileSize = filesize($request_fullpath);
98
 
99
            $mimeType = mime_content_type($request_fullpath);
100
            if($mimeType===false) {
101
                $mimeType = 'application/octet-stream';
102
            }
103
 
104
            $fileContent = file_get_contents($request_fullpath);
105
 
106
            $response = $this->getResponse();
107
            $headers = $response->getHeaders();
108
            $headers->addHeaderLine('Content-type: ' . $mimeType);
109
            $headers->addHeaderLine('Content-length: ' . $fileSize);
110
 
111
            if($fileContent!==false) {
112
                $response->setContent($fileContent);
113
            } else {
114
                $this->getResponse()->setStatusCode(500);
115
                return;
116
            }
117
        } else {
118
            return $this->getResponse()->setStatusCode(404);
119
        }
120
 
121
        return $this->getResponse();
122
    }
123
 
124
}