mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
275 lines
8.1 KiB
PHP
275 lines
8.1 KiB
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Str;
|
|
use Laravel\Scout\Searchable;
|
|
use RecursiveArrayIterator;
|
|
use RecursiveIteratorIterator;
|
|
use TeamTNT\TNTSearch\Indexer\TNTIndexer;
|
|
use \Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Kyslik\ColumnSortable\Sortable;
|
|
|
|
/**
|
|
* App\FileManagerFolder
|
|
*
|
|
* @property int $id
|
|
* @property int|null $user_id
|
|
* @property int $unique_id
|
|
* @property int $parent_id
|
|
* @property string|null $name
|
|
* @property string|null $type
|
|
* @property string $user_scope
|
|
* @property string $deleted_at
|
|
* @property string $created_at
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FileManagerFolder[] $children
|
|
* @property-read int|null $children_count
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FileManagerFile[] $files
|
|
* @property-read int|null $files_count
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FileManagerFolder[] $folders
|
|
* @property-read int|null $folders_count
|
|
* @property-read int $items
|
|
* @property-read int $trashed_items
|
|
* @property-read \App\FileManagerFolder $parent
|
|
* @property-read \App\Share|null $shared
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FileManagerFolder[] $trashed_children
|
|
* @property-read int|null $trashed_children_count
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FileManagerFile[] $trashed_files
|
|
* @property-read int|null $trashed_files_count
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\App\FileManagerFolder[] $trashed_folders
|
|
* @property-read int|null $trashed_folders_count
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder newQuery()
|
|
* @method static \Illuminate\Database\Query\Builder|\App\FileManagerFolder onlyTrashed()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereDeletedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereParentId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereType($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereUniqueId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereUserId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\FileManagerFolder whereUserScope($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\App\FileManagerFolder withTrashed()
|
|
* @method static \Illuminate\Database\Query\Builder|\App\FileManagerFolder withoutTrashed()
|
|
* @mixin \Eloquent
|
|
* @method static \Illuminate\Database\Eloquent\Builder|FileManagerFolder sortable($defaultParameters = null)
|
|
*/
|
|
class FileManagerFolder extends Model
|
|
{
|
|
use Searchable, SoftDeletes , Sortable;
|
|
|
|
protected $guarded = [
|
|
'id'
|
|
];
|
|
|
|
protected $appends = [
|
|
'items', 'trashed_items'
|
|
];
|
|
|
|
/**
|
|
* Sortable columns
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $sortable = [
|
|
'name',
|
|
'created_at',
|
|
];
|
|
|
|
/**
|
|
* Index folder
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toSearchableArray()
|
|
{
|
|
$array = $this->toArray();
|
|
$name = Str::slug($array['name'], ' ');
|
|
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $name,
|
|
'nameNgrams' => utf8_encode((new TNTIndexer)->buildTrigrams(implode(', ', [$name]))),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Counts how many folder have items
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getItemsAttribute()
|
|
{
|
|
$folders = $this->folders()->count();
|
|
$files = $this->files()->count();
|
|
|
|
return $folders + $files;
|
|
}
|
|
|
|
/**
|
|
* Counts how many folder have items
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getTrashedItemsAttribute()
|
|
{
|
|
$folders = $this->trashed_folders()->count();
|
|
$files = $this->trashed_files()->count();
|
|
|
|
return $folders + $files;
|
|
}
|
|
|
|
/**
|
|
* Format created at date reformat
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getCreatedAtAttribute()
|
|
{
|
|
return format_date(set_time_by_user_timezone($this->attributes['created_at']), __('vuefilemanager.time'));
|
|
}
|
|
|
|
/**
|
|
* Format created at date reformat
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDeletedAtAttribute()
|
|
{
|
|
if (! $this->attributes['deleted_at']) return null;
|
|
|
|
return format_date(set_time_by_user_timezone($this->attributes['deleted_at']), __('vuefilemanager.time'));
|
|
}
|
|
|
|
/**
|
|
* Get parent
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function parent()
|
|
{
|
|
return $this->belongsTo('App\FileManagerFolder', 'parent_id', 'unique_id');
|
|
}
|
|
|
|
public function folderIds()
|
|
{
|
|
return $this->children()->with('folderIds')->select(['unique_id', 'parent_id']);
|
|
}
|
|
|
|
/**
|
|
* Get all files
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function files()
|
|
{
|
|
return $this->hasMany('App\FileManagerFile', 'folder_id', 'unique_id');
|
|
}
|
|
|
|
/**
|
|
* Get all trashed files
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function trashed_files()
|
|
{
|
|
|
|
return $this->hasMany('App\FileManagerFile', 'folder_id', 'unique_id')->withTrashed();
|
|
}
|
|
|
|
/**
|
|
* Get all folders
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function folders()
|
|
{
|
|
return $this->children()->with('folders');
|
|
}
|
|
|
|
/**
|
|
* Get all trashed folders
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function trashed_folders()
|
|
{
|
|
return $this->children()->with('trashed_folders')->withTrashed()->select(['parent_id', 'unique_id', 'name']);
|
|
}
|
|
|
|
/**
|
|
* Get childrens
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function children()
|
|
{
|
|
return $this->hasMany('App\FileManagerFolder', 'parent_id', 'unique_id');
|
|
}
|
|
|
|
/**
|
|
* Get trashed childrens
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function trashed_children()
|
|
{
|
|
return $this->hasMany('App\FileManagerFolder', 'parent_id', 'unique_id')->withTrashed();
|
|
}
|
|
|
|
/**
|
|
* Get sharing attributes
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasOne
|
|
*/
|
|
public function shared()
|
|
{
|
|
return $this->hasOne('App\Share', 'item_id', 'unique_id');
|
|
}
|
|
|
|
// Delete all folder childrens
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
static::deleting(function ($item) {
|
|
|
|
if ( $item->isForceDeleting() ) {
|
|
|
|
$item->trashed_children()->each(function($folder) {
|
|
$folder->forceDelete();
|
|
});
|
|
|
|
} else {
|
|
|
|
$item->children()->each(function($folder) {
|
|
$folder->delete();
|
|
});
|
|
|
|
$item->files()->each(function($file) {
|
|
$file->delete();
|
|
});
|
|
}
|
|
});
|
|
|
|
static::restoring(function ($item) {
|
|
|
|
// Restore children folders
|
|
$item->trashed_children()->each(function($folder) {
|
|
$folder->restore();
|
|
});
|
|
|
|
// Restore children files
|
|
$item->trashed_files()->each(function($files) {
|
|
$files->restore();
|
|
});
|
|
});
|
|
}
|
|
} |