You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
use App\Http\Controllers\CollectionController; use App\Http\Controllers\FileController; use App\Models\File; use Illuminate\Http\UploadedFile; use Illuminate\Support\Facades\Route; use Illuminate\Support\Facades\Storage;
/* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | is assigned the "api" middleware group. Enjoy building your API! | */
// Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
// return $request->user();
// });
Route::get('newTmp/{uuid}', function ($uuid) { $file = File::find($uuid); return Storage::disk('local')->temporaryUrl($file->server_path . $file->uuid . '.webp', now()->addMinutes(5), ['collection_name' => 'Paris Renner II']); })->name('newTmp');
Route::group(['as' => 'api.'], function () { Route::apiResource('collections', CollectionController::class); Route::delete('collections/{collection}', [CollectionController::class, "destroy"])->withTrashed()->name('collections.destroy'); Route::get('{collection_name}/{uuid}.{extention}', [FileController::class, 'show'])->name('files.show'); // Route::get('{collection_name}/{path}', [FileController::class, 'private'])->name('files.private');
Route::post('{collection_name}/{model_id?}', [FileController::class, 'store'])->name('files.store'); Route::put('{collection_name}/{uuid}.{extention}', [FileController::class, 'update'])->name('files.update'); Route::delete('{collection_name}/{uuid}.{extention}', [FileController::class, 'destroy'])->withTrashed()->name('files.destroy'); });
|