2022-10-11 11:20:25 +00:00
|
|
|
DROP FUNCTION IF EXISTS `util`.`notification_send`;
|
|
|
|
DELIMITER $$
|
|
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `util`.`notification_send`(vNotificationName VARCHAR(255), vParams TEXT, vAuthorFk INT)
|
|
|
|
RETURNS INT
|
|
|
|
MODIFIES SQL DATA
|
|
|
|
BEGIN
|
|
|
|
/**
|
|
|
|
* Sends a notification.
|
|
|
|
*
|
|
|
|
* @param vNotificationName The notification name
|
|
|
|
* @param vParams The notification parameters formatted as JSON
|
|
|
|
* @param vAuthorFk The notification author or %NULL if there is no author
|
|
|
|
* @return The notification id
|
|
|
|
*/
|
|
|
|
|
|
|
|
INSERT INTO notificationQueue
|
2022-12-13 10:50:17 +00:00
|
|
|
SET notificationFk = vNotificationName,
|
2022-10-11 11:20:25 +00:00
|
|
|
params = vParams,
|
|
|
|
authorFk = vAuthorFk;
|
|
|
|
|
|
|
|
RETURN LAST_INSERT_ID();
|
|
|
|
END$$
|
|
|
|
DELIMITER ;
|