121 lines
4.2 KiB
PHP
121 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Category;
|
|
use App\Models\CustomField;
|
|
use App\Models\Item;
|
|
use App\Models\User;
|
|
use App\Services\ResponseService;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Throwable;
|
|
|
|
class HomeController extends Controller {
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct() {
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
|
|
public function index() {
|
|
$items = Item::select('id','name','price','latitude','longitude','city','state','country','image')->where('clicks','>',0)->where('status', 'approved')->inRandomOrder()->limit(50)->get();
|
|
$categories = Category::withCount('items')->with('translations')->whereHas('items')->get();
|
|
|
|
$category_name = array();
|
|
$category_item_count = array();
|
|
|
|
foreach ($categories as $value) {
|
|
$category_name[] = "'" . $value->translated_name . "'";
|
|
$category_item_count[] = $value->items_count;
|
|
}
|
|
|
|
$categories_count = Category::count();
|
|
$user_count = User::role('User')->withTrashed()->count();
|
|
$item_count = Item::withTrashed()->count();
|
|
$custom_field_count = CustomField::count();
|
|
// $items = Item::all();
|
|
return view('home', compact('category_item_count', 'category_name', 'categories_count', 'item_count', 'user_count', 'custom_field_count','items'));
|
|
}
|
|
|
|
public function changePasswordIndex() {
|
|
return view('change_password.index');
|
|
}
|
|
|
|
|
|
public function changePasswordUpdate(Request $request) {
|
|
$validator = Validator::make($request->all(), [
|
|
'old_password' => 'required',
|
|
'new_password' => 'required|min:8',
|
|
'confirm_password' => 'required|same:new_password',
|
|
]);
|
|
if ($validator->fails()) {
|
|
ResponseService::validationError($validator->errors()->first());
|
|
}
|
|
try {
|
|
$user = Auth::user();
|
|
if (!Hash::check($request->old_password, Auth::user()->password)) {
|
|
ResponseService::errorResponse("Incorrect old password");
|
|
}
|
|
$user->password = Hash::make($request->confirm_password);
|
|
$user->update();
|
|
ResponseService::successResponse('Password Change Successfully');
|
|
} catch (Throwable $th) {
|
|
ResponseService::logErrorResponse($th, "HomeController --> changePasswordUpdate");
|
|
ResponseService::errorResponse();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
public function changeProfileIndex() {
|
|
return view('change_profile.index');
|
|
}
|
|
|
|
public function changeProfileUpdate(Request $request) {
|
|
$validator = Validator::make($request->all(), [
|
|
'name' => 'required',
|
|
'email' => 'required|email|unique:users,email,' . Auth::user()->id,
|
|
'profile' => 'nullable|mimes:jpeg,jpg,png'
|
|
]);
|
|
if ($validator->fails()) {
|
|
ResponseService::validationError($validator->errors()->first());
|
|
}
|
|
try {
|
|
$user = Auth::user();
|
|
$data = [
|
|
'name' => $request->name,
|
|
'email' => $request->email
|
|
];
|
|
if ($request->hasFile('profile')) {
|
|
$data['profile'] = $request->file('profile')->store('admin_profile', 'public');
|
|
}
|
|
$user->update($data);
|
|
ResponseService::successResponse('Profile Updated Successfully');
|
|
} catch (Throwable $th) {
|
|
ResponseService::logErrorResponse($th, "HomeController --> updateProfile");
|
|
ResponseService::errorResponse();
|
|
}
|
|
|
|
}
|
|
public function getMapsData()
|
|
{
|
|
$apiKey = env('PLACE_API_KEY');
|
|
|
|
$url = "https://maps.googleapis.com/maps/api/js?" . http_build_query([
|
|
'libraries' => 'places',
|
|
'key' => $apiKey, // Use the API key from the .env file
|
|
// Add any other parameters you need here
|
|
]);
|
|
|
|
return file_get_contents($url);
|
|
}
|
|
}
|