2018-04-16 01:26:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
2018-06-14 00:52:42 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2021-04-01 04:08:03 +00:00
|
|
|
use App\Util\Media\License;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Storage;
|
2022-03-31 07:04:15 +00:00
|
|
|
use Illuminate\Support\Str;
|
2018-04-16 01:26:48 +00:00
|
|
|
|
|
|
|
class Media extends Model
|
|
|
|
{
|
2018-06-14 00:52:42 +00:00
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be mutated to dates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dates = ['deleted_at'];
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2021-09-04 03:25:19 +00:00
|
|
|
protected $casts = [
|
|
|
|
'srcset' => 'array'
|
|
|
|
];
|
|
|
|
|
2019-01-21 19:18:08 +00:00
|
|
|
public function status()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Status::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function profile()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Profile::class);
|
|
|
|
}
|
|
|
|
|
2018-05-20 02:59:59 +00:00
|
|
|
public function url()
|
|
|
|
{
|
2021-01-18 05:45:40 +00:00
|
|
|
if($this->cdn_url) {
|
|
|
|
return $this->cdn_url;
|
|
|
|
}
|
|
|
|
|
2021-01-24 20:30:31 +00:00
|
|
|
if($this->remote_media && $this->remote_url) {
|
2021-01-18 05:45:40 +00:00
|
|
|
return $this->remote_url;
|
2018-11-04 03:19:22 +00:00
|
|
|
}
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2021-01-18 05:45:40 +00:00
|
|
|
return url(Storage::url($this->media_path));
|
2018-05-20 02:59:59 +00:00
|
|
|
}
|
2018-07-12 16:39:55 +00:00
|
|
|
|
|
|
|
public function thumbnailUrl()
|
|
|
|
{
|
2021-01-18 05:45:40 +00:00
|
|
|
if($this->thumbnail_url) {
|
|
|
|
return $this->thumbnail_url;
|
|
|
|
}
|
|
|
|
|
2021-01-24 20:30:31 +00:00
|
|
|
if(!$this->remote_media && $this->thumbnail_path) {
|
|
|
|
return url(Storage::url($this->thumbnail_path));
|
2021-01-18 05:45:40 +00:00
|
|
|
}
|
|
|
|
|
2022-10-03 10:23:18 +00:00
|
|
|
if($this->remote_media && !$this->thumbnail_path && $this->cdn_url) {
|
|
|
|
return $this->cdn_url;
|
|
|
|
}
|
|
|
|
|
2022-03-31 05:43:43 +00:00
|
|
|
if($this->media_path && $this->mime && in_array($this->mime, ['image/jpeg', 'image/png'])) {
|
2022-03-31 05:50:32 +00:00
|
|
|
return $this->remote_media || Str::startsWith($this->media_path, 'http') ?
|
|
|
|
$this->media_path :
|
|
|
|
url(Storage::url($this->media_path));
|
2022-03-31 05:43:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 05:45:40 +00:00
|
|
|
return url(Storage::url('public/no-preview.png'));
|
2018-07-12 16:39:55 +00:00
|
|
|
}
|
2018-10-10 01:24:42 +00:00
|
|
|
|
2019-01-21 19:18:08 +00:00
|
|
|
public function thumb()
|
|
|
|
{
|
|
|
|
return $this->thumbnailUrl();
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:24:42 +00:00
|
|
|
public function mimeType()
|
|
|
|
{
|
|
|
|
return explode('/', $this->mime)[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function activityVerb()
|
|
|
|
{
|
|
|
|
$verb = 'Image';
|
|
|
|
switch ($this->mimeType()) {
|
2018-12-12 21:24:52 +00:00
|
|
|
case 'audio':
|
|
|
|
$verb = 'Audio';
|
|
|
|
break;
|
|
|
|
|
2018-10-10 01:24:42 +00:00
|
|
|
case 'image':
|
2018-12-12 21:24:52 +00:00
|
|
|
$verb = 'Image';
|
2018-10-10 01:24:42 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'video':
|
|
|
|
$verb = 'Video';
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
$verb = 'Document';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $verb;
|
|
|
|
}
|
2018-10-16 18:31:29 +00:00
|
|
|
|
|
|
|
public function getMetadata()
|
|
|
|
{
|
|
|
|
return json_decode($this->metadata, true, 3);
|
|
|
|
}
|
2018-11-04 03:19:22 +00:00
|
|
|
|
|
|
|
public function getModel()
|
|
|
|
{
|
|
|
|
if(empty($this->metadata)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$meta = $this->getMetadata();
|
|
|
|
if($meta && isset($meta['Model'])) {
|
|
|
|
return $meta['Model'];
|
|
|
|
}
|
|
|
|
}
|
2021-04-01 04:08:03 +00:00
|
|
|
|
|
|
|
public function getLicense()
|
|
|
|
{
|
|
|
|
$license = $this->license;
|
|
|
|
|
|
|
|
if(!$license || strlen($license) > 2 || $license == 1) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!in_array($license, License::keys())) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$res = License::get()[$license];
|
|
|
|
|
|
|
|
return [
|
|
|
|
'id' => $res['id'],
|
|
|
|
'title' => $res['title'],
|
|
|
|
'url' => $res['url']
|
|
|
|
];
|
|
|
|
}
|
2018-04-16 01:26:48 +00:00
|
|
|
}
|