Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5848 | Rev 6849 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3639 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Controller;
5
 
6
use Laminas\Db\Adapter\AdapterInterface;
6749 efrain 7
use LeadersLinked\Cache\CacheInterface;
3639 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
     *
6749 efrain 23
     * @var CacheInterface
3639 efrain 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
6749 efrain 43
     * @param CacheInterface $cache
3639 efrain 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
        $path = $this->config['leaderslinked.fullpath.network'];
62
 
63
 
64
        $type = $this->params()->fromRoute('type', 'logo');
65
        if($type == 'favico') {
66
            $filename = 'favico.png';
67
        } else  if($type == 'navbar') {
68
            $filename = 'navbar.png';
5848 efrain 69
        } else  if($type == 'moodle') {
70
            $filename = 'moodle.png';
3639 efrain 71
        } else {
72
            $filename = 'logo.png';
73
        }
74
 
75
 
76
        $request_fullpath = $path . $currentNetwork->uuid . DIRECTORY_SEPARATOR . $filename;
77
 
78
 
79
        if(!file_exists($request_fullpath)) {
80
            $request_fullpath = $this->config['leaderslinked.images_default.no_image'];
81
        }
82
 
83
 
84
        if(file_exists($request_fullpath)) {
85
            if (!is_readable($request_fullpath)) {
86
                return $this->getResponse()->setStatusCode(500);
87
            }
88
 
89
            $fileSize = filesize($request_fullpath);
90
 
91
            $mimeType = mime_content_type($request_fullpath);
92
            if($mimeType===false) {
93
                $mimeType = 'application/octet-stream';
94
            }
95
 
96
            $fileContent = file_get_contents($request_fullpath);
97
 
98
            $response = $this->getResponse();
99
            $headers = $response->getHeaders();
100
            $headers->addHeaderLine('Content-type: ' . $mimeType);
101
            $headers->addHeaderLine('Content-length: ' . $fileSize);
102
 
103
            if($fileContent!==false) {
104
                $response->setContent($fileContent);
105
            } else {
106
                $this->getResponse()->setStatusCode(500);
107
                return;
108
            }
109
        } else {
110
            return $this->getResponse()->setStatusCode(404);
111
        }
112
 
113
        return $this->getResponse();
114
    }
115
 
116
}