2019-04-28 07:31:32 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-28 07:31:32 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-02-27 00:32:44 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-04-10 07:07:36 +02:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2019-04-28 07:31:32 +02:00
|
|
|
|
2023-03-08 08:33:42 +01:00
|
|
|
/**
|
|
|
|
* App\Models\Document
|
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int|null $assigned_user_id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property int|null $project_id
|
|
|
|
* @property int|null $vendor_id
|
|
|
|
* @property string|null $url
|
|
|
|
* @property string|null $preview
|
|
|
|
* @property string|null $name
|
|
|
|
* @property string|null $type
|
|
|
|
* @property string|null $disk
|
|
|
|
* @property string|null $hash
|
|
|
|
* @property int|null $size
|
|
|
|
* @property int|null $width
|
|
|
|
* @property int|null $height
|
|
|
|
* @property int $is_default
|
|
|
|
* @property string|null $custom_value1
|
|
|
|
* @property string|null $custom_value2
|
|
|
|
* @property string|null $custom_value3
|
|
|
|
* @property string|null $custom_value4
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
* @property int $documentable_id
|
|
|
|
* @property string $documentable_type
|
|
|
|
* @property int|null $created_at
|
|
|
|
* @property int|null $updated_at
|
|
|
|
* @property int $is_public
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $documentable
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Database\Factories\DocumentFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document filter(\App\Filters\QueryFilters $filters)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Document withoutTrashed()
|
|
|
|
* @mixin \Eloquent
|
|
|
|
*/
|
2019-04-28 07:31:32 +02:00
|
|
|
class Document extends BaseModel
|
|
|
|
{
|
2020-02-27 00:32:44 +01:00
|
|
|
use SoftDeletes;
|
2021-01-27 11:38:28 +01:00
|
|
|
use Filterable;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
public const DOCUMENT_PREVIEW_SIZE = 300; // pixels
|
2019-04-28 12:25:18 +02:00
|
|
|
|
|
|
|
/**
|
2023-05-08 14:55:37 +02:00
|
|
|
* @var array<string>
|
2019-04-28 12:25:18 +02:00
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'is_default',
|
2020-08-19 08:11:57 +02:00
|
|
|
'is_public',
|
2023-05-08 14:55:37 +02:00
|
|
|
'name',
|
2019-04-28 12:25:18 +02:00
|
|
|
];
|
|
|
|
|
2023-08-20 06:05:26 +02:00
|
|
|
/**
|
|
|
|
* @var array<string>
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'is_public' => 'bool',
|
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
|
|
|
];
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
2019-04-28 12:25:18 +02:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $types = [
|
|
|
|
'png' => [
|
|
|
|
'mime' => 'image/png',
|
|
|
|
],
|
|
|
|
'ai' => [
|
|
|
|
'mime' => 'application/postscript',
|
|
|
|
],
|
|
|
|
'jpeg' => [
|
|
|
|
'mime' => 'image/jpeg',
|
|
|
|
],
|
2021-01-14 10:25:39 +01:00
|
|
|
'jpg' => [
|
|
|
|
'mime' => 'image/jpeg',
|
|
|
|
],
|
2019-04-28 12:25:18 +02:00
|
|
|
'tiff' => [
|
|
|
|
'mime' => 'image/tiff',
|
|
|
|
],
|
|
|
|
'pdf' => [
|
|
|
|
'mime' => 'application/pdf',
|
|
|
|
],
|
|
|
|
'gif' => [
|
|
|
|
'mime' => 'image/gif',
|
|
|
|
],
|
|
|
|
'psd' => [
|
|
|
|
'mime' => 'image/vnd.adobe.photoshop',
|
|
|
|
],
|
|
|
|
'txt' => [
|
|
|
|
'mime' => 'text/plain',
|
|
|
|
],
|
|
|
|
'doc' => [
|
|
|
|
'mime' => 'application/msword',
|
|
|
|
],
|
|
|
|
'xls' => [
|
|
|
|
'mime' => 'application/vnd.ms-excel',
|
|
|
|
],
|
|
|
|
'ppt' => [
|
|
|
|
'mime' => 'application/vnd.ms-powerpoint',
|
|
|
|
],
|
|
|
|
'xlsx' => [
|
|
|
|
'mime' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
|
|
],
|
|
|
|
'docx' => [
|
|
|
|
'mime' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
|
|
],
|
|
|
|
'pptx' => [
|
|
|
|
'mime' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2019-06-03 07:31:20 +02:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public static $extraExtensions = [
|
|
|
|
'jpg' => 'jpeg',
|
|
|
|
'tif' => 'tiff',
|
|
|
|
];
|
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
2019-06-03 07:31:20 +02:00
|
|
|
|
2019-04-28 07:31:32 +02:00
|
|
|
public function documentable()
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
2020-04-10 07:07:36 +02:00
|
|
|
|
2023-01-20 00:58:24 +01:00
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
public function generateUrl($absolute = false)
|
2020-04-10 07:07:36 +02:00
|
|
|
{
|
2020-06-22 07:52:20 +02:00
|
|
|
$url = Storage::disk($this->disk)->url($this->url);
|
2020-04-10 07:07:36 +02:00
|
|
|
|
|
|
|
if ($url && $absolute) {
|
|
|
|
return url($url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($url) {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2020-06-24 10:59:56 +02:00
|
|
|
|
|
|
|
public function generateRoute($absolute = false)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return route('api.documents.show', ['document' => $this->hashed_id]).'/download';
|
2020-06-24 10:59:56 +02:00
|
|
|
}
|
2020-06-24 12:17:42 +02:00
|
|
|
|
|
|
|
public function deleteFile()
|
|
|
|
{
|
|
|
|
Storage::disk($this->disk)->delete($this->url);
|
|
|
|
}
|
2020-08-20 03:10:04 +02:00
|
|
|
|
|
|
|
public function filePath()
|
|
|
|
{
|
|
|
|
return Storage::disk($this->disk)->url($this->url);
|
|
|
|
}
|
2021-02-15 15:52:13 +01:00
|
|
|
|
|
|
|
public function diskPath(): string
|
|
|
|
{
|
|
|
|
return Storage::disk($this->disk)->path($this->url);
|
|
|
|
}
|
2022-03-14 23:30:19 +01:00
|
|
|
|
|
|
|
public function getFile()
|
|
|
|
{
|
2022-03-14 23:36:32 +01:00
|
|
|
return Storage::get($this->url);
|
2022-03-14 23:30:19 +01:00
|
|
|
}
|
2022-04-06 04:22:13 +02:00
|
|
|
|
|
|
|
public function translate_entity()
|
|
|
|
{
|
|
|
|
return ctrans('texts.document');
|
|
|
|
}
|
2023-11-08 09:53:38 +01:00
|
|
|
|
|
|
|
public function compress(): mixed
|
|
|
|
{
|
|
|
|
|
|
|
|
$image = $this->getFile();
|
|
|
|
$catch_image = $image;
|
|
|
|
|
2023-11-26 08:41:42 +01:00
|
|
|
if(!extension_loaded('imagick')) {
|
2023-11-08 09:53:38 +01:00
|
|
|
return $catch_image;
|
2023-11-26 08:41:42 +01:00
|
|
|
}
|
2023-11-08 09:53:38 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
$file = base64_encode($image);
|
|
|
|
|
|
|
|
$img = new \Imagick();
|
|
|
|
$img->readImageBlob($file);
|
|
|
|
$img->setImageCompression(true);
|
2024-02-06 21:42:46 +01:00
|
|
|
$img->setImageCompressionQuality(40);
|
2023-11-08 09:53:38 +01:00
|
|
|
|
|
|
|
return $img->getImageBlob();
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-11-26 08:41:42 +01:00
|
|
|
} catch(\Exception $e) {
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-11-08 09:53:38 +01:00
|
|
|
nlog($e->getMessage());
|
|
|
|
return $catch_image;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-11-08 09:54:26 +01:00
|
|
|
/**
|
|
|
|
* Returns boolean based on checks for image.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isImage(): bool
|
|
|
|
{
|
|
|
|
if (in_array($this->type, ['png', 'jpeg', 'jpg', 'tiff', 'gif'])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-04-28 07:31:32 +02:00
|
|
|
}
|