2018-01-11 12:59:53 +00:00
|
|
|
<?php
|
|
|
|
|
2019-11-08 12:51:47 +00:00
|
|
|
namespace App\Models\Abstracted;
|
2018-01-11 12:59:53 +00:00
|
|
|
|
2019-12-15 12:34:42 +00:00
|
|
|
use Carbon\Carbon;
|
2018-01-11 12:59:53 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2020-01-04 13:28:00 +00:00
|
|
|
use Illuminate\Support\Arr;
|
2024-08-31 12:23:07 +00:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2018-01-11 12:59:53 +00:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2024-08-31 12:23:07 +00:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2018-01-11 12:59:53 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
use App\Casts\PostgresBytea;
|
|
|
|
use App\Models\{Make,Person,Software,Tag};
|
2019-11-08 12:51:47 +00:00
|
|
|
|
2018-01-11 12:59:53 +00:00
|
|
|
abstract class Catalog extends Model
|
|
|
|
{
|
2019-12-14 11:29:54 +00:00
|
|
|
protected static $includeSubSecTime = FALSE;
|
2019-11-23 01:51:30 +00:00
|
|
|
|
2020-01-04 22:37:50 +00:00
|
|
|
protected $casts = [
|
2024-08-31 12:23:07 +00:00
|
|
|
'created_manual' => 'datetime',
|
2020-01-04 22:37:50 +00:00
|
|
|
'subsectime' => 'int',
|
2024-08-31 12:23:07 +00:00
|
|
|
'thumbnail' => PostgresBytea::class,
|
2020-01-04 22:37:50 +00:00
|
|
|
];
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
protected const fs = 'nas';
|
|
|
|
|
|
|
|
private ?string $move_reason;
|
|
|
|
|
|
|
|
protected array $init = [];
|
|
|
|
|
|
|
|
/* STATIC */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the prefix for the file path - dependant on the object
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function dir_prefix(): string
|
|
|
|
{
|
|
|
|
return config(static::config.'.dir').'/';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RELATIONS */
|
|
|
|
|
2020-01-01 22:42:59 +00:00
|
|
|
/**
|
|
|
|
* People in Multimedia Object
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
public function people()
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2019-11-08 12:51:47 +00:00
|
|
|
return $this->belongsToMany(Person::class);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2020-01-01 22:42:59 +00:00
|
|
|
/**
|
|
|
|
* Software used to create Multimedia Object
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2019-12-26 04:56:31 +00:00
|
|
|
public function software()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Software::class);
|
|
|
|
}
|
|
|
|
|
2020-01-01 22:42:59 +00:00
|
|
|
/**
|
|
|
|
* Tags added to Multimedia Object
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
public function tags()
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2019-11-08 12:51:47 +00:00
|
|
|
return $this->belongsToMany(Tag::class);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
/* SCOPES */
|
|
|
|
|
2020-01-01 22:42:59 +00:00
|
|
|
/**
|
2020-01-04 13:28:00 +00:00
|
|
|
* Find records marked as duplicate
|
2020-01-01 22:42:59 +00:00
|
|
|
*
|
|
|
|
* @param $query
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function scopeDuplicates($query)
|
|
|
|
{
|
|
|
|
return $query->notRemove()
|
2020-01-04 13:28:00 +00:00
|
|
|
->where('duplicate',TRUE)
|
2024-08-31 12:23:07 +00:00
|
|
|
->where(fn($q)=>$q->where('ignore_duplicate','<>',TRUE)->orWhereNull('ignore_duplicate'));
|
2020-01-04 13:28:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search Database for duplicates of this object
|
|
|
|
*
|
|
|
|
* @param $query
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function scopeMyDuplicates($query) {
|
2019-12-14 11:29:54 +00:00
|
|
|
if (! $this->exists)
|
|
|
|
return $query;
|
|
|
|
|
|
|
|
// Exclude this record
|
|
|
|
$query->where('id','<>',$this->attributes['id']);
|
|
|
|
|
2020-01-04 13:28:00 +00:00
|
|
|
// Skip ignore dups
|
2024-08-31 12:23:07 +00:00
|
|
|
$query->where(fn($q)=>$q->whereNull('ignore_duplicate')->orWhere('ignore_duplicate',FALSE));
|
2020-01-04 13:28:00 +00:00
|
|
|
|
2019-12-14 11:29:54 +00:00
|
|
|
// Exclude those marked as remove
|
2024-08-31 12:23:07 +00:00
|
|
|
$query->where(fn($q)=>$q->where('remove','<>',TRUE));
|
2019-12-14 11:29:54 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
$query->where(function($q) {
|
|
|
|
$q->when($this->attributes['signature'],fn($q)=>$q->where('signature','=',$this->attributes['signature']))
|
2019-12-14 11:29:54 +00:00
|
|
|
->orWhere('file_signature','=',$this->attributes['file_signature'])
|
|
|
|
|
|
|
|
// Where the signature is the same
|
|
|
|
->orWhere(function($q) {
|
|
|
|
// Or they have the same time taken with the same camera
|
2020-01-04 13:28:00 +00:00
|
|
|
if ($this->attributes['created'] AND $this->software_id) {
|
2024-08-31 12:23:07 +00:00
|
|
|
$q->where(fn($q)=>$q->where('created','=',$this->attributes['created'])->orWhere('created_manual','=',$this->attributes['created']));
|
2020-01-05 07:02:32 +00:00
|
|
|
|
|
|
|
if (static::$includeSubSecTime)
|
|
|
|
$q->where('subsectime','=',Arr::get($this->attributes,'subsectime'));
|
|
|
|
|
|
|
|
$q->where('software_id','=',$this->attributes['software_id']);
|
|
|
|
|
|
|
|
} elseif ($this->attributes['created_manual'] AND $this->software_id) {
|
2024-08-31 12:23:07 +00:00
|
|
|
$q->where(fn($q)=>$q->where('created','=',$this->attributes['created_manual'])->orWhere('created_manual','=',$this->attributes['created_manual']));
|
2019-12-14 11:29:54 +00:00
|
|
|
|
|
|
|
if (static::$includeSubSecTime)
|
2020-01-04 13:28:00 +00:00
|
|
|
$q->where('subsectime','=',Arr::get($this->attributes,'subsectime'));
|
2019-12-14 11:29:54 +00:00
|
|
|
|
|
|
|
$q->where('software_id','=',$this->attributes['software_id']);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2024-08-31 12:23:07 +00:00
|
|
|
|
|
|
|
return $query;
|
2019-12-14 11:29:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 12:59:53 +00:00
|
|
|
/**
|
|
|
|
* Multimedia NOT duplicate.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
|
|
*/
|
|
|
|
public function scopeNotDuplicate($query)
|
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return $query->where(
|
|
|
|
fn($q)=>$q->where('duplicate','<>',TRUE)
|
2020-01-06 09:01:04 +00:00
|
|
|
->orWhere('duplicate','=',NULL)
|
2024-08-31 12:23:07 +00:00
|
|
|
->orWhere(fn($q)=>$q->where('duplicate','=',TRUE)->where('ignore_duplicate','=',TRUE))
|
|
|
|
);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Multimedia NOT pending removal.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
|
|
*/
|
|
|
|
public function scopeNotRemove($query)
|
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return $query->where(fn($q)=>$q->where('remove','<>',TRUE)->orWhere('remove','=',NULL));
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Multimedia NOT scanned.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
|
|
*/
|
|
|
|
public function scopeNotScanned($query)
|
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return $query->where(fn($q)=>$q->where('scanned','<>',TRUE)->orWhere('scanned','=',NULL));
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
/* ABSTRACTS */
|
|
|
|
|
|
|
|
abstract public function getObjectOriginal(string $property): mixed;
|
|
|
|
|
|
|
|
/* ATTRIBUTES */
|
2018-01-11 12:59:53 +00:00
|
|
|
|
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Return the time the media was created on the device
|
|
|
|
*
|
|
|
|
* This will be (in priority order)
|
|
|
|
* + the value of created_manual (Carbon)
|
|
|
|
* + the value of created
|
|
|
|
*
|
|
|
|
* @param string|null $date
|
|
|
|
* @return Carbon|null
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function getCreatedAttribute(string $date=NULL): ?Carbon
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
$result = $this->created_manual ?: ($date ? Carbon::create($date) : NULL);
|
|
|
|
|
|
|
|
if ($result && static::$includeSubSecTime)
|
|
|
|
$result->microseconds($this->subsectime*1000);
|
|
|
|
|
|
|
|
return $result ?: $this->getObjectOriginal('creation_date');
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2020-01-04 13:28:00 +00:00
|
|
|
/**
|
|
|
|
* What device was the multimedia created on
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function getDeviceAttribute(): string
|
2019-12-14 11:29:54 +00:00
|
|
|
{
|
|
|
|
$result = '';
|
|
|
|
|
2019-12-15 10:08:33 +00:00
|
|
|
if ($this->software_id) {
|
|
|
|
if ($this->software->model_id) {
|
|
|
|
if ($this->software->model->make_id) {
|
|
|
|
$result .= $this->software->model->make->name;
|
|
|
|
}
|
2019-12-14 11:29:54 +00:00
|
|
|
|
2019-12-15 10:08:33 +00:00
|
|
|
$result .= ($result ? ' ' : '').$this->software->model->name;
|
|
|
|
}
|
2019-12-14 11:29:54 +00:00
|
|
|
|
|
|
|
$result .= ($result ? ' ' : '').$this->software->name;
|
2019-12-15 10:08:33 +00:00
|
|
|
}
|
2019-12-14 11:29:54 +00:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
/**
|
|
|
|
* Return item dimensions
|
|
|
|
*/
|
|
|
|
public function getDimensionsAttribute(): string
|
|
|
|
{
|
|
|
|
return $this->width.'x'.$this->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the file size
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
*/
|
|
|
|
public function getFileSizeAttribute(): ?int
|
|
|
|
{
|
|
|
|
return (! $this->isReadable()) ? NULL : filesize($this->file_name(FALSE));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getGPSAttribute(): ?string
|
|
|
|
{
|
|
|
|
return ($this->gps_lat && $this->gps_lon)
|
|
|
|
? sprintf('%s/%s',$this->gps_lat,$this->gps_lon)
|
|
|
|
: NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* METHODS */
|
|
|
|
|
2020-01-02 21:04:15 +00:00
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Return the filename.
|
|
|
|
* If short is TRUE, it is the filename that it should be called (and can be compared to $this->filename)
|
|
|
|
* If short is FALSE, it is the true path of the actual file
|
2020-01-02 21:04:15 +00:00
|
|
|
*
|
2024-08-31 12:23:07 +00:00
|
|
|
* @param bool $short
|
2020-01-02 21:04:15 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function file_name(bool $short=TRUE): string
|
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
if ($short || preg_match('#^/#',$this->filename)) {
|
|
|
|
// If the date created is not set, the file name will be based on the ID of the file.
|
|
|
|
$file = sprintf('%s.%s',
|
|
|
|
(is_null($this->created)
|
|
|
|
? sprintf('UNKNOWN/%07s',$this->file_path_id())
|
|
|
|
: $this->created->format('Y/m/d-His').
|
|
|
|
($this->subsectime ? sprintf('_%03d',$this->subsectime) : '' ).
|
|
|
|
sprintf('-%05s',$this->id)),
|
|
|
|
$this->type()
|
|
|
|
);
|
2020-01-02 21:04:15 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
return $file;
|
2020-01-02 21:04:15 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
} else
|
|
|
|
return Storage::disk(self::fs)
|
|
|
|
->path(config(static::config.'.dir').DIRECTORY_SEPARATOR.$this->filename);
|
2020-07-16 02:12:26 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 12:59:53 +00:00
|
|
|
/**
|
|
|
|
* Determine the new name for the image
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use $this->file_name(FALSE) to determine the name, and file_name(TRUE) to determine the new name
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
|
|
|
public function file_path($short=FALSE,$new=FALSE)
|
|
|
|
{
|
|
|
|
$file = $this->filename;
|
|
|
|
|
|
|
|
if ($new)
|
2020-01-05 10:55:26 +00:00
|
|
|
$file = $this->file_name(TRUE);
|
2018-01-11 12:59:53 +00:00
|
|
|
|
2020-01-04 13:28:00 +00:00
|
|
|
return (($short OR preg_match('/^\//',$file)) ? '' : config($this->type.'.dir').DIRECTORY_SEPARATOR).$file;
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate a file path ID based on the id of the file
|
2024-08-31 12:23:07 +00:00
|
|
|
*
|
|
|
|
* We use this when we cannot determine the create time of the image
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
public function file_path_id($sep=3,$depth=9): string
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
|
|
|
return trim(chunk_split(sprintf("%0{$depth}s",$this->id),$sep,'/'),'/');
|
|
|
|
}
|
|
|
|
|
2019-11-23 01:51:30 +00:00
|
|
|
/**
|
|
|
|
* Return HTML Checkbox for duplicate
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2019-11-23 01:51:30 +00:00
|
|
|
*/
|
|
|
|
public function getDuplicateCheckboxAttribute()
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2019-11-23 01:51:30 +00:00
|
|
|
return $this->HTMLCheckbox('duplicate',$this->id,$this->duplicate);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2019-11-08 10:43:36 +00:00
|
|
|
/**
|
2019-11-23 01:51:30 +00:00
|
|
|
* Return HTML Checkbox for flagged
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2019-11-08 10:43:36 +00:00
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
public function getFlagCheckboxAttribute()
|
2019-11-08 10:43:36 +00:00
|
|
|
{
|
2019-11-23 01:51:30 +00:00
|
|
|
return $this->HTMLCheckbox('flag',$this->id,$this->flag);
|
2019-11-08 10:43:36 +00:00
|
|
|
}
|
|
|
|
|
2020-01-04 13:28:00 +00:00
|
|
|
/**
|
|
|
|
* Return HTML Checkbox for ignore
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2020-01-04 13:28:00 +00:00
|
|
|
*/
|
|
|
|
public function getIgnoreCheckboxAttribute()
|
|
|
|
{
|
|
|
|
return $this->HTMLCheckbox('ignore_duplicate',$this->id,$this->ignore_duplicate);
|
|
|
|
}
|
|
|
|
|
2019-11-08 10:43:36 +00:00
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2019-11-08 10:43:36 +00:00
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
public function getDuplicateTextAttribute()
|
2019-11-08 10:43:36 +00:00
|
|
|
{
|
2019-11-23 01:51:30 +00:00
|
|
|
return $this->TextTrueFalse($this->duplicate);
|
2019-11-08 10:43:36 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 12:59:53 +00:00
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
public function getFlagTextAttribute()
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2019-11-23 01:51:30 +00:00
|
|
|
return $this->TextTrueFalse($this->flag);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return HTML Checkbox for remove
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
|
|
|
public function getRemoveCheckboxAttribute()
|
|
|
|
{
|
|
|
|
return $this->HTMLCheckbox('remove',$this->id,$this->remove);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-11-23 01:51:30 +00:00
|
|
|
* Return an HTML checkbox
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
protected function HTMLCheckbox($name,$id,$value)
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2019-11-23 01:51:30 +00:00
|
|
|
return sprintf('<input type="checkbox" name="%s[%s]" value="1"%s>',$name,$id,$value ? ' checked="checked"' : '');
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-11-23 01:51:30 +00:00
|
|
|
* Get ID Info link
|
2024-08-31 12:23:07 +00:00
|
|
|
* @deprecated use a component
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2019-11-23 01:51:30 +00:00
|
|
|
protected function HTMLLinkAttribute($id,$url)
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2020-01-04 13:28:00 +00:00
|
|
|
return sprintf('<a href="%s" target="%s">%s</a>',url($url,$id),$id,$id);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 01:51:30 +00:00
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Set values from the media object
|
2019-11-23 01:51:30 +00:00
|
|
|
*
|
2024-08-31 12:23:07 +00:00
|
|
|
* @return void
|
|
|
|
* @throws \Exception
|
2019-11-23 01:51:30 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function init(): void
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
foreach ($this->init as $item) {
|
|
|
|
Log::debug(sprintf('Init item [%s]',$item));
|
2019-11-23 01:51:30 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
switch ($item) {
|
|
|
|
case 'creation_date':
|
|
|
|
$this->created = $this->getObjectOriginal('creation_date');
|
|
|
|
break;
|
2019-11-23 01:51:30 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
case 'gps':
|
|
|
|
$this->gps_lat = $this->getObjectOriginal('gps_lat');
|
|
|
|
$this->gps_lon = $this->getObjectOriginal('gps_lon');
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'heightwidth':
|
|
|
|
$this->height = $this->getObjectOriginal('height');
|
|
|
|
$this->width = $this->getObjectOriginal('width');
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'signature':
|
|
|
|
$this->signature = $this->getObjectOriginal('signature');
|
|
|
|
$this->file_signature = $this->getObjectOriginal('file_signature');
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'software':
|
|
|
|
$ma = NULL;
|
|
|
|
|
|
|
|
if ($x=$this->getObjectOriginal('make'))
|
|
|
|
$ma = Make::firstOrCreate([
|
|
|
|
'name'=>$x,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$mo = \App\Models\Model::firstOrCreate([
|
|
|
|
'name'=>$this->getObjectOriginal('model') ?: NULL,
|
|
|
|
'make_id'=>$ma?->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$so = Software::firstOrCreate([
|
|
|
|
'name'=>$this->getObjectOriginal('software') ?: NULL,
|
|
|
|
'model_id'=>$mo->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->software_id = $so->id;
|
|
|
|
|
|
|
|
case 'subsectime':
|
|
|
|
$this->subsectime = $this->getObjectOriginal($item);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new \Exception('Unknown init item: '.$item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->custom_init();
|
|
|
|
|
|
|
|
Log::debug('Init result',['dirty'=>$this->getDirty()]);
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Does the file require moving
|
2018-01-11 12:59:53 +00:00
|
|
|
*
|
2024-08-31 12:23:07 +00:00
|
|
|
* @return bool
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function isMoveable(): bool
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
// No change to the name
|
|
|
|
$this->move_reason = 'Filenames match already';
|
|
|
|
if ($this->filename === $this->file_name())
|
2018-01-11 12:59:53 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
// If there is already a file in the target.
|
|
|
|
// @todo If the target file is to be deleted, we could move this file
|
2024-08-31 12:23:07 +00:00
|
|
|
$this->move_reason = 'Target file exists';
|
|
|
|
if (Storage::disk(self::fs)->exists($this->file_name()))
|
|
|
|
return FALSE;
|
2018-01-11 12:59:53 +00:00
|
|
|
|
|
|
|
// Test if the source is readable
|
2024-08-31 12:23:07 +00:00
|
|
|
$this->move_reason = 'Source is not readable';
|
|
|
|
if (! $this->isReadable())
|
|
|
|
return FALSE;
|
2018-01-11 12:59:53 +00:00
|
|
|
|
|
|
|
// Test if the dir is writable (so we can remove the file)
|
2024-08-31 12:23:07 +00:00
|
|
|
$this->move_reason = 'Source parent dir not writable';
|
|
|
|
if (! $this->isParentWritable(dirname($this->file_name(FALSE))))
|
|
|
|
return FALSE;
|
2018-01-11 12:59:53 +00:00
|
|
|
|
|
|
|
// Test if the target dir is writable
|
|
|
|
// @todo The target dir may not exist yet, so we should check that a parent exists and is writable.
|
2024-08-31 12:23:07 +00:00
|
|
|
$this->move_reason = 'Target parent dir doesnt is not writable';
|
|
|
|
if (! $this->isParentWritable(dirname($this->file_name(FALSE))))
|
|
|
|
return FALSE;
|
2018-01-11 12:59:53 +00:00
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
// Otherwise we can move it
|
|
|
|
$this->move_reason = NULL;
|
2018-01-11 12:59:53 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
public function isMoveableReason(): ?string
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return isset($this->move_reason) ? $this->move_reason : NULL;
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Determine if the parent dir is writable
|
|
|
|
*
|
|
|
|
* @param string $dir
|
|
|
|
* @return bool
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function isParentWritable(string $dir): bool
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
$path = Storage::disk(self::fs)->path($dir);
|
|
|
|
|
|
|
|
if (Storage::disk(self::fs)->exists($dir) && is_dir($path) && is_writable($path))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
elseif ($path === dirname($path))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
else
|
|
|
|
return ($this->isParentWritable(dirname($dir)));
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Return if this source file is readable.
|
|
|
|
*
|
|
|
|
* @return bool
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function isReadable(): bool
|
2020-01-04 13:28:00 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return is_readable($this->file_name(FALSE));
|
2020-01-04 13:28:00 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
/**
|
|
|
|
* Determine if a file is moveable
|
|
|
|
*
|
|
|
|
* useID boolean Determine if the path is based on the the ID or date
|
|
|
|
* @todo Change to boolean and rename isMoveable() Log any FALSE reason.
|
|
|
|
*/
|
|
|
|
public function moveable()
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
Log::alert(__METHOD__.' deprecated');
|
|
|
|
return $this->isMoveable();
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
/**
|
|
|
|
* Get the id of the next record
|
|
|
|
*/
|
|
|
|
public function next(): ?self
|
2020-01-04 13:28:00 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return static::where('id','>',$this->id)
|
|
|
|
->orderby('id','ASC')
|
|
|
|
->first();
|
2020-01-04 13:28:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 12:59:53 +00:00
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Return my class shortname
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function objectType(): string
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return (new \ReflectionClass($this))->getShortName();
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2019-11-23 01:51:30 +00:00
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Get the id of the previous record
|
2019-11-23 01:51:30 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function previous(): ?self
|
2019-11-23 01:51:30 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return static::where('id','<',$this->id)
|
|
|
|
->orderby('id','DESC')
|
|
|
|
->first();
|
2019-11-23 01:51:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-08-31 12:23:07 +00:00
|
|
|
* Display the media signature
|
2019-11-23 01:51:30 +00:00
|
|
|
*/
|
2024-08-31 12:23:07 +00:00
|
|
|
public function signature($short=FALSE)
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2024-08-31 12:23:07 +00:00
|
|
|
return ($short && $this->signature)
|
2024-08-31 12:56:52 +00:00
|
|
|
? stringtrim($this->signature)
|
2024-08-31 12:23:07 +00:00
|
|
|
: $this->signature;
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the image should be moved
|
|
|
|
*/
|
2019-12-14 11:29:54 +00:00
|
|
|
public function shouldMove(): bool
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
2020-01-04 13:28:00 +00:00
|
|
|
return $this->filename !== $this->file_name();
|
2018-01-11 12:59:53 +00:00
|
|
|
}
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
/** @deprecated is this really needed? */
|
|
|
|
private function TextTrueFalse($value): string
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
|
|
|
return $value ? 'TRUE' : 'FALSE';
|
|
|
|
}
|
|
|
|
|
2019-11-23 01:51:30 +00:00
|
|
|
/**
|
|
|
|
* @todo Check if this is redundant
|
|
|
|
*
|
|
|
|
* @param bool $includeme
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2020-01-04 13:28:00 +00:00
|
|
|
private function list_duplicate($includeme=FALSE)
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
|
|
|
return $this->list_duplicates($includeme)->pluck('id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find duplicate images based on some attributes of the current image
|
2019-12-14 11:29:54 +00:00
|
|
|
* @deprecate Use static::duplicates()
|
2018-01-11 12:59:53 +00:00
|
|
|
*/
|
2020-01-04 13:28:00 +00:00
|
|
|
private function list_duplicates($includeme=FALSE)
|
2018-01-11 12:59:53 +00:00
|
|
|
{
|
|
|
|
$o = static::select();
|
|
|
|
|
|
|
|
if ($this->id AND ! $includeme)
|
|
|
|
$o->where('id','!=',$this->id);
|
|
|
|
|
|
|
|
// Ignore photo's pending removal.
|
|
|
|
if (! $includeme)
|
|
|
|
$o->where(function($query)
|
|
|
|
{
|
2019-11-23 01:51:30 +00:00
|
|
|
$query->where('remove','<>',TRUE)
|
2018-01-11 12:59:53 +00:00
|
|
|
->orWhere('remove','=',NULL);
|
|
|
|
});
|
|
|
|
|
2024-08-31 12:23:07 +00:00
|
|
|
// Where the signalist_duplicatesture is the same
|
2018-01-11 12:59:53 +00:00
|
|
|
$o->where(function($query)
|
|
|
|
{
|
|
|
|
$query->where('signature','=',$this->signature);
|
|
|
|
|
|
|
|
// Or they have the same time taken with the same camera
|
|
|
|
if ($this->date_created AND ($this->model OR $this->make))
|
|
|
|
{
|
|
|
|
$query->orWhere(function($query)
|
|
|
|
{
|
|
|
|
$query->where('date_created','=',$this->date_created ? $this->date_created : NULL);
|
|
|
|
if (Schema::hasColumn($this->getTable(),'subsectime'))
|
|
|
|
$query->where('subsectime','=',$this->subsectime ? $this->subsectime : NULL);
|
|
|
|
|
|
|
|
if (! is_null($this->model))
|
|
|
|
$query->where('model','=',$this->model);
|
|
|
|
|
|
|
|
if (! is_null($this->make))
|
|
|
|
$query->where('make','=',$this->make);
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return $o->get();
|
|
|
|
}
|
2019-11-08 12:51:47 +00:00
|
|
|
}
|