/home/brandsfa/bigshoponly.com/app/Http/Controllers/Web/ChattingController.php
<?php
namespace App\Http\Controllers\Web;
use App\Events\ChattingEvent;
use App\Http\Controllers\Controller;
use App\Models\Chatting;
use App\Models\DeliveryMan;
use App\Models\Order;
use App\Models\ProductCompare;
use App\Models\Seller;
use App\Models\User;
use App\Models\Wishlist;
use App\Utils\ImageManager;
use Auth;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
class ChattingController extends Controller
{
public function __construct(
private Order $order,
private Wishlist $wishlist,
private ProductCompare $compare,
)
{
}
public function chat_list(Request $request, $type)
{
if ($type == 'seller') {
if ($request->has('id') && $request['id'] == 0) {
$lastChatting = Chatting::where(['user_id' => auth('customer')->id(), 'admin_id' => 0])
->orderBy('created_at', 'DESC')->first();
} else {
$lastChatting = Chatting::with(['shop'])->where('user_id', auth('customer')->id())
->whereNotNull(['seller_id', 'user_id'])->orderBy('created_at', 'DESC')
->orWhereNotNull(['admin_id'])
->first();
}
if (isset($lastChatting)) {
if ($request->has('id') && $request['id'] != 0) {
$lastChatting = Chatting::with(['shop'])->where(['user_id' => auth('customer')->id(), 'shop_id' => $request['id']])
->whereNotNull(['seller_id', 'user_id'])
->orderBy('created_at', 'DESC')
->first();
Chatting::with(['shop'])->where(['user_id' => auth('customer')->id(), 'shop_id' => $request['id']])
->whereNotNull(['seller_id', 'user_id'])
->orderBy('created_at', 'DESC')
->update(['seen_by_customer' => 1]);
} elseif ($request->has('id') && $request['id'] == 0) {
$lastChatting = Chatting::where(['user_id' => auth('customer')->id(), 'admin_id' => 0])
->orderBy('created_at', 'DESC')->first();
Chatting::where(['user_id' => auth('customer')->id(), 'admin_id' => 0])->update(['seen_by_customer' => 1]);
}
// theme_aster - specific shop end
if (isset($lastChatting['admin_id']) && $lastChatting['admin_id'] == 0) {
$chattings = Chatting::where(['user_id' => auth('customer')->id(), 'admin_id' => 0])
->when(theme_root_path() == 'default', function ($query) {
return $query->orderBy('chattings.created_at', 'desc');
})
->when(theme_root_path() != 'default', function ($query) {
return $query->orderBy('chattings.created_at', 'asc');
})
->get();
Chatting::where(['user_id' => auth('customer')->id(), 'admin_id' => 0])
->update(['seen_by_customer' => 1]);
} else {
if (isset($lastChatting->shop_id)) {
$chattings = Chatting::join('shops', 'shops.id', '=', 'chattings.shop_id')
->select('chattings.*', 'shops.name', 'shops.image')
->where('chattings.user_id', auth('customer')->id())
->where('shop_id', $lastChatting->shop_id)
->when(theme_root_path() == 'default', function ($query) {
return $query->orderBy('chattings.created_at', 'desc');
})
->when(theme_root_path() != 'default', function ($query) {
return $query->orderBy('chattings.created_at', 'asc');
})
->get();
}
}
$inhouseShop = Chatting::where(['user_id' => auth('customer')->id(), 'admin_id' => 0])
->orderBy('chattings.created_at', 'desc')
->first();
$inhouseShopUnseenMessage = Chatting::where([
'user_id' => auth('customer')->id(),
'admin_id' => 0,
'seen_by_customer' => 0])
->count();
$uniqueShops = Chatting::join('shops', 'shops.id', '=', 'chattings.shop_id')
->join('sellers', 'sellers.id', '=', 'shops.seller_id')
->select('chattings.*', 'shops.name', 'shops.image', 'shops.temporary_close', 'shops.contact', 'sellers.email as seller_email')
->where('chattings.user_id', auth('customer')->id())
->orderBy('chattings.created_at', 'desc')
->get()->unique('shop_id');
/*Unseen Message Count*/
$uniqueShops?->map(function ($unique_shop) {
$unique_shop['unseen_message_count'] = Chatting::where([
'user_id' => $unique_shop->user_id,
'seller_id' => $unique_shop->seller_id,
'sent_by_customer' => 0,
'seen_by_customer' => 0,
])->count();
});
/*End Unseen Message*/
return view(VIEW_FILE_NAMES['user_inbox'], [
'chattings' => $chattings ?? null,
'unique_shops' => $uniqueShops,
'last_chat' => $lastChatting,
'inhouseShop' => $inhouseShop,
'inhouseShopUnseenMessage' => $inhouseShopUnseenMessage,
]);
}
} elseif ($type == 'delivery-man') {
$lastChatting = Chatting::with('deliveryMan')->where('user_id', auth('customer')->id())
->whereNotNull(['delivery_man_id', 'user_id'])
->orderBy('created_at', 'DESC')
->first();
if (isset($lastChatting)) {
// theme_aster - specific shop start
if ($request->has('id')) {
$lastChatting = Chatting::with('deliveryMan')->where('delivery_man_id', $request->id)
->orderBy('created_at', 'DESC')
->first();
Chatting::where(['user_id' => auth('customer')->id(), 'delivery_man_id' => $request['id']])->update(['seen_by_customer' => 1]);
}// theme_aster - specific shop end
$chattings = Chatting::join('delivery_men', 'delivery_men.id', '=', 'chattings.delivery_man_id')
->select('chattings.*', 'delivery_men.f_name', 'delivery_men.l_name', 'delivery_men.image')
->where('chattings.user_id', auth('customer')->id())
->where('delivery_man_id', $lastChatting->delivery_man_id)
->when(theme_root_path() == 'default', function ($query) {
return $query->orderBy('chattings.created_at', 'desc');
})
->when(theme_root_path() != 'default', function ($query) {
return $query->orderBy('chattings.created_at', 'asc');
})
->get();
$uniqueShops = Chatting::join('delivery_men', 'delivery_men.id', '=', 'chattings.delivery_man_id')
->select('chattings.*', 'delivery_men.f_name', 'delivery_men.l_name', 'delivery_men.image', 'delivery_men.email')
->where('chattings.user_id', auth('customer')->id())
->orderBy('chattings.created_at', 'desc')
->get()
->unique('delivery_man_id');
/*Unseen Message Count*/
$uniqueShops?->map(function ($unique_shop) {
$unique_shop['unseen_message_count'] = Chatting::where([
'user_id' => $unique_shop->user_id,
'delivery_man_id' => $unique_shop->delivery_man_id,
'sent_by_customer' => 0,
'seen_by_customer' => 0,
])->count();
});
/*End Unseen Message*/
return view(VIEW_FILE_NAMES['user_inbox'], [
'chattings' => $chattings,
'unique_shops' => $uniqueShops,
'last_chat' => $lastChatting
]);
}
}
return view(VIEW_FILE_NAMES['user_inbox']);
}
public function messages(Request $request)
{
if ($request->has('shop_id'))
{
Chatting::where(['user_id'=>auth('customer')->id(), 'shop_id'=> $request->shop_id])->update([
'seen_by_customer' => 1
]);
$shops = Chatting::join('shops', 'shops.id', '=', 'chattings.shop_id')
->select('chattings.*', 'shops.name', 'shops.image')
->where('user_id', auth('customer')->id())
->where('chattings.shop_id', json_decode($request->shop_id))
->orderBy('created_at', 'ASC')
->get();
}
elseif ($request->has('delivery_man_id'))
{
Chatting::where(['user_id'=>auth('customer')->id(), 'delivery_man_id'=> $request->delivery_man_id])->update([
'seen_by_customer' => 1
]);
$shops = Chatting::join('delivery_men', 'delivery_men.id', '=', 'chattings.delivery_man_id')
->select('chattings.*', 'delivery_men.f_name','delivery_men.l_name', 'delivery_men.image')
->where('user_id', auth('customer')->id())
->where('chattings.delivery_man_id', json_decode($request->delivery_man_id))
->orderBy('created_at', 'ASC')
->get();
}
return response()->json($shops);
}
public function messages_store(Request $request)
{
$message_form = User::find(auth('customer')->id());
if ($request->image == null && $request->message == '') {
return response()->json(translate('type_something').'!', 403);
}
$image = [] ;
if ($request->file('image')) {
$validator = Validator::make($request->all(), [
'image.*' => 'image|mimes:jpeg,png,jpg,gif,webp,bmp,tif,tiff|max:6000'
]);
if ($validator->fails()) {
return response()->json(translate('The_file_must_be_an_image').'!', 403);
}
foreach ($request->image as $key=>$value) {
$image_name = ImageManager::upload('chatting/', 'webp', $value);
$image[] = $image_name;
}
}
$message = $request['message'];
if ($request->has('shop_id'))
{
$chatting = [
'user_id' => auth('customer')->id(),
'shop_id' => $request['shop_id'] != 0 ? $request['shop_id'] : null,
'message' => $request['message'],
'attachment' => json_encode($image),
'sent_by_customer' => 1,
'seen_by_customer' => 1,
'seen_by_seller' => 0,
'created_at' => now(),
];
$chatting += $request['shop_id'] == 0 ? ['admin_id' => 0] : ['seller_id' => $request->get('seller_id')];
Chatting::create($chatting);
if ($request['shop_id'] != 0) {
$seller = Seller::find($request->seller_id);
ChattingEvent::dispatch('message_from_customer', 'seller', $seller, $message_form);
}
}
elseif ($request->has('delivery_man_id'))
{
Chatting::create([
'user_id' => auth('customer')->id(),
'delivery_man_id' => $request->delivery_man_id,
'message' => $request->message,
'attachment' => json_encode($image),
'sent_by_customer' => 1,
'seen_by_customer' => 1,
'seen_by_delivery_man' => 0,
'created_at' => now(),
]);
$delivery_man = DeliveryMan::find($request->delivery_man_id);
ChattingEvent::dispatch('message_from_customer', 'delivery_man', $delivery_man, $message_form);
}
$imageArray = [];
foreach ($image as $singleImage) {
$imageArray[] = getValidImage(path: 'storage/app/public/chatting/'.$singleImage, type: 'product');
}
return response()->json(['message'=>$message,'image'=>$imageArray]);
}
}