GG.deals clone: CodeIgniter 4 + MongoDB game price tracker
- Full gg.deals-style UI: deal feed with filters, game pages with price history charts, rankings, vouchers, news, prepaids, subscriptions, bundles, franchises, wishlist, API docs - Real data crawlers: * gg:crawl (Steam Store API + GOG Catalog + Epic free games) * gg:catalog (252K game slugs from gg.deals sitemaps) * gg:ggdeals (per-game prices via FlareSolverr session, JSON-LD parsing) * gg:seed / gg:crawl-covers (demo seed + Steam CDN cover art) - 24/7 self-updating scheduler (scripts/scheduler_loop.php, lockfile-protected) - Tailwind v4 dark/light theme, Alpine.js, Chart.js
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Controllers;
|
||||
|
||||
use App\Models\GameModel;
|
||||
use CodeIgniter\Controller;
|
||||
|
||||
class Rankings extends Controller
|
||||
{
|
||||
public function index(): string
|
||||
{
|
||||
$model = new GameModel();
|
||||
|
||||
$data = [
|
||||
'pageTitle' => 'Rankings — GG.deals',
|
||||
'wishlisted' => $model->ranked('trending', 20),
|
||||
'collected' => $model->ranked('rating_pct', 20),
|
||||
'metacritic' => $model->ranked('score', 20),
|
||||
'reviews' => $model->ranked('rating_pct', 20),
|
||||
];
|
||||
|
||||
return view('rankings', $data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user