2020-05-14 15:21:57 +02:00
|
|
|
|
|
|
|
import { ipcMain } from 'electron';
|
2020-09-17 17:58:12 +02:00
|
|
|
import { ClientsFactory } from '../libs/ClientsFactory';
|
2020-05-14 15:21:57 +02:00
|
|
|
|
2020-08-19 16:25:42 +02:00
|
|
|
export default connections => {
|
|
|
|
ipcMain.handle('test-connection', async (event, conn) => {
|
2020-09-24 13:09:01 +02:00
|
|
|
const connection = ClientsFactory.getConnection({
|
2020-06-05 21:00:15 +02:00
|
|
|
client: conn.client,
|
2020-06-07 14:38:38 +02:00
|
|
|
params: {
|
2020-06-05 21:00:15 +02:00
|
|
|
host: conn.host,
|
|
|
|
port: +conn.port,
|
|
|
|
user: conn.user,
|
|
|
|
password: conn.password
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-09-24 13:09:01 +02:00
|
|
|
await connection.connect();
|
2020-06-07 14:38:38 +02:00
|
|
|
|
2020-05-14 15:21:57 +02:00
|
|
|
try {
|
2020-09-24 13:09:01 +02:00
|
|
|
await connection.select('1+1').run();
|
|
|
|
connection.destroy();
|
2020-05-14 15:21:57 +02:00
|
|
|
|
|
|
|
return { status: 'success' };
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
return { status: 'error', response: err };
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-08-19 16:25:42 +02:00
|
|
|
ipcMain.handle('check-connection', async (event, uid) => {
|
2020-05-14 15:21:57 +02:00
|
|
|
return uid in connections;
|
|
|
|
});
|
|
|
|
|
|
|
|
ipcMain.handle('connect', async (event, conn) => {
|
2020-09-24 13:09:01 +02:00
|
|
|
const connection = ClientsFactory.getConnection({
|
2020-05-14 15:21:57 +02:00
|
|
|
client: conn.client,
|
2020-06-07 14:38:38 +02:00
|
|
|
params: {
|
2020-05-14 15:21:57 +02:00
|
|
|
host: conn.host,
|
|
|
|
port: +conn.port,
|
|
|
|
user: conn.user,
|
|
|
|
password: conn.password
|
2020-10-01 15:08:35 +02:00
|
|
|
},
|
|
|
|
poolSize: 1
|
2020-05-14 15:21:57 +02:00
|
|
|
});
|
|
|
|
|
2020-05-17 19:34:56 +02:00
|
|
|
try {
|
2020-09-24 13:09:01 +02:00
|
|
|
await connection.connect();
|
2020-06-15 18:23:51 +02:00
|
|
|
|
2020-09-27 19:06:13 +02:00
|
|
|
const structure = await connection.getStructure();
|
2020-09-24 13:09:01 +02:00
|
|
|
|
|
|
|
connections[conn.uid] = connection;
|
2020-09-19 18:10:57 +02:00
|
|
|
|
2020-05-20 18:00:14 +02:00
|
|
|
return { status: 'success', response: structure };
|
2020-05-17 19:34:56 +02:00
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
return { status: 'error', response: err.toString() };
|
|
|
|
}
|
2020-05-14 15:21:57 +02:00
|
|
|
});
|
2020-05-18 18:06:32 +02:00
|
|
|
|
|
|
|
ipcMain.handle('disconnect', (event, uid) => {
|
|
|
|
connections[uid].destroy();
|
|
|
|
delete connections[uid];
|
|
|
|
});
|
2020-05-14 15:21:57 +02:00
|
|
|
};
|