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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-28 07:31:32 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2021-01-27 11:38:28 +01:00
|
|
|
use App\Models\Filterable;
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2019-04-28 14:23:22 +02:00
|
|
|
const DOCUMENT_PREVIEW_SIZE = 300; // pixels
|
2019-04-28 12:25:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'is_default',
|
2020-08-19 08:11:57 +02:00
|
|
|
'is_public',
|
2019-04-28 12:25:18 +02:00
|
|
|
];
|
|
|
|
|
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',
|
|
|
|
],
|
|
|
|
'svg' => [
|
|
|
|
'mime' => 'image/svg+xml',
|
|
|
|
],
|
|
|
|
'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
|
|
|
|
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);
|
|
|
|
}
|
2019-04-28 07:31:32 +02:00
|
|
|
}
|