Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 17002 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 17002 Rev 17018
Línea 271... Línea 271...
271
    
271
    
272
    public function inMailCompanyAction()
272
    public function inMailCompanyAction()
273
    {
273
    {
Línea -... Línea 274...
-
 
274
    }
-
 
275
   
-
 
276
    
-
 
277
    public function storageAction()
-
 
278
    {
-
 
279
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
-
 
280
        $currentNetwork = $currentNetworkPlugin->getNetwork();
-
 
281
        
-
 
282
        $request = $this->getRequest();
-
 
283
        if ($request->isGet()) {
-
 
284
            
-
 
285
            $code = $this->params()->fromRoute('code');
-
 
286
            if(empty($code)) {
-
 
287
                $data = [
-
 
288
                    'success' => false,
-
 
289
                    'data' => 'ERROR_STORAGE_CODE_INVALID'
-
 
290
                ];
-
 
291
                
-
 
292
                return new JsonModel($data);
-
 
293
            }
-
 
294
            
-
 
295
            $storageFileMapper = \LeadersLinked\Mapper\StorageFileMapper::getInstance($this->adapter);
-
 
296
            $storageFile = $storageFileMapper->fetchOneByCode($code);
-
 
297
            
-
 
298
            
-
 
299
            
-
 
300
            if($storageFile) {
-
 
301
                
-
 
302
                
-
 
303
                if(file_exists($storageFile->path)) {
-
 
304
                    
-
 
305
                    // Try to open file
-
 
306
                    if (!is_readable($storageFile->path)) {
-
 
307
                        return $this->getResponse()->setStatusCode(500);
-
 
308
                    }
-
 
309
                    
-
 
310
                    // Get file size in bytes.
-
 
311
                    $fileSize = filesize($storageFile->path);
-
 
312
                    
-
 
313
                    // Get MIME type of the file.
-
 
314
                    $mimeType = mime_content_type($storageFile->path);
-
 
315
                    if($mimeType===false) {
-
 
316
                        $mimeType = 'application/octet-stream';
-
 
317
                    }
-
 
318
                    
-
 
319
                    $fileContent = file_get_contents($storageFile->path);
-
 
320
                    
-
 
321
                    $response = $this->getResponse();
-
 
322
                    $headers = $response->getHeaders();
-
 
323
                    $headers->addHeaderLine('Content-type: ' . $mimeType);
-
 
324
                    $headers->addHeaderLine('Content-length: ' . $fileSize);
-
 
325
                    
-
 
326
                    if($fileContent!==false) {
-
 
327
                        $response->setContent($fileContent);
-
 
328
                        return $response;
-
 
329
                    } else {
-
 
330
                        $this->getResponse()->setStatusCode(500);
-
 
331
                        return;
-
 
332
                    }
-
 
333
                } else {
-
 
334
                    return $this->getResponse()->setStatusCode(404);
-
 
335
                }
-
 
336
                
-
 
337
            } else {
-
 
338
                return $this->getResponse()->setStatusCode(404);
-
 
339
            }
-
 
340
            
-
 
341
            
-
 
342
            
-
 
343
            
-
 
344
            
-
 
345
            
-
 
346
            
-
 
347
        } else {
-
 
348
            $data = [
-
 
349
                'success' => false,
-
 
350
                'data' => 'ERROR_METHOD_NOT_ALLOWED'
-
 
351
            ];
-
 
352
            
-
 
353
            return new JsonModel($data);
274
    }
354
        }