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-08-15 23:05:51 +02:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2023-08-14 22:33:53 +02:00
|
|
|
use App\Models\Location;
|
2023-09-05 22:30:57 +02:00
|
|
|
use App\Models\Source;
|
2023-08-14 22:33:53 +02:00
|
|
|
|
|
|
|
class FrontIndexController extends Controller
|
|
|
|
{
|
2023-08-18 04:50:38 +02:00
|
|
|
private $limit = 15;
|
|
|
|
|
2023-08-14 22:33:53 +02:00
|
|
|
public function start()
|
|
|
|
{
|
2023-08-16 22:03:06 +02:00
|
|
|
$locations = Location::where("active", true)->get();
|
2023-08-14 22:33:53 +02:00
|
|
|
$count = count($locations);
|
2023-08-18 23:34:53 +02:00
|
|
|
$recent = Location::where("active", true)
|
2023-09-02 00:22:57 +02:00
|
|
|
->where('block_count', '>', 2)
|
|
|
|
->limit(10)->orderByDesc('updated_at')->get();
|
2023-08-15 23:05:51 +02:00
|
|
|
|
|
|
|
//$result = DB::select("SELECT * FROM searchlocations('$terms')");
|
|
|
|
|
2023-08-18 00:14:01 +02:00
|
|
|
return view('front.index', [
|
2023-08-18 23:34:53 +02:00
|
|
|
'count' => $count,
|
|
|
|
'recent' => $recent,
|
|
|
|
'title' => "The Bad Space"
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-08-21 21:56:26 +02:00
|
|
|
public function indexSearch(Request $request)
|
|
|
|
{
|
|
|
|
$terms = $request->index_search;
|
|
|
|
$rawSearch = $terms;
|
|
|
|
$terms = str_replace(",", "", $terms);
|
|
|
|
$terms = str_replace(" ", "|", $terms);
|
2023-09-21 22:46:14 +02:00
|
|
|
$raw = DB::select("SELECT * FROM searchlocations(?)", [$terms]);
|
2023-09-12 02:40:13 +02:00
|
|
|
$results = [];
|
|
|
|
foreach ($raw as $item) {
|
2023-09-25 22:09:50 +02:00
|
|
|
if (($item->block_count + $item->silence_count) > 2) {
|
2023-09-12 02:40:13 +02:00
|
|
|
array_push($results, $item);
|
|
|
|
}
|
|
|
|
}
|
2023-08-21 21:56:26 +02:00
|
|
|
|
|
|
|
$locations = Location::where("active", true)->get();
|
|
|
|
$count = count($locations);
|
|
|
|
$recent = Location::where("active", true)
|
2023-09-02 00:22:57 +02:00
|
|
|
->where('block_count', '>', 2)
|
2023-09-25 22:09:50 +02:00
|
|
|
->where('silence_count', '>', 2)
|
2023-09-02 00:22:57 +02:00
|
|
|
->limit(10)->orderByDesc('updated_at')->get();
|
2023-08-21 21:56:26 +02:00
|
|
|
|
|
|
|
return view('front.index', [
|
|
|
|
'count' => $count,
|
|
|
|
'recent' => $recent,
|
|
|
|
'title' => "The Bad Space",
|
|
|
|
'results' => $results
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function location(string $uuid = "1")
|
|
|
|
{
|
|
|
|
$location = Location::where("uuid", $uuid)->first();
|
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)
|
|
|
|
{
|
|
|
|
$range = $pageNum * $this->limit - $this->limit;
|
2023-08-25 00:27:14 +02:00
|
|
|
$active = Location::where("active", true)->where('block_count', '>', 2)->get();
|
|
|
|
$locations = Location::where("active", true)->where('block_count', '>', 2)
|
2023-08-18 04:50:38 +02:00
|
|
|
->limit($this->limit)->offset($range)->orderByDesc('id')->get();
|
|
|
|
$pageCount = ceil(count($active) / $this->limit);
|
|
|
|
|
|
|
|
$next = $pageNum + 1;
|
|
|
|
if ($next > $pageCount) {
|
|
|
|
$next = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$prev = $pageNum - 1;
|
|
|
|
|
|
|
|
if ($prev <= 0) {
|
|
|
|
$prev = $pageCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('front.listing', [
|
|
|
|
'title' => "Listings",
|
|
|
|
"totalPages" => $pageCount,
|
|
|
|
"prev" => $prev,
|
|
|
|
"next" => $next,
|
|
|
|
'pageNum' => $pageNum,
|
|
|
|
'locations' => $locations
|
|
|
|
]);
|
|
|
|
}
|
2023-08-14 22:33:53 +02:00
|
|
|
}
|