1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/Document.php

126 lines
2.7 KiB
PHP
Raw Normal View History

2019-04-28 07:31:32 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. 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;
use Illuminate\Database\Eloquent\Model;
2020-02-27 00:32:44 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
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;
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',
];
2019-05-07 07:08:10 +02: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',
],
'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',
];
public function getEntityType()
{
return Document::class;
}
2019-06-03 07:31:20 +02:00
2019-04-28 07:31:32 +02:00
public function documentable()
{
return $this->morphTo();
}
public function generateUrl($absolute = false)
{
2020-06-22 07:52:20 +02:00
$url = Storage::disk($this->disk)->url($this->url);
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-06-24 14:12:43 +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);
}
2019-04-28 07:31:32 +02:00
}