mirror of https://github.com/Fabio286/antares.git
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
import * as antares from 'common/interfaces/antares';
|
|
import { ipcMain } from 'electron';
|
|
|
|
import { validateSender } from '../libs/misc/validateSender';
|
|
|
|
export default (connections: Record<string, antares.Client>) => {
|
|
ipcMain.handle('get-view-informations', async (event, params) => {
|
|
if (!validateSender(event.senderFrame)) return { status: 'error', response: 'Unauthorized process' };
|
|
|
|
try {
|
|
const result = await connections[params.uid].getViewInformations(params);
|
|
return { status: 'success', response: result };
|
|
}
|
|
catch (err) {
|
|
return { status: 'error', response: err.toString() };
|
|
}
|
|
});
|
|
|
|
ipcMain.handle('drop-view', async (event, params) => {
|
|
if (!validateSender(event.senderFrame)) return { status: 'error', response: 'Unauthorized process' };
|
|
|
|
try {
|
|
await connections[params.uid].dropView(params);
|
|
return { status: 'success' };
|
|
}
|
|
catch (err) {
|
|
return { status: 'error', response: err.toString() };
|
|
}
|
|
});
|
|
|
|
ipcMain.handle('alter-view', async (event, params) => {
|
|
if (!validateSender(event.senderFrame)) return { status: 'error', response: 'Unauthorized process' };
|
|
|
|
try {
|
|
await connections[params.uid].alterView(params);
|
|
return { status: 'success' };
|
|
}
|
|
catch (err) {
|
|
return { status: 'error', response: err.toString() };
|
|
}
|
|
});
|
|
|
|
ipcMain.handle('create-view', async (event, params) => {
|
|
if (!validateSender(event.senderFrame)) return { status: 'error', response: 'Unauthorized process' };
|
|
|
|
try {
|
|
await connections[params.uid].createView(params);
|
|
return { status: 'success' };
|
|
}
|
|
catch (err) {
|
|
return { status: 'error', response: err.toString() };
|
|
}
|
|
});
|
|
};
|