mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
43 lines
951 B
JavaScript
43 lines
951 B
JavaScript
const { checkLogin } = require("../util-server");
|
|
const Database = require("../database");
|
|
|
|
/**
|
|
* Handlers for database
|
|
* @param {Socket} socket Socket.io instance
|
|
* @returns {void}
|
|
*/
|
|
module.exports = (socket) => {
|
|
|
|
// Post or edit incident
|
|
socket.on("getDatabaseSize", async (callback) => {
|
|
try {
|
|
checkLogin(socket);
|
|
callback({
|
|
ok: true,
|
|
size: Database.getSize(),
|
|
});
|
|
} catch (error) {
|
|
callback({
|
|
ok: false,
|
|
msg: error.message,
|
|
});
|
|
}
|
|
});
|
|
|
|
socket.on("shrinkDatabase", async (callback) => {
|
|
try {
|
|
checkLogin(socket);
|
|
Database.shrink();
|
|
callback({
|
|
ok: true,
|
|
});
|
|
} catch (error) {
|
|
callback({
|
|
ok: false,
|
|
msg: error.message,
|
|
});
|
|
}
|
|
});
|
|
|
|
};
|