2018-09-25 13:30:50 +02:00
|
|
|
<?php namespace BookStack\Uploads;
|
|
|
|
|
2020-11-22 01:17:45 +01:00
|
|
|
use BookStack\Entities\Models\Page;
|
2020-12-30 19:25:35 +01:00
|
|
|
use BookStack\Model;
|
|
|
|
use BookStack\Traits\HasCreatorAndUpdater;
|
2016-10-09 19:58:22 +02:00
|
|
|
|
2020-09-13 19:29:48 +02:00
|
|
|
/**
|
|
|
|
* @property int id
|
|
|
|
* @property string name
|
|
|
|
* @property string path
|
|
|
|
* @property string extension
|
|
|
|
* @property bool external
|
|
|
|
*/
|
2020-12-30 19:25:35 +01:00
|
|
|
class Attachment extends Model
|
2016-10-09 19:58:22 +02:00
|
|
|
{
|
2020-12-30 19:25:35 +01:00
|
|
|
use HasCreatorAndUpdater;
|
|
|
|
|
2016-10-09 19:58:22 +02:00
|
|
|
protected $fillable = ['name', 'order'];
|
|
|
|
|
2016-10-23 14:36:45 +02:00
|
|
|
/**
|
|
|
|
* Get the downloadable file name for this upload.
|
|
|
|
* @return mixed|string
|
|
|
|
*/
|
|
|
|
public function getFileName()
|
|
|
|
{
|
2019-09-14 00:58:40 +02:00
|
|
|
if (strpos($this->name, '.') !== false) {
|
2018-01-28 17:58:52 +01:00
|
|
|
return $this->name;
|
|
|
|
}
|
2016-10-23 14:36:45 +02:00
|
|
|
return $this->name . '.' . $this->extension;
|
|
|
|
}
|
|
|
|
|
2016-10-09 19:58:22 +02:00
|
|
|
/**
|
|
|
|
* Get the page this file was uploaded to.
|
2018-09-25 19:00:40 +02:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
2016-10-09 19:58:22 +02:00
|
|
|
*/
|
|
|
|
public function page()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Page::class, 'uploaded_to');
|
|
|
|
}
|
|
|
|
|
2016-10-10 21:30:27 +02:00
|
|
|
/**
|
|
|
|
* Get the url of this file.
|
|
|
|
*/
|
2021-06-06 14:55:56 +02:00
|
|
|
public function getUrl($openInline = false): string
|
2016-10-10 21:30:27 +02:00
|
|
|
{
|
2018-05-20 12:06:10 +02:00
|
|
|
if ($this->external && strpos($this->path, 'http') !== 0) {
|
|
|
|
return $this->path;
|
|
|
|
}
|
2021-06-06 14:55:56 +02:00
|
|
|
return url('/attachments/' . $this->id . ($openInline ? '?open=true' : ''));
|
2016-10-10 21:30:27 +02:00
|
|
|
}
|
2020-07-28 11:45:28 +02:00
|
|
|
|
2020-09-13 19:29:48 +02:00
|
|
|
/**
|
|
|
|
* Generate a HTML link to this attachment.
|
|
|
|
*/
|
2020-07-28 11:45:28 +02:00
|
|
|
public function htmlLink(): string
|
|
|
|
{
|
|
|
|
return '<a target="_blank" href="'.e($this->getUrl()).'">'.e($this->name).'</a>';
|
|
|
|
}
|
|
|
|
|
2020-09-13 19:29:48 +02:00
|
|
|
/**
|
|
|
|
* Generate a markdown link to this attachment.
|
|
|
|
*/
|
2020-07-28 11:45:28 +02:00
|
|
|
public function markdownLink(): string
|
|
|
|
{
|
2020-09-13 19:29:48 +02:00
|
|
|
return '['. $this->name .']('. $this->getUrl() .')';
|
2020-07-28 11:45:28 +02:00
|
|
|
}
|
2016-10-09 19:58:22 +02:00
|
|
|
}
|