openstamanager/src/Models/Upload.php

300 lines
7.4 KiB
PHP
Raw Normal View History

2018-11-30 15:45:43 +01:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.n.c.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2018-11-30 15:45:43 +01:00
namespace Models;
use Common\SimpleModelTrait;
use Illuminate\Database\Eloquent\Model;
use Intervention\Image\ImageManagerStatic;
2020-12-29 15:45:39 +01:00
use Util\FileSystem;
2018-11-30 15:45:43 +01:00
class Upload extends Model
{
use SimpleModelTrait;
2018-11-30 15:45:43 +01:00
protected $table = 'zz_files';
protected $file_info;
2018-11-30 19:40:06 +01:00
public function getCategoryAttribute()
{
return $this->attributes['category'] ?: 'Generale';
}
2019-01-17 16:11:10 +01:00
/**
* Crea un nuovo upload.
*
* @param array $source
* @param array $data
*
* @return self
2019-01-17 16:11:10 +01:00
*/
public static function build($source, $data, $name = null, $category = null)
2019-01-17 16:11:10 +01:00
{
$model = new static();
// Informazioni di base
$original_name = isset($source['name']) ? $source['name'] : basename($source);
$model->original_name = $original_name; // Fix per "original" di Eloquent
$model->name = !empty($name) ? $name : $original_name;
$model->category = $category;
// Informazioni aggiuntive
foreach ($data as $key => $value) {
$model->{$key} = $value;
}
2020-07-28 18:21:37 +02:00
$original_name = $model->original_name; // Fix per "original_name" variato in modo dinamico
// Nome fisico del file
$directory = base_dir().'/'.$model->directory;
$filename = self::getNextName($original_name, $directory);
$model->filename = $filename;
2019-01-17 16:11:10 +01:00
// Creazione file fisico
2019-09-09 09:53:51 +02:00
directory($directory);
if (
2020-12-14 11:05:17 +01:00
(is_array($source) && is_uploaded_file($source['tmp_name']) && !move_uploaded_file($source['tmp_name'], $directory.'/'.$filename)) ||
(is_string($source) && !copy($source, $directory.'/'.$filename))
) {
2019-01-17 16:11:10 +01:00
return null;
}
2020-12-29 15:45:39 +01:00
$model->size = FileSystem::fileSize($directory.'/'.$filename);
$model->user()->associate(auth()->getUser());
$model->save();
return $model;
}
/**
* @return array
*/
public function getInfoAttribute()
{
if (!isset($this->file_info)) {
$filepath = $this->filepath;
$infos = self::getInfo($filepath);
$this->file_info = $infos;
}
2019-01-17 16:11:10 +01:00
return $this->file_info;
}
/**
* @return string|null
*/
public function getExtensionAttribute()
{
return strtolower($this->info['extension']);
2019-01-17 16:11:10 +01:00
}
/**
* @return string
*/
public function getDirectoryAttribute()
2019-01-17 16:11:10 +01:00
{
$parent = $this->plugin ?: $this->module;
return $parent->upload_directory;
}
/**
* @return string
*/
public function getFilepathAttribute()
{
return $this->directory.'/'.$this->filename;
2019-01-17 16:11:10 +01:00
}
2019-07-25 15:48:28 +02:00
/**
* @return string
*/
public function getFileurlAttribute()
{
return str_replace('\\', '/', $this->filepath);
}
2019-07-19 18:11:07 +02:00
/**
* @return string
*/
public function getOriginalNameAttribute()
{
return $this->attributes['original'];
}
public function setOriginalNameAttribute($value)
{
$this->attributes['original'] = $value;
}
/**
* Restituisce i contenuti del file.
*
* @return false|string
*/
public function getContent()
{
return file_get_contents($this->filepath);
}
2019-01-17 16:11:10 +01:00
/**
* @return bool
*/
public function isImage()
{
$list = ['jpg', 'png', 'gif', 'jpeg', 'bmp'];
return in_array($this->extension, $list);
}
/**
* @return bool
*/
public function isFatturaElettronica()
{
return $this->extension == 'xml' && strtolower($this->category) == 'fattura elettronica';
}
/**
* @return bool
*/
public function isPDF()
{
return $this->extension == 'pdf';
}
/**
* @return bool
*/
public function hasPreview()
{
return $this->isImage() || $this->isFatturaElettronica() || $this->isPDF();
}
public function delete()
{
$info = $this->info;
$directory = base_dir().'/'.$this->directory;
$files = [
$directory.'/'.$info['basename'],
$directory.'/'.$info['filename'].'_thumb600.'.$info['extension'],
$directory.'/'.$info['filename'].'_thumb100.'.$info['extension'],
$directory.'/'.$info['filename'].'_thumb250.'.$info['extension'],
];
delete($files);
return parent::delete();
}
public function save(array $options = [])
{
if ($this->isImage()) {
//self::generateThumbnails($this);
}
return parent::save($options);
}
public function copia($data)
{
$result = self::build(base_dir().'/'.$this->filepath, $data, $this->name, $this->category);
return $result;
}
public static function getInfo($file)
{
return pathinfo($file);
}
/* Relazioni Eloquent */
public function module()
{
return $this->belongsTo(Module::class, 'id_module');
}
public function plugin()
{
return $this->belongsTo(Plugin::class, 'id_plugin');
}
public function user()
{
return $this->belongsTo(User::class, 'created_by');
}
/**
* Genera casualmente il nome fisico per il file.
*
* @return string
*/
protected static function getNextName($file, $directory)
{
$extension = self::getInfo($file)['extension'];
$extension = strtolower($extension);
do {
$filename = random_string().'.'.$extension;
} while (file_exists($directory.'/'.$filename));
return $filename;
}
/**
* Genera le thumbnails per le immagini.
*/
protected static function generateThumbnails($upload)
{
$info = $upload->info;
$directory = $upload->directory;
$filepath = $upload->filepath;
if (!in_array(mime_content_type($filepath), ['image/x-png', 'image/gif', 'image/jpeg'])) {
return;
}
$driver = extension_loaded('gd') ? 'gd' : 'imagick';
ImageManagerStatic::configure(['driver' => $driver]);
$img = ImageManagerStatic::make($filepath);
$img->resize(600, null, function ($constraint) {
$constraint->aspectRatio();
});
$img->save(slashes($directory.'/'.$info['filename'].'_thumb600.'.$info['extension']));
$img->resize(250, null, function ($constraint) {
$constraint->aspectRatio();
});
$img->save(slashes($directory.'/'.$info['filename'].'_thumb250.'.$info['extension']));
$img->resize(100, null, function ($constraint) {
$constraint->aspectRatio();
});
$img->save(slashes($directory.'/'.$info['filename'].'_thumb100.'.$info['extension']));
}
2018-11-30 15:45:43 +01:00
}