mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-06 02:19:22 +08:00
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
|
function sendCommand(commandID, params = {}, cb = () => { }) {
|
||
|
let queryString = $.param(params);
|
||
|
let url = baseURL + '/' + commandID + '?' + queryString;
|
||
|
$.post(url, function (data) {
|
||
|
console.log(data);
|
||
|
if (data.error) return cb(data.error, undefined)
|
||
|
else return cb(false, data.message);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function showNotification(backgroundColor, text) {
|
||
|
Snackbar.show({ text, backgroundColor, pos: 'top-right', showAction: false });
|
||
|
}
|
||
|
|
||
|
function updateButton(element, commandID, additionalParams = {}) {
|
||
|
$(element).addClass('loading');
|
||
|
sendCommand(commandID, additionalParams, (error, message) => {
|
||
|
// ok, yes, i'm adding 'fake' delay, it just makes the front end nicer, okay!?
|
||
|
if (error) {
|
||
|
setTimeout(() => {
|
||
|
showNotification('#f03434', error)
|
||
|
$(element).removeClass('loading')
|
||
|
}, 300)
|
||
|
} else {
|
||
|
setTimeout(() => {
|
||
|
showNotification('#2ecc71', message);
|
||
|
$(element).removeClass('loading');
|
||
|
if (message === 'Requested') setTimeout(() => { window.location = window.location }, 200)
|
||
|
}, 300)
|
||
|
}
|
||
|
});
|
||
|
}
|