Migrate backend to Porto architecture and fix minor bugs

- Fully transitioned the backend to the Porto architectural pattern
- Improved code organization and maintainability
- Fixed minor bugs and inconsistencies
This commit is contained in:
F4ilji
2025-05-12 08:47:43 +05:00
parent 76deaf75f3
commit c01016a154
620 changed files with 16218 additions and 6073 deletions
@@ -0,0 +1,23 @@
<?php
namespace App\Containers\Article\UI\WEB\Controllers;
use App\Containers\Article\Actions\ListPostsAction;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class IndexPostController extends Controller
{
public function __construct(
private readonly ListPostsAction $listPostsAction,
) {}
public function __invoke(Request $request)
{
$filters = $request->only(['search', 'category', 'tag', 'sort', 'page']);
$data = $this->listPostsAction->run($filters);
return inertia()->render('Client/Posts/Index', $data);
}
}
@@ -0,0 +1,40 @@
<?php
namespace App\Containers\Article\UI\WEB\Controllers;
use App\Containers\Article\Models\Post;
use App\Containers\Article\UI\WEB\Transformers\PostItemResource;
use App\Ship\Enums\CacheKeys;
use App\Ship\Contracts\SeoServiceInterface;
use App\Ship\Requests\Request;
use Carbon\Carbon;
use Illuminate\Support\Facades\Cache;
use Inertia\Inertia;
class ShowPostController extends \App\Ship\Controllers\Controller
{
public function __construct(private readonly SeoServiceInterface $seoPageProvider){}
public function __invoke(Request $request, $slug): \Inertia\Response
{
$postData = Cache::remember(
CacheKeys::POST_PREFIX->value . $slug,
now()->addHours(1),
fn() => Post::where('slug', $slug)
->where('publish_at', '<', Carbon::now())
->firstOrFail()
);
$seo = Cache::remember(
CacheKeys::POST_PREFIX->value . 'seo_' . $slug,
now()->addHours(1),
fn() => $this->seoPageProvider->getSeoForModel($postData)
);
return inertia()->render('Client/Posts/Show', [
'post' => new PostItemResource($postData),
'seo' => $seo,
]);
}
}
@@ -0,0 +1,14 @@
<?php
use App\Containers\Article\UI\WEB\Controllers\IndexPostController;
use App\Containers\Article\UI\WEB\Controllers\ShowPostController;
use Illuminate\Support\Facades\Route;
Route::middleware('access-check')->group(function () {
Route::get('/news', IndexPostController::class)->name('client.post.index');
Route::get('/news/{slug}', ShowPostController::class)->name('client.post.show');
});
@@ -0,0 +1,27 @@
<?php
namespace App\Containers\Article\UI\WEB\Transformers;
use App\Ship\Requests\Request;
use App\Ship\Resources\JsonResource;
class CategoryResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \App\Ship\Requests\Request $request
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request): array
{
return [
'id' => $this->id,
'title' => $this->title,
'slug' => $this->slug,
'created_at' => $this->created_at->diffforhumans(),
];
}
}
@@ -0,0 +1,32 @@
<?php
namespace App\Containers\Article\UI\WEB\Transformers;
use App\Ship\Resources\JsonResource;
use Carbon\Carbon;
class PostItemResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \App\Ship\Requests\Request $request
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request)
{
return [
'id' => $this->id,
'title' => $this->title,
'slug' => $this->slug,
'content' => $this->content,
'is_published' => $this->is_published,
'category' => $this->category,
'tags' => TagResource::collection($this->tags()->get()),
'authors' => $this->authors,
'gallery' => $this->images,
'reading_time' => $this->reading_time,
'created_post' => Carbon::parse($this->publish_at)->diffforhumans(),
];
}
}
@@ -0,0 +1,31 @@
<?php
namespace App\Containers\Article\UI\WEB\Transformers;
use App\Ship\Resources\JsonResource;
use Carbon\Carbon;
class PostListResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \App\Ship\Requests\Request $request
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request)
{
return [
'id' => $this->id,
'title' => $this->title,
'slug' => $this->slug,
'preview_text' => $this->preview_text,
'content' => $this->content,
'category' => $this->category,
'authors' => $this->authors,
'preview' => $this->preview,
'reading_time' => $this->reading_time,
'created_post' => Carbon::parse($this->publish_at)->diffforhumans(),
];
}
}
@@ -0,0 +1,26 @@
<?php
namespace App\Containers\Article\UI\WEB\Transformers;
use App\Ship\Requests\Request;
use App\Ship\Resources\JsonResource;
class TagResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \App\Ship\Requests\Request $request
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request): array
{
return [
'id' => $this->id,
'name' => $this->name,
'slug' => $this->slug,
];
}
}