2023-08-14 22:33:53 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2023-08-21 21:56:26 +02:00
|
|
|
use Illuminate\Http\Request;
|
2023-09-05 22:30:57 +02:00
|
|
|
use App\Models\Source;
|
2024-02-09 21:53:08 +01:00
|
|
|
use App\Repositories\LocationRepository;
|
2023-08-14 22:33:53 +02:00
|
|
|
|
|
|
|
class FrontIndexController extends Controller
|
|
|
|
{
|
2024-02-09 21:53:08 +01:00
|
|
|
protected $locationRepository;
|
2023-08-18 04:50:38 +02:00
|
|
|
|
2024-02-09 21:53:08 +01:00
|
|
|
public function __construct(LocationRepository $locationRepository)
|
2023-08-14 22:33:53 +02:00
|
|
|
{
|
2024-02-09 21:53:08 +01:00
|
|
|
$this->locationRepository = $locationRepository;
|
2024-01-23 19:04:52 +01:00
|
|
|
}
|
2024-01-22 20:45:11 +01:00
|
|
|
|
2024-01-23 19:04:52 +01:00
|
|
|
public function start()
|
|
|
|
{
|
2023-08-18 00:14:01 +02:00
|
|
|
return view('front.index', [
|
2024-02-10 18:48:09 +01:00
|
|
|
'count' => count($this->locationRepository->getActiveLocations()),
|
2024-01-26 19:16:38 +01:00
|
|
|
'sources' => count(Source::where("active", true)->get()),
|
2024-02-10 18:48:09 +01:00
|
|
|
'recent' => $this->locationRepository->getRecent(),
|
|
|
|
'latest_date' => $this->locationRepository->getRecent()[0]->updated_at->format('Y M d'),
|
2024-01-26 19:16:38 +01:00
|
|
|
'title' => "The Bad Space"
|
2023-08-18 23:34:53 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-08-21 21:56:26 +02:00
|
|
|
public function indexSearch(Request $request)
|
|
|
|
{
|
|
|
|
return view('front.index', [
|
2024-02-10 18:48:09 +01:00
|
|
|
'count' => count($this->locationRepository->getActiveLocations()),
|
2024-01-26 19:16:38 +01:00
|
|
|
'sources' => count(Source::where("active", true)->get()),
|
2024-02-10 18:48:09 +01:00
|
|
|
'recent' => $this->locationRepository->getRecent(),
|
|
|
|
'results' => $this->locationRepository->search($request),
|
2024-02-09 21:53:08 +01:00
|
|
|
'terms' => $request->index_search,
|
2024-02-10 18:48:09 +01:00
|
|
|
'latest_date' => $this->locationRepository->getRecent()[0]->updated_at->format('Y M d'),
|
2024-01-26 19:16:38 +01:00
|
|
|
'title' => "Search Results",
|
2023-08-21 21:56:26 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-08-18 23:34:53 +02:00
|
|
|
public function about()
|
|
|
|
{
|
2023-09-05 22:30:57 +02:00
|
|
|
$sources = Source::where("active", true)->get();
|
2023-08-18 23:34:53 +02:00
|
|
|
return view('front.about', [
|
2023-09-05 22:30:57 +02:00
|
|
|
'title' => "ABOUT",
|
|
|
|
'sources' => $sources
|
2023-08-18 23:34:53 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2024-02-02 19:16:11 +01:00
|
|
|
public function appeals()
|
|
|
|
{
|
|
|
|
return view('front.appeals', [
|
|
|
|
'title' => "LOCATION APPEALS",
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-08-18 23:34:53 +02:00
|
|
|
public function location(string $uuid = "1")
|
|
|
|
{
|
2024-02-09 21:53:08 +01:00
|
|
|
$location = $this->locationRepository->getLocation($uuid);
|
2023-09-25 22:09:50 +02:00
|
|
|
$sources = Source::where("active", true)->get();
|
2023-08-18 23:34:53 +02:00
|
|
|
$name = "NO LOCATION FOUND";
|
|
|
|
if ($location) {
|
|
|
|
$name = $location->name;
|
|
|
|
}
|
|
|
|
return view('front.location', [
|
2023-09-25 22:09:50 +02:00
|
|
|
'title' => str_replace(".", " ", $name),
|
|
|
|
'location' => $location,
|
|
|
|
'actions' => $location->block_count + $location->silence_count,
|
|
|
|
'sources_count' => count($sources),
|
|
|
|
'images' => json_decode($location->images),
|
|
|
|
'updated' => $location->updated_at->format('Y M d'),
|
2023-08-18 00:14:01 +02:00
|
|
|
]);
|
2023-08-14 22:33:53 +02:00
|
|
|
}
|
2023-08-18 04:50:38 +02:00
|
|
|
|
|
|
|
public function listings(int $pageNum = 1)
|
|
|
|
{
|
2024-02-09 21:53:08 +01:00
|
|
|
$listing = $this->locationRepository->getPage($pageNum);
|
2023-08-18 04:50:38 +02:00
|
|
|
|
|
|
|
return view('front.listing', [
|
|
|
|
'title' => "Listings",
|
2024-01-23 19:04:52 +01:00
|
|
|
'sources' => count(Source::where("active", true)->get()),
|
2024-02-09 21:53:08 +01:00
|
|
|
"totalPages" => $listing[1],
|
|
|
|
"prev" => $listing[2],
|
|
|
|
"next" => $listing[3],
|
2023-08-18 04:50:38 +02:00
|
|
|
'pageNum' => $pageNum,
|
2024-02-09 21:53:08 +01:00
|
|
|
'locations' => $listing[0]
|
2023-08-18 04:50:38 +02:00
|
|
|
]);
|
|
|
|
}
|
2023-08-14 22:33:53 +02:00
|
|
|
}
|