mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
104 lines
3.1 KiB
PHP
104 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
use App\Models\Import;
|
|
use Storage;
|
|
|
|
use Log;
|
|
|
|
class Importer extends Component
|
|
{
|
|
public $files;
|
|
public $processDetails;
|
|
public $forcerefresh;
|
|
|
|
public $progress; //upload progress - '-1' means don't show
|
|
public $progress_message; //progress message
|
|
public $progress_bar_class;
|
|
|
|
public $message; //status/error message?
|
|
public $message_type; //success/error?
|
|
|
|
public $import_errors; //
|
|
|
|
protected $rules = [
|
|
'files.*.file_path' => 'required|string',
|
|
'files.*.created_at' => 'required|string',
|
|
'files.*.filesize' => 'required|integer'
|
|
];
|
|
|
|
protected $listeners = ['hideDetails' => 'hideDetails', 'importError' => 'importError', 'alert' => 'alert'];
|
|
|
|
public function mount()
|
|
{
|
|
//$this->authorize('import'); // FIXME - gotta do this somewhere!!!!!
|
|
//$this->files = Import::all(); // this *SHOULD* be how it works, but...it doesn't? (note orderBy/get, below)
|
|
//$this->forcerefresh = 0;
|
|
$this->progress = -1; // '-1' means 'don't show the progressbar'
|
|
$this->progress_bar_class = 'progress-bar-warning';
|
|
}
|
|
|
|
public function hideMessages()
|
|
{
|
|
$this->message='';
|
|
}
|
|
|
|
public function importError($errors)
|
|
{
|
|
\Log::info("Errors fired!!!!");
|
|
\Log::info(" Here they are...".print_r($errors,true));
|
|
$this->import_errors = $errors;
|
|
}
|
|
|
|
public function alert($obj)
|
|
{
|
|
\Log::info("Alert object received: ".print_r($obj,true));
|
|
$this->message = $obj;
|
|
$this->message_type = "danger"; // FIXME - when does this get reset? Only when you click the 'x'?
|
|
}
|
|
|
|
public function toggleEvent($id)
|
|
{
|
|
Log::error("toggled on: ".$id);
|
|
$this->processDetails = Import::find($id);
|
|
}
|
|
|
|
public function hideDetails()
|
|
{
|
|
Log::error("hiding details!");
|
|
$this->processDetails = null;
|
|
}
|
|
|
|
public function destroy($id)
|
|
{
|
|
foreach($this->files as $file) {
|
|
\Log::debug("File id is: ".$file->id);
|
|
//\Log::debug("File is: ".print_r($file,true));
|
|
if($id == $file->id) {
|
|
// FIXME - should I do a try/catch on this and use the file_delete_failure or whatever, if needed?
|
|
\Log::debug("I FOUND IT!!!!");
|
|
Storage::delete('imports/'.$file->file_path); // FIXME - last time I ran this, it *didn't* delete the file?!
|
|
$file->delete();
|
|
|
|
$this->message = trans('admin/hardware/message.import.file_delete_success');
|
|
$this->message_type = 'success'; // uhm, I mean, I guess?
|
|
}
|
|
}
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
$this->files = Import::orderBy('id','desc')->get(); //HACK - slows down renders.
|
|
return view('livewire.importer')
|
|
->extends('layouts.default')
|
|
->section('content')
|
|
->layoutData(['title', trans('general.import')]); /* return view('livewire.show-posts')
|
|
4 ->layout('layouts.base', ['title' => 'Show Posts'])
|
|
->section('body') // or whatever?
|
|
5 */
|
|
}
|
|
}
|