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