Squashed commit of the following: commit 8ff29a8ab51ee5057ef786614ab95b005bf8918c Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Feb 1 18:42:05 2019 +0000 Replace deprecated global helpers with their facade equivalents
108 lines
2.6 KiB
PHP
108 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Media extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'media_endpoint';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['token', 'path', 'type', 'image_widths'];
|
|
|
|
/**
|
|
* Get the note that owns this media.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function note(): BelongsTo
|
|
{
|
|
return $this->belongsTo('App\Models\Note');
|
|
}
|
|
|
|
/**
|
|
* Get the URL for an S3 media file.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getUrlAttribute(): string
|
|
{
|
|
if (Str::startsWith($this->path, 'https://')) {
|
|
return $this->path;
|
|
}
|
|
|
|
return config('filesystems.disks.s3.url') . '/' . $this->path;
|
|
}
|
|
|
|
/**
|
|
* Get the URL for the medium size of an S3 image file.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMediumurlAttribute(): string
|
|
{
|
|
$basename = $this->getBasename($this->path);
|
|
$extension = $this->getExtension($this->path);
|
|
|
|
return config('filesystems.disks.s3.url') . '/' . $basename . '-medium.' . $extension;
|
|
}
|
|
|
|
/**
|
|
* Get the URL for the small size of an S3 image file.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSmallurlAttribute(): string
|
|
{
|
|
$basename = $this->getBasename($this->path);
|
|
$extension = $this->getExtension($this->path);
|
|
|
|
return config('filesystems.disks.s3.url') . '/' . $basename . '-small.' . $extension;
|
|
}
|
|
|
|
/**
|
|
* Give the real part of a filename, i.e. strip the file extension.
|
|
*
|
|
* @param string $path
|
|
* @return string
|
|
*/
|
|
public function getBasename(string $path): string
|
|
{
|
|
// the following achieves this data flow
|
|
// foo.bar.png => ['foo', 'bar', 'png'] => ['foo', 'bar'] => foo.bar
|
|
$filenameParts = explode('.', $path);
|
|
array_pop($filenameParts);
|
|
$basename = ltrim(array_reduce($filenameParts, function ($carry, $item) {
|
|
return $carry . '.' . $item;
|
|
}, ''), '.');
|
|
|
|
return $basename;
|
|
}
|
|
|
|
/**
|
|
* Get the extension from a given filename.
|
|
*
|
|
* @param string $path
|
|
* @return string
|
|
*/
|
|
public function getExtension(string $path): string
|
|
{
|
|
$parts = explode('.', $path);
|
|
|
|
return array_pop($parts);
|
|
}
|
|
}
|