95 lines
4.0 KiB
JavaScript
95 lines
4.0 KiB
JavaScript
$(document).ready(function () {
|
|
|
|
/* set the end time for initial event query */
|
|
startAt = $('.loader-data-time').last().data('time');
|
|
|
|
/*
|
|
* load context of chat
|
|
*/
|
|
$(document).off('click', '.client-message');
|
|
$(document).on('click', '.client-message', function (e) {
|
|
showLoader();
|
|
const location = $(this);
|
|
$('.client-message-prefix').removeClass('oi-chevron-bottom');
|
|
$('.client-message-prefix').removeClass('oi-chevron-right');
|
|
|
|
$('.client-message-prefix').addClass('oi-chevron-right');
|
|
|
|
$(this).children().filter('.client-message-prefix').removeClass('oi-chevron-right');
|
|
$(this).children().filter('.client-message-prefix').addClass('oi-chevron-bottom');
|
|
|
|
$.get('/Stats/GetMessageAsync', {
|
|
'serverId': $(this).data('serverid'),
|
|
'when': $(this).data('when')
|
|
})
|
|
.done(function (response) {
|
|
$('.client-message-context').remove();
|
|
location.after(response);
|
|
hideLoader();
|
|
})
|
|
.fail(function (jqxhr, textStatus, error) {
|
|
errorLoader();
|
|
});
|
|
});
|
|
|
|
/*
|
|
* load info on ban/flag
|
|
*/
|
|
$(document).off('click', '.automated-penalty-info-detailed');
|
|
$(document).on('click', '.automated-penalty-info-detailed', function (e) {
|
|
showLoader();
|
|
const location = $(this).parent();
|
|
$.get('/Stats/GetAutomatedPenaltyInfoAsync', {
|
|
'penaltyId': $(this).data('penalty-id')
|
|
})
|
|
.done(function (response) {
|
|
$('.penalty-info-context').remove();
|
|
location.after(response);
|
|
hideLoader();
|
|
})
|
|
.fail(function (jqxhr, textStatus, error) {
|
|
errorLoader();
|
|
});
|
|
});
|
|
|
|
/*
|
|
get ip geolocation info into modal
|
|
*/
|
|
$('.profile-ip-lookup').click(function (e) {
|
|
const ip = $(this).data("ip");
|
|
$.getJSON(`https://ipwhois.app/json/${ip}`)
|
|
.done(function (response) {
|
|
$('#contextModal .modal-title').text(ip);
|
|
const modalBody = $('#contextModal .modal-body');
|
|
modalBody.text('');
|
|
if (response.isp.length > 0) {
|
|
modalBody.append(`${_localization['WEBFRONT_PROFILE_LOOKUP_ISP']} — <span class="text-muted">${response.isp}</span><br/>`);
|
|
}
|
|
if (response.org.length > 0) {
|
|
modalBody.append(`${_localization['WEBFRONT_PROFILE_LOOKUP_ORG']} — <span class="text-muted">${response.org}</span><br/>`);
|
|
}
|
|
if (response.region.length > 0 || response.city.length > 0 || response.country.length > 0 || response.timezone_gmt.length > 0) {
|
|
modalBody.append(`${_localization['WEBFRONT_PROFILE_LOOKUP_LOCATION']} —`);
|
|
}
|
|
if (response.city.length > 0) {
|
|
modalBody.append(`<span class="text-muted">${response.city}</span>`);
|
|
}
|
|
if (response.region.length > 0) {
|
|
modalBody.append(`<span class="text-muted">${(response.region.length > 0 ? ', ' : '') + response.region}</span>`);
|
|
}
|
|
if (response.country.length > 0) {
|
|
modalBody.append(`<span class="text-muted">${(response.country.length > 0 ? ', ' : '') + response.country}</span>`);
|
|
}
|
|
if (response.timezone_gmt.length > 0) {
|
|
modalBody.append(`<br/>Timezone — <span class="text-muted">UTC${response.timezone_gmt}</span>`);
|
|
}
|
|
modalBody.append('</span>');
|
|
})
|
|
.fail(function (jqxhr, textStatus, error) {
|
|
$('#mainModal .modal-title').text("Error");
|
|
$('#mainModal .modal-body').html('<span class="text-danger">—' + error + '</span>');
|
|
$('#mainModal').modal();
|
|
});
|
|
});
|
|
});
|