allow sending push to unanswered publishers;
comment dangerous admin functions
This commit is contained in:
@ -35,6 +35,7 @@ function PwaManager({ subs }) {
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isSupported()) {
|
if (isSupported()) {
|
||||||
setNotificationPermission(Notification.permission);
|
setNotificationPermission(Notification.permission);
|
||||||
|
getSubscriptionCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle Push Notification Subscription
|
// Handle Push Notification Subscription
|
||||||
@ -77,6 +78,10 @@ function PwaManager({ subs }) {
|
|||||||
window.removeEventListener('beforeinstallprompt', handleBeforeInstallPrompt);
|
window.removeEventListener('beforeinstallprompt', handleBeforeInstallPrompt);
|
||||||
window.removeEventListener('appinstalled', handleAppInstalled);
|
window.removeEventListener('appinstalled', handleAppInstalled);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
|
||||||
@ -127,6 +132,7 @@ function PwaManager({ subs }) {
|
|||||||
throw new Error("Failed to fetch VAPID public key from server.");
|
throw new Error("Failed to fetch VAPID public key from server.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const sub = await registration.pushManager.subscribe({
|
const sub = await registration.pushManager.subscribe({
|
||||||
userVisibleOnly: true,
|
userVisibleOnly: true,
|
||||||
applicationServerKey: common.base64ToUint8Array(vapidPublicKey)
|
applicationServerKey: common.base64ToUint8Array(vapidPublicKey)
|
||||||
@ -197,6 +203,19 @@ function PwaManager({ subs }) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getSubscriptionCount = async () => {
|
||||||
|
try {
|
||||||
|
const response = await fetch('/api/notify?id=' + session.user.id, { method: 'GET' });
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error('Failed to fetch subscription data.');
|
||||||
|
}
|
||||||
|
const result = await response.json();
|
||||||
|
setSubs(result.subs);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error fetching subscription data:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// Function to request push notification permission
|
// Function to request push notification permission
|
||||||
const requestNotificationPermission = async (e) => {
|
const requestNotificationPermission = async (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@ -243,48 +262,56 @@ function PwaManager({ subs }) {
|
|||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
},
|
},
|
||||||
//sends test notification to the current subscription
|
body: JSON.stringify(
|
||||||
// body: JSON.stringify({ subscription })
|
{
|
||||||
//sends test notification to all subscriptions of this user
|
id: session.user.id,
|
||||||
body: JSON.stringify({ id: session.user.id, title: "Тестово уведомление", message: "Това е тестово уведомление" })
|
title: "Тестово уведомление",
|
||||||
|
message: "Това е тестово уведомление",
|
||||||
|
actions: [{ action: 'test', title: 'Тест', icon: '✅' },
|
||||||
|
{ action: 'close', title: 'Затвори', icon: '❌' }]
|
||||||
|
})
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
async function sendTestReminder(event: MouseEvent<HTMLButtonElement, MouseEvent>): Promise<void> {
|
// async function sendTestReminder(event: MouseEvent<HTMLButtonElement, MouseEvent>): Promise<void> {
|
||||||
event.preventDefault();
|
// event.preventDefault();
|
||||||
if (!subscription) {
|
// if (!subscription) {
|
||||||
console.error('Web push not subscribed');
|
// console.error('Web push not subscribed');
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
|
|
||||||
await fetch('/api/notify', {
|
// await fetch('/api/notify', {
|
||||||
method: 'POST',
|
// method: 'POST',
|
||||||
headers: {
|
// headers: {
|
||||||
'Content-Type': 'application/json'
|
// 'Content-Type': 'application/json'
|
||||||
},
|
// },
|
||||||
body: JSON.stringify({ broadcast: true, message: "Мили братя, искаме да ви напомним да ни изпратите вашите предпочитания за юни до 25-то число като използвате меню 'Възможности'. Ако имате проблем, моля пишете ни на 'specialnosvidetelstvanesofia@gmail.com'" })
|
// body: JSON.stringify({
|
||||||
});
|
// broadcast: true,
|
||||||
}
|
// message: "Мили братя, искаме да ви напомним да ни изпратите вашите предпочитания за юни до 25-то число като използвате меню 'Възможности'. Ако имате проблем, моля пишете ни на 'specialnosvidetelstvanesofia@gmail.com'"
|
||||||
|
// })
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
|
||||||
async function sendTestCoverMe(event: MouseEvent<HTMLButtonElement, MouseEvent>): Promise<void> {
|
// async function sendTestCoverMe(event: MouseEvent<HTMLButtonElement, MouseEvent>): Promise<void> {
|
||||||
event.preventDefault();
|
// event.preventDefault();
|
||||||
if (!subscription) {
|
// if (!subscription) {
|
||||||
console.error('Web push not subscribed');
|
// console.error('Web push not subscribed');
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
|
|
||||||
await fetch('/api/notify', {
|
// await fetch('/api/notify', {
|
||||||
method: 'POST',
|
// method: 'POST',
|
||||||
headers: {
|
// headers: {
|
||||||
'Content-Type': 'application/json'
|
// 'Content-Type': 'application/json'
|
||||||
},
|
// },
|
||||||
body: JSON.stringify({
|
// body: JSON.stringify({
|
||||||
broadcast: true, message: "Брат ТЕСТ търси заместник за 24-ти май от 10:00 ч. Можеш ли да го покриеш?",
|
// id: session.user.id,
|
||||||
//use fontawesome icons for actions
|
// message: "Брат ТЕСТ търси заместник за 24-ти май от 10:00 ч. Можеш ли да го покриеш?",
|
||||||
actions: [{ action: 'covermeaccepted', title: 'Да ', icon: '✅' }]
|
// //use fontawesome icons for actions
|
||||||
})
|
// actions: [{ action: 'covermeaccepted', title: 'Да ', icon: '✅' }]
|
||||||
});
|
// })
|
||||||
}
|
// });
|
||||||
|
// }
|
||||||
|
|
||||||
async function deleteAllSubscriptions(event: MouseEvent<HTMLButtonElement, MouseEvent>): Promise<void> {
|
async function deleteAllSubscriptions(event: MouseEvent<HTMLButtonElement, MouseEvent>): Promise<void> {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
@ -358,22 +385,22 @@ function PwaManager({ subs }) {
|
|||||||
</div>
|
</div>
|
||||||
{isAdmin &&
|
{isAdmin &&
|
||||||
<div>
|
<div>
|
||||||
<button
|
{/* <button
|
||||||
onClick={sendTestReminder}
|
onClick={sendTestReminder}
|
||||||
disabled={!isSubscribed}
|
disabled={!isSubscribed}
|
||||||
className={`text-xs py-1 px-2 rounded-full focus:outline-none transition duration-150 ease-in-out ${!isSubscribed ? 'cursor-not-allowed bg-gray-300 text-gray-500' : 'bg-yellow-500 hover:bg-yellow-600 text-white'
|
className={`text-xs py-1 px-2 rounded-full focus:outline-none transition duration-150 ease-in-out ${!isSubscribed ? 'cursor-not-allowed bg-gray-300 text-gray-500' : 'bg-yellow-500 hover:bg-yellow-600 text-white'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
Broadcast Reminder
|
Broadcast Reminder
|
||||||
</button>
|
</button> */}
|
||||||
<button
|
{/* <button
|
||||||
onClick={sendTestCoverMe}
|
onClick={sendTestCoverMe}
|
||||||
disabled={!isSubscribed}
|
disabled={!isSubscribed}
|
||||||
className={`text-xs py-1 px-2 rounded-full focus:outline-none transition duration-150 ease-in-out ${!isSubscribed ? 'cursor-not-allowed bg-gray-300 text-gray-500' : 'bg-yellow-500 hover:bg-yellow-600 text-white'
|
className={`text-xs py-1 px-2 rounded-full focus:outline-none transition duration-150 ease-in-out ${!isSubscribed ? 'cursor-not-allowed bg-gray-300 text-gray-500' : 'bg-yellow-500 hover:bg-yellow-600 text-white'
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
Broadcast CoverMe
|
Broadcast CoverMe
|
||||||
</button>
|
</button> */}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
{notificationPermission !== "granted" && (
|
{notificationPermission !== "granted" && (
|
||||||
|
@ -203,6 +203,29 @@ const SurveyForm: React.FC<SurveyFormProps> = ({ existingItem }) => {
|
|||||||
(err) => alert('Не успяхме да копираме имената: ', err)
|
(err) => alert('Не успяхме да копираме имената: ', err)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
const sendIndividualNotification = async (id, message) => {
|
||||||
|
const response = await fetch('/api/notify', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
id,
|
||||||
|
title: 'Нямаме отговор',
|
||||||
|
message: `${message}`,
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
if (response.ok) {
|
||||||
|
console.log(`Notification sent successfully to ${name}`);
|
||||||
|
} else {
|
||||||
|
console.error(`Failed to send notification to ${name}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSendNotificationsToAllUnanswered = async (message) => {
|
||||||
|
getIdsForUnanswered().forEach((id, index) => sendIndividualNotification(id, message));
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-full max-w-md mx-auto" >
|
<div className="w-full max-w-md mx-auto" >
|
||||||
@ -281,6 +304,26 @@ const SurveyForm: React.FC<SurveyFormProps> = ({ existingItem }) => {
|
|||||||
{item.messages ? item.messages.filter((message) => !message.answer).length : 0}
|
{item.messages ? item.messages.filter((message) => !message.answer).length : 0}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<button
|
||||||
|
className="mt-2 px-4 py-2 bg-blue-500 text-white rounded"
|
||||||
|
onClick={() => { handleSendNotificationsToAllUnanswered(item?.content) }}>
|
||||||
|
Подсети ВСИЧКИ неотховорили с нотификация
|
||||||
|
</button>
|
||||||
|
<div className="mt-2">
|
||||||
|
{getIdsForUnanswered().map((id) => {
|
||||||
|
const pub = pubs.find((p) => p.id === id);
|
||||||
|
const name = pub ? `${pub.firstName} ${pub.lastName}` : '???';
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
key={id}
|
||||||
|
// className="block mt-1 px-1 py-0.5 bg-orange-500 text-white rounded"
|
||||||
|
className="mt-1 px-2 py-1 bg-green-500 text-white rounded text-xs"
|
||||||
|
onClick={() => sendIndividualNotification(id, item?.content)}>
|
||||||
|
{name}
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
@ -33,19 +33,21 @@ const Notification = async (req, res) => {
|
|||||||
select: { pushSubscription: true }
|
select: { pushSubscription: true }
|
||||||
});
|
});
|
||||||
subs = Array.isArray(publisher.pushSubscription) ? publisher.pushSubscription.length : (publisher.pushSubscription ? 1 : 0);
|
subs = Array.isArray(publisher.pushSubscription) ? publisher.pushSubscription.length : (publisher.pushSubscription ? 1 : 0);
|
||||||
|
res.send({ subs })
|
||||||
res.end()
|
res.end()
|
||||||
return
|
return
|
||||||
|
} else {
|
||||||
|
// send the public key in the response headers
|
||||||
|
//res.setHeader('Content-Type', 'text/plain')
|
||||||
|
res.send({ pk: process.env.NEXT_PUBLIC_WEB_PUSH_PUBLIC_KEY, subs })
|
||||||
|
res.end()
|
||||||
}
|
}
|
||||||
// send the public key in the response headers
|
|
||||||
//res.setHeader('Content-Type', 'text/plain')
|
|
||||||
res.send({ pk: process.env.NEXT_PUBLIC_WEB_PUSH_PUBLIC_KEY, subs })
|
|
||||||
res.end()
|
|
||||||
}
|
}
|
||||||
if (req.method == 'PUT') {
|
if (req.method == 'PUT') {
|
||||||
// store the subscription object in the database
|
// store the subscription object in the database
|
||||||
// publisher.pushSubscription = subscription
|
// publisher.pushSubscription = subscription
|
||||||
const prisma = common.getPrismaClient();
|
const prisma = common.getPrismaClient();
|
||||||
const { subscription, id } = req.body
|
const { subscription, id, name } = req.body
|
||||||
const publisher = await prisma.publisher.findUnique({
|
const publisher = await prisma.publisher.findUnique({
|
||||||
where: { id },
|
where: { id },
|
||||||
select: { pushSubscription: true }
|
select: { pushSubscription: true }
|
||||||
@ -105,14 +107,19 @@ const Notification = async (req, res) => {
|
|||||||
|
|
||||||
|
|
||||||
if (req.method == 'POST') {//title = "ССС", message = "Ще получите уведомление по този начин.")
|
if (req.method == 'POST') {//title = "ССС", message = "Ще получите уведомление по този начин.")
|
||||||
const { subscription, id, broadcast, title = 'ССОМ', message = 'Ще получавате уведомления така.', actions } = req.body
|
const { subscription, id, ids, broadcast, title = 'ССОМ', message = 'Ще получавате уведомления така.', actions } = req.body
|
||||||
if (broadcast) {
|
if (broadcast) {
|
||||||
await broadcastPush(title, message, actions)
|
await broadcastPush(title, message, actions)
|
||||||
res.statusCode = 200
|
res.statusCode = 200
|
||||||
res.end()
|
res.end()
|
||||||
return
|
return
|
||||||
}
|
} else if (ids && ids.length) {
|
||||||
else if (id) {
|
console.log('Sending push notifications to publishers ', ids);
|
||||||
|
await Promise.all(ids.map(_id => sendPush(_id, title, message, actions)));
|
||||||
|
res.statusCode = 200;
|
||||||
|
res.end();
|
||||||
|
return;
|
||||||
|
} else if (id) {
|
||||||
console.log('Sending push notification to publisher ', id)
|
console.log('Sending push notification to publisher ', id)
|
||||||
await sendPush(id, title, message, actions)
|
await sendPush(id, title, message, actions)
|
||||||
res.statusCode = 200
|
res.statusCode = 200
|
||||||
|
@ -834,18 +834,25 @@ export default function CalendarPage({ initialEvents, initialShifts }) {
|
|||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
},
|
},
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
id: pub.id, message: "Тестово съобщение", title: "Това е тестово съобщение от https://sofia.mwitnessing.com", actions: [
|
id: pub.id,
|
||||||
{
|
message: "Тестово съобщение",
|
||||||
action: 'open_url',
|
title: "Това е тестово съобщение от https://sofia.mwitnessing.com",
|
||||||
title: 'Open URL',
|
actions: [
|
||||||
icon: '/images/open-url.png'
|
{ action: 'OK', title: 'OK', icon: '✅' },
|
||||||
},
|
{ action: 'close', title: 'Затвори', icon: '❌' }
|
||||||
{
|
|
||||||
action: 'dismiss',
|
|
||||||
title: 'Dismiss',
|
|
||||||
icon: '/images/dismiss.png'
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
// actions: [
|
||||||
|
// {
|
||||||
|
// title: 'Open URL',
|
||||||
|
// action: 'open_url',
|
||||||
|
// icon: '/images/open-url.png'
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: 'Dismiss',
|
||||||
|
// action: 'dismiss',
|
||||||
|
// icon: '/images/dismiss.png'
|
||||||
|
// }
|
||||||
|
// ]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}}
|
}}
|
||||||
|
Reference in New Issue
Block a user