2024-10-29 20:11:51 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Exports\Controllers;
|
|
|
|
|
2024-10-30 23:26:23 +08:00
|
|
|
use BookStack\Exports\ZipExports\ZipExportValidator;
|
2024-10-29 20:11:51 +08:00
|
|
|
use BookStack\Http\Controller;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class ImportController extends Controller
|
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('can:content-import');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function start(Request $request)
|
|
|
|
{
|
2024-10-29 22:21:32 +08:00
|
|
|
// TODO - Show existing imports for user (or for all users if admin-level user)
|
|
|
|
|
2024-11-02 22:51:04 +08:00
|
|
|
return view('exports.import', [
|
|
|
|
'zipErrors' => session()->pull('validation_errors') ?? [],
|
|
|
|
]);
|
2024-10-29 20:11:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function upload(Request $request)
|
|
|
|
{
|
2024-10-30 21:13:41 +08:00
|
|
|
$this->validate($request, [
|
|
|
|
'file' => ['required', 'file']
|
|
|
|
]);
|
|
|
|
|
|
|
|
$file = $request->file('file');
|
2024-10-30 23:26:23 +08:00
|
|
|
$zipPath = $file->getRealPath();
|
|
|
|
|
|
|
|
$errors = (new ZipExportValidator($zipPath))->validate();
|
|
|
|
if ($errors) {
|
2024-11-02 22:51:04 +08:00
|
|
|
session()->flash('validation_errors', $errors);
|
|
|
|
return redirect('/import');
|
2024-10-30 23:26:23 +08:00
|
|
|
}
|
2024-11-02 22:51:04 +08:00
|
|
|
|
2024-10-30 23:26:23 +08:00
|
|
|
dd('passed');
|
2024-10-29 22:21:32 +08:00
|
|
|
// TODO - Upload to storage
|
2024-11-02 22:51:04 +08:00
|
|
|
// TODO - Store info/results for display:
|
|
|
|
// - zip_path
|
|
|
|
// - name (From name of thing being imported)
|
|
|
|
// - size
|
|
|
|
// - book_count
|
|
|
|
// - chapter_count
|
|
|
|
// - page_count
|
|
|
|
// - created_by
|
|
|
|
// - created_at/updated_at
|
2024-10-29 22:21:32 +08:00
|
|
|
// TODO - Send user to next import stage
|
2024-10-29 20:11:51 +08:00
|
|
|
}
|
|
|
|
}
|