Compare commits
3 Commits
bf055b7672
...
ranjith-de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a796a670a | ||
|
|
4577f67d0a | ||
|
|
be2151a072 |
@@ -42,7 +42,7 @@
|
||||
|
||||
<script>
|
||||
const vapidKey = "{{ config('webpush.vapid.public_key') }}";
|
||||
// const csrfToken = "{{ csrf_token() }}";
|
||||
const csrfToken = "{{ csrf_token() }}";
|
||||
|
||||
async function registerPush() {
|
||||
if (!('serviceWorker' in navigator)) return;
|
||||
@@ -57,11 +57,11 @@
|
||||
applicationServerKey: vapidKey
|
||||
});
|
||||
|
||||
await fetch('api/push/subscribe', {
|
||||
await fetch('/push/subscribe', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
// 'X-CSRF-TOKEN': csrfToken
|
||||
'X-CSRF-TOKEN': csrfToken
|
||||
},
|
||||
body: JSON.stringify(subscription)
|
||||
});
|
||||
|
||||
@@ -58,30 +58,30 @@ use App\Http\Livewire\CustomLogin;
|
||||
'keys.auth' => 'required|string',
|
||||
]);
|
||||
|
||||
// WebPushSubscription::updateOrCreate(
|
||||
// ['endpoint' => $request->endpoint],
|
||||
// [
|
||||
// 'subscribable_type' => get_class($user),
|
||||
// 'subscribable_id' => $user->id,
|
||||
// 'public_key' => $request->keys['p256dh'],
|
||||
// 'auth_token' => $request->keys['auth'],
|
||||
// 'content_encoding' => $request->contentEncoding ?? 'aesgcm',
|
||||
// ]
|
||||
// );
|
||||
|
||||
WebPushSubscription::updateOrCreate(
|
||||
['endpoint' => $request->endpoint],
|
||||
[
|
||||
'endpoint' => $request->endpoint,
|
||||
'subscribable_type' => get_class($user),
|
||||
'subscribable_id' => $user->id,
|
||||
],
|
||||
[
|
||||
'public_key' => $request->keys['p256dh'],
|
||||
'auth_token' => $request->keys['auth'],
|
||||
'content_encoding' => $request->contentEncoding ?? 'aesgcm',
|
||||
'public_key' => $request->keys['p256dh'],
|
||||
'auth_token' => $request->keys['auth'],
|
||||
'content_encoding' => $request->contentEncoding ?? 'aesgcm',
|
||||
]
|
||||
);
|
||||
|
||||
// WebPushSubscription::updateOrCreate(
|
||||
// [
|
||||
// 'endpoint' => $request->endpoint,
|
||||
// 'subscribable_type' => get_class($user),
|
||||
// 'subscribable_id' => $user->id,
|
||||
// ],
|
||||
// [
|
||||
// 'public_key' => $request->keys['p256dh'],
|
||||
// 'auth_token' => $request->keys['auth'],
|
||||
// 'content_encoding' => $request->contentEncoding ?? 'aesgcm',
|
||||
// ]
|
||||
// );
|
||||
|
||||
|
||||
return response()->json(['success' => true]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user