feat: add Sveden update feature

- SvedenController: upload zip and extract to public/sveden
- UpdateSvedenAction: orchestrates temp file handling and extraction
- ExtractSvedenArchiveTask: validates and extracts sveden/abitur folders with security checks
- Sveden.vue: upload UI with progress indicator
- Added routes: GET/POST /dashboard/sveden
- Added quick action: Обновить Sveden
This commit is contained in:
F4ilji
2026-06-30 16:12:16 +05:00
parent 20f615365b
commit c9fca0bf29
6 changed files with 512 additions and 0 deletions
@@ -0,0 +1,41 @@
<?php
namespace App\Containers\Dashboard\UI\WEB\Controllers;
use App\Containers\Dashboard\Actions\Sveden\UpdateSvedenAction;
use App\Http\Controllers\Controller;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Inertia\Inertia;
class SvedenController extends Controller
{
public function __construct(
private readonly UpdateSvedenAction $updateAction,
) {}
public function index(): \Inertia\Response
{
return Inertia::render('Dashboard/Sveden');
}
public function store(Request $request): JsonResponse
{
$request->validate([
'archive' => ['required', 'file', 'mimes:zip', 'max:102400'],
]);
try {
$result = $this->updateAction->run($request->file('archive'));
return response()->json($result);
} catch (\Throwable $e) {
report($e);
return response()->json([
'success' => false,
'message' => 'Ошибка при обновлении: ' . $e->getMessage(),
], 500);
}
}
}
@@ -27,6 +27,7 @@ use App\Containers\Dashboard\UI\WEB\Controllers\EditSliderController;
use App\Containers\Dashboard\UI\WEB\Controllers\FacultyController;
use App\Containers\Dashboard\UI\WEB\Controllers\FacultyWorkerController;
use App\Containers\Dashboard\UI\WEB\Controllers\IndexDashboardController;
use App\Containers\Dashboard\UI\WEB\Controllers\IntegrationCredentialsController;
use App\Containers\Dashboard\UI\WEB\Controllers\JournalIssueController;
use App\Containers\Dashboard\UI\WEB\Controllers\MainSectionController;
use App\Containers\Dashboard\UI\WEB\Controllers\PageController;
@@ -36,6 +37,7 @@ use App\Containers\Dashboard\UI\WEB\Controllers\ProcessMixedFilesController;
use App\Containers\Dashboard\UI\WEB\Controllers\PublishPostController;
use App\Containers\Dashboard\UI\WEB\Controllers\QuickUploadController;
use App\Containers\Dashboard\UI\WEB\Controllers\ScheduleController;
use App\Containers\Dashboard\UI\WEB\Controllers\SvedenController;
use App\Containers\Dashboard\UI\WEB\Controllers\SliderController;
use App\Containers\Dashboard\UI\WEB\Controllers\StoreFilesController;
use App\Containers\Dashboard\UI\WEB\Controllers\StoreSlideController;
@@ -61,10 +63,16 @@ Route::post('/dashboard/logout', [AuthenticatedSessionController::class, 'destro
// Authenticated dashboard routes
Route::middleware(['access-check', 'dashboard.auth'])->group(function () {
Route::get('/dashboard', IndexDashboardController::class)->name('dashboard.index');
Route::get('/dashboard/deploy', [DeployController::class, 'index'])->name('dashboard.deploy.index');
Route::post('/dashboard/deploy', [DeployController::class, 'deploy'])->name('dashboard.deploy');
Route::get('/dashboard/deploy/status', [DeployController::class, 'status'])->name('dashboard.deploy.status');
Route::get('/dashboard/deploy/log', [DeployController::class, 'log'])->name('dashboard.deploy.log');
Route::get('/dashboard/deploy/history', [DeployController::class, 'history'])->name('dashboard.deploy.history');
Route::post('/dashboard/deploy/clear', [DeployController::class, 'clear'])->name('dashboard.deploy.clear');
Route::get('/dashboard/sveden', [SvedenController::class, 'index'])->name('dashboard.sveden');
Route::post('/dashboard/sveden', [SvedenController::class, 'store'])->name('dashboard.sveden.store');
// CRUD постов
Route::prefix('/dashboard/posts')->name('dashboard.posts.')->group(function () {
Route::get('/', [PostController::class, 'index'])->name('index');
@@ -406,6 +414,16 @@ Route::middleware(['access-check', 'dashboard.auth'])->group(function () {
Route::put('/{pageReferenceList}', [PageReferenceListController::class, 'update'])->name('update');
Route::delete('/{pageReferenceList}', [PageReferenceListController::class, 'destroy'])->name('destroy');
});
// CRUD интеграционных ключей
Route::prefix('/dashboard/integration-credentials')->name('dashboard.integration-credentials.')->group(function () {
Route::get('/', [IntegrationCredentialsController::class, 'index'])->name('index');
Route::get('/create', [IntegrationCredentialsController::class, 'create'])->name('create');
Route::post('/', [IntegrationCredentialsController::class, 'store'])->name('store');
Route::get('/{credential}/edit', [IntegrationCredentialsController::class, 'edit'])->name('edit');
Route::put('/{credential}', [IntegrationCredentialsController::class, 'update'])->name('update');
Route::delete('/{credential}', [IntegrationCredentialsController::class, 'destroy'])->name('destroy');
});
});