Files
cheerstothe_season_2.0/app/Http/Controllers/APIs/Customer_API/NotificationController.php

109 lines
4.1 KiB
PHP
Raw Normal View History

2024-05-31 16:28:50 +05:30
<?php
2024-06-30 21:11:10 +05:30
namespace App\Http\Controllers\APIs\Customer_API;
2024-05-31 16:28:50 +05:30
use Illuminate\Support\Facades\Log;
2024-05-31 18:55:59 +05:30
use App\Helpers\onesignalhelper;
2024-05-31 16:28:50 +05:30
use Illuminate\Support\Facades\Validator;
use Exception;
use App\Http\Controllers\Controller;
use App\Models\IamPrincipal;
2024-05-31 18:55:59 +05:30
use App\Models\NotificationDetails;
2024-05-31 16:28:50 +05:30
use Illuminate\Http\Request;
class NotificationController extends Controller
{
2024-05-31 18:55:59 +05:30
public function getNotificationApi(Request $request)
{
try {
$token = readHeaderToken();
if ($token) {
$customerIamId = $token['sub'];
$perPage = $request->query('per_page', 10);
$page = $request->query('page', 1);
if ($customerIamId) {
2024-07-10 13:15:23 +05:30
$notificationsData = NotificationDetails::where('principal_xid', $customerIamId)->where('is_active', 1)->orderBy('id', 'Desc')->get();
2024-05-31 18:55:59 +05:30
$totalItems = $notificationsData->count();
$totalPages = ceil($totalItems / $perPage);
// Slice the collection based on the current page and items per page
$offset = ($page - 1) * $perPage;
$currentPageItems = $notificationsData->slice($offset, $perPage);
if (!empty($notificationsData)) {
return jsonResponseWithSuccessMessage(__('success.data_fetched_successfully'), $notificationsData, 200);
}
}
} else {
return jsonResponseWithErrorMessageApi(__('auth.something_went_wrong'), 500);
}
return jsonResponseWithSuccessMessage(__('success.data_fetched_successfully'), $notificationsData, 200);
} catch (\Exception $e) {
Log::error(' get Notification Controller function failed: ' . $e->getMessage());
return jsonResponseWithErrorMessage(__('auth.something_went_wrong'), 500);
}
}
public function sendNotificationApi(Request $request)
{
try {
$playerId = $request->one_signal_player_id;
$message = $request->message;
$title = $request->title;
$content_type = $request->content_type;
$imageUrl = $request->image ? $request->image : null;
$result = onesignalhelper::sendNotificationApi($playerId, $title, $message, $content_type, $imageUrl, $id = null);
return response()->json([
'message' => 'Notification Send Successfully!',
'error_code' => 0,
'status' => 200,
'result' => null,
]);
} catch (\Exception $e) {
return response()->json([
'message' => "Network Error! Please try again after sometime.",
'error_code' => 1,
'status' => 500,
'result' => null
]);
}
}
public function AlertNotificationApi(Request $request)
{
try {
$token = readHeaderToken();
if ($token) {
$iam_principal_id = $token['sub'];
$validator = Validator::make($request->all(), [
'status' => 'required|in:0,1',
]);
if ($validator->fails()) {
return jsonResponseWithErrorMessageApi($validator->errors()->first(), 400);
}
$imPrincipal = IamPrincipal::where('id', $iam_principal_id)->first();
if (!$imPrincipal) {
return jsonResponseWithErrorMessageApi(__('auth.user_not_found'), 404);
}
$imPrincipal->notification_status = $request->status;
$imPrincipal->save();
return jsonResponseWithSuccessMessage(__('auth.data_updated_successfully'), 200);
} else {
return jsonResponseWithErrorMessageApi(__('auth.user_not_found'), 409);
}
} catch (Exception $e) {
Log::error('Contact form controller function failed: ' . $e);
return jsonResponseWithErrorMessageApi(__('auth.something_went_wrong'), 500);
}
}
2024-05-31 16:28:50 +05:30
}