mirror of
https://github.com/BillyOutlast/UNIT3D.git
synced 2026-02-05 11:41:22 +01:00
133 lines
4.1 KiB
PHP
133 lines
4.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Controllers\Staff;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Staff\StoreCategoryRequest;
|
|
use App\Http\Requests\Staff\UpdateCategoryRequest;
|
|
use App\Models\Category;
|
|
use Intervention\Image\Facades\Image;
|
|
use Exception;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
/**
|
|
* @see \Tests\Feature\Http\Controllers\CategoryControllerTest
|
|
*/
|
|
class CategoryController extends Controller
|
|
{
|
|
/**
|
|
* Display All Categories.
|
|
*/
|
|
public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
return view('Staff.category.index', [
|
|
'categories' => Category::orderBy('position')->get(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show Form For Creating A New Category.
|
|
*/
|
|
public function create(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
return view('Staff.category.create');
|
|
}
|
|
|
|
/**
|
|
* Store A Category.
|
|
*/
|
|
public function store(StoreCategoryRequest $request): \Illuminate\Http\RedirectResponse
|
|
{
|
|
if ($request->hasFile('image')) {
|
|
$image = $request->file('image');
|
|
|
|
abort_if(\is_array($image), 400);
|
|
|
|
$filename = 'category-'.uniqid('', true).'.'.$image->getClientOriginalExtension();
|
|
$path = Storage::disk('category-images')->path($filename);
|
|
Image::make($image->getRealPath())->fit(50, 50)->encode('png', 100)->save($path);
|
|
}
|
|
|
|
Category::create([
|
|
'image' => $filename ?? null,
|
|
'no_meta' => $request->meta === 'no',
|
|
'music_meta' => $request->meta === 'music',
|
|
'game_meta' => $request->meta === 'game',
|
|
'tv_meta' => $request->meta === 'tv',
|
|
'movie_meta' => $request->meta === 'movie',
|
|
] + $request->validated());
|
|
|
|
return to_route('staff.categories.index')
|
|
->with('success', 'Category Successfully Added');
|
|
}
|
|
|
|
/**
|
|
* Category Edit Form.
|
|
*/
|
|
public function edit(Category $category): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
return view('Staff.category.edit', [
|
|
'category' => $category,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Update A Category.
|
|
*/
|
|
public function update(UpdateCategoryRequest $request, Category $category): \Illuminate\Http\RedirectResponse
|
|
{
|
|
if ($request->hasFile('image')) {
|
|
$image = $request->file('image');
|
|
|
|
abort_if(\is_array($image), 400);
|
|
|
|
$filename = 'category-'.uniqid('', true).'.'.$image->getClientOriginalExtension();
|
|
$path = Storage::disk('category-images')->path($filename);
|
|
Image::make($image->getRealPath())->fit(50, 50)->encode('png', 100)->save($path);
|
|
|
|
if ($category->image !== null) {
|
|
Storage::disk('category-images')->delete($category->image);
|
|
}
|
|
}
|
|
|
|
$category->update([
|
|
'image' => $filename ?? null,
|
|
'no_meta' => $request->meta === 'no',
|
|
'music_meta' => $request->meta === 'music',
|
|
'game_meta' => $request->meta === 'game',
|
|
'tv_meta' => $request->meta === 'tv',
|
|
'movie_meta' => $request->meta === 'movie',
|
|
] + $request->validated());
|
|
|
|
return to_route('staff.categories.index')
|
|
->with('success', 'Category Successfully Modified');
|
|
}
|
|
|
|
/**
|
|
* Destroy A Category.
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function destroy(Category $category): \Illuminate\Http\RedirectResponse
|
|
{
|
|
$category->delete();
|
|
|
|
return to_route('staff.categories.index')
|
|
->with('success', 'Category Successfully Deleted');
|
|
}
|
|
}
|