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