2017-03-02 18:23:23 +08:00
|
|
|
$(document).ready(function() {
|
2017-05-09 19:43:54 +08:00
|
|
|
|
2017-05-10 03:30:08 +08:00
|
|
|
// Collect values of input fields with name multi_select with same data-form-id to js array multi_data[data-form-id-of-checkbox]
|
2017-05-09 19:43:54 +08:00
|
|
|
var multi_data = [];
|
|
|
|
$(document).on('change', 'input[name=multi_select]:checkbox', function() {
|
|
|
|
if ($(this).is(':checked') && $(this).attr('data-form-id')) {
|
|
|
|
var id = $(this).data('form-id');
|
|
|
|
if (typeof multi_data[id] == "undefined") {
|
|
|
|
multi_data[id] = [];
|
|
|
|
}
|
|
|
|
multi_data[id].push($(this).val());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var id = $(this).data('form-id');
|
|
|
|
multi_data[id].splice($.inArray($(this).val(), multi_data[id]),1);
|
|
|
|
}
|
|
|
|
});
|
2017-05-10 03:30:08 +08:00
|
|
|
// Select checkbox by click on parent tr
|
2017-05-09 19:43:54 +08:00
|
|
|
$(document).on('click', 'tr', function(e) {
|
|
|
|
if (e.target.type == "checkbox") {
|
|
|
|
e.stopPropagation();
|
|
|
|
} else {
|
|
|
|
var checkbox = $(this).find(':checkbox');
|
|
|
|
checkbox.trigger('click');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
// Select or deselect all checkboxes with same data-form-id
|
|
|
|
$(document).on('click', '#toggle_multi_select_all', function(e) {
|
|
|
|
e.preventDefault();
|
2017-05-10 03:30:08 +08:00
|
|
|
var all_checkboxes = $("input[data-form-id=" + $(this).attr("data-form-id") + "]");
|
2017-05-10 05:25:23 +08:00
|
|
|
all_checkboxes.prop("checked", !all_checkboxes.prop("checked")).change();
|
2017-05-09 19:43:54 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// Draw domain admin table
|
2017-03-28 17:51:17 +08:00
|
|
|
$.ajax({
|
|
|
|
dataType: 'json',
|
2017-04-28 01:34:00 +08:00
|
|
|
url: '/api/v1/get/domain-admin/all',
|
2017-03-28 17:51:17 +08:00
|
|
|
jsonp: false,
|
|
|
|
error: function () {
|
2017-05-08 21:41:05 +08:00
|
|
|
console.log('Cannot draw domain admin table');
|
2017-03-28 17:51:17 +08:00
|
|
|
},
|
|
|
|
success: function (data) {
|
|
|
|
$.each(data, function (i, item) {
|
|
|
|
item.action = '<div class="btn-group">' +
|
|
|
|
'<a href="/edit.php?domainadmin=' + encodeURI(item.username) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +
|
|
|
|
'<a href="/delete.php?domainadmin=' + encodeURI(item.username) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +
|
|
|
|
'</div>';
|
|
|
|
});
|
|
|
|
$('#domainadminstable').footable({
|
|
|
|
"columns": [
|
|
|
|
{"sorted": true,"name":"username","title":lang.username,"style":{"width":"250px"}},
|
|
|
|
{"name":"selected_domains","title":lang.admin_domains,"breakpoints":"xs sm"},
|
|
|
|
{"name":"tfa_active","title":"TFA", "filterable": false,"style":{"maxWidth":"80px","width":"80px"}},
|
|
|
|
{"name":"active","filterable": false,"style":{"maxWidth":"80px","width":"80px"},"title":lang.active},
|
|
|
|
{"name":"action","filterable": false,"sortable": false,"style":{"text-align":"right","maxWidth":"180px","width":"180px"},"type":"html","title":lang.action,"breakpoints":"xs sm"}
|
|
|
|
],
|
|
|
|
"rows": data,
|
|
|
|
"empty": lang.empty,
|
|
|
|
"paging": {
|
|
|
|
"enabled": true,
|
|
|
|
"limit": 5,
|
|
|
|
"size": pagination_size
|
|
|
|
},
|
|
|
|
"filtering": {
|
|
|
|
"enabled": true,
|
|
|
|
"position": "left",
|
|
|
|
"placeholder": lang.filter_table
|
|
|
|
},
|
|
|
|
"sorting": {
|
|
|
|
"enabled": true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2017-05-09 19:43:54 +08:00
|
|
|
|
|
|
|
// Draw fwd hosts table
|
|
|
|
$.ajax({
|
|
|
|
dataType: 'json',
|
|
|
|
url: '/api/v1/get/fwdhost/all',
|
|
|
|
jsonp: false,
|
|
|
|
error: function () {
|
|
|
|
console.log('Cannot draw forwarding hosts table');
|
|
|
|
},
|
|
|
|
success: function (data) {
|
|
|
|
$.each(data, function (i, item) {
|
|
|
|
item.action = '<div class="btn-group">' +
|
|
|
|
'<a href="/delete.php?forwardinghost=' + encodeURI(item.host) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +
|
|
|
|
'</div>';
|
|
|
|
if (item.keep_spam == "yes") {
|
|
|
|
item.keep_spam = lang.no;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
item.keep_spam = lang.yes;
|
|
|
|
}
|
|
|
|
item.chkbox = '<input type="checkbox" data-form-id="fwdhosts" name="multi_select" value="' + item.host + '" />';
|
|
|
|
});
|
|
|
|
$('#forwardinghoststable').footable({
|
|
|
|
"columns": [
|
|
|
|
{"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px"},"filterable": false,"sortable": false,"type":"html"},
|
|
|
|
{"name":"host","type":"text","title":lang.host,"style":{"width":"250px"}},
|
|
|
|
{"name":"source","title":lang.source,"breakpoints":"xs sm"},
|
|
|
|
{"name":"keep_spam","title":lang.spamfilter, "type": "text","style":{"maxWidth":"80px","width":"80px"}},
|
|
|
|
{"name":"action","filterable": false,"sortable": false,"style":{"text-align":"right","maxWidth":"180px","width":"180px"},"type":"html","title":lang.action,"breakpoints":"xs sm"}
|
|
|
|
],
|
|
|
|
"rows": data,
|
|
|
|
"empty": lang.empty,
|
|
|
|
"paging": {
|
|
|
|
"enabled": true,
|
|
|
|
"limit": 5,
|
|
|
|
"size": pagination_size
|
|
|
|
},
|
|
|
|
"sorting": {
|
|
|
|
"enabled": true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).on('click', '#delete_fwdhosts', function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var id = $(this).closest("form").attr('data-id');
|
|
|
|
if (typeof multi_data[id] == "undefined") return;
|
|
|
|
data_array = multi_data[id];
|
|
|
|
if (Object.keys(data_array).length !== 0) {
|
|
|
|
$(document).on('show.bs.modal','#ConfirmDeleteModal', function () {
|
|
|
|
$("#ItemsToDelete").empty();
|
|
|
|
for (var i in data_array) {
|
|
|
|
$("#ItemsToDelete").append("<li>" + data_array[i] + "</li>");
|
|
|
|
}
|
|
|
|
})
|
|
|
|
$('#ConfirmDeleteModal').modal({
|
|
|
|
backdrop: 'static',
|
|
|
|
keyboard: false
|
|
|
|
})
|
|
|
|
.one('click', '#IsConfirmed', function(e) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
dataType: "json",
|
|
|
|
data: { "forwardinghost": JSON.stringify(data_array) },
|
|
|
|
url: '/api/v1/delete/fwdhost',
|
|
|
|
jsonp: false,
|
|
|
|
complete: function (data) {
|
2017-05-10 03:30:08 +08:00
|
|
|
window.location.href = window.location.href;
|
2017-05-09 19:43:54 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.one('click', '#isCanceled', function(e) {
|
|
|
|
$('#ConfirmDeleteModal').modal('hide');
|
|
|
|
});;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-05-10 03:30:08 +08:00
|
|
|
$(document).on('click', '#delete_dkim_key', function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var dkim_domain = $(this).data('dkim-domain');
|
|
|
|
var dkim_selector = $(this).data('dkim-selector');
|
|
|
|
$(document).on('show.bs.modal','#ConfirmDeleteModal', function () {
|
|
|
|
$("#ItemsToDelete").empty();
|
|
|
|
$("#ItemsToDelete").append("<li>" + dkim_domain + ", " + dkim_selector + "</li>");
|
|
|
|
})
|
|
|
|
$('#ConfirmDeleteModal').modal({
|
|
|
|
backdrop: 'static',
|
|
|
|
keyboard: false
|
|
|
|
})
|
|
|
|
.one('click', '#IsConfirmed', function(e) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
dataType: "json",
|
|
|
|
data: { "domains": JSON.stringify(dkim_domain) },
|
|
|
|
url: '/api/v1/delete/dkim',
|
|
|
|
jsonp: false,
|
|
|
|
complete: function (data) {
|
2017-05-10 05:25:23 +08:00
|
|
|
mailcow_alert_box("warn", "asd");
|
2017-05-10 03:30:08 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.one('click', '#isCanceled', function(e) {
|
|
|
|
$('#ConfirmDeleteModal').modal('hide');
|
|
|
|
});;
|
|
|
|
});
|
|
|
|
|
2017-05-08 06:27:35 +08:00
|
|
|
$("#refresh_dovecot_log").on('click', function(e) {
|
|
|
|
function unix_time_format(tm) {
|
|
|
|
var date = new Date(tm ? tm * 1000 : 0);
|
|
|
|
return date.toLocaleString();
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
if (typeof ft_dovecot_logs != 'undefined') {
|
|
|
|
ft_dovecot_logs.destroy();
|
|
|
|
}
|
|
|
|
$.ajax({
|
|
|
|
dataType: 'json',
|
|
|
|
url: '/api/v1/get/logs/dovecot/1000',
|
|
|
|
jsonp: false,
|
|
|
|
error: function () {
|
2017-05-08 21:41:05 +08:00
|
|
|
console.log('Cannot draw dovecot log table');
|
2017-05-07 05:52:40 +08:00
|
|
|
},
|
2017-05-08 06:27:35 +08:00
|
|
|
success: function (data) {
|
|
|
|
$.each(data, function (i, item) {
|
|
|
|
var danger_class = ["emerg", "alert", "crit"];
|
|
|
|
var warning_class = ["warning"];
|
|
|
|
var info_class = ["notice", "info", "debug"];
|
|
|
|
if (jQuery.inArray(item.priority, danger_class) !== -1) {
|
|
|
|
item.priority = '<span class="label label-danger">' + item.priority + '</span>';
|
|
|
|
}
|
|
|
|
else if (jQuery.inArray(item.priority, warning_class) !== -1) {
|
|
|
|
item.priority = '<span class="label label-warning">' + item.priority + '</span>';
|
|
|
|
}
|
|
|
|
else if (jQuery.inArray(item.priority, info_class) !== -1) {
|
|
|
|
item.priority = '<span class="label label-info">' + item.priority + '</span>';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ft_dovecot_logs = FooTable.init("#dovecot_log", {
|
|
|
|
"columns": [
|
|
|
|
{"name":"time","formatter":function unix_time_format(tm) {var date = new Date(tm ? tm * 1000 : 0); return date.toLocaleString();},"title":lang.time,"style":{"width":"170px"}},
|
|
|
|
{"name":"priority","title":lang.priority,"style":{"width":"80px"}},
|
|
|
|
{"name":"message","title":lang.message},
|
|
|
|
],
|
|
|
|
"rows": data,
|
|
|
|
"empty": lang.empty,
|
|
|
|
"paging": {
|
|
|
|
"enabled": true,
|
|
|
|
"limit": 5,
|
|
|
|
"size": pagination_size
|
|
|
|
},
|
|
|
|
"filtering": {
|
|
|
|
"enabled": true,
|
|
|
|
"position": "left",
|
|
|
|
"placeholder": lang.filter_table
|
|
|
|
},
|
|
|
|
"sorting": {
|
|
|
|
"enabled": true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$("#refresh_postfix_log").on('click', function(e) {
|
|
|
|
function unix_time_format(tm) {
|
|
|
|
var date = new Date(tm ? tm * 1000 : 0);
|
|
|
|
return date.toLocaleString();
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
if (typeof ft_postfix_logs != 'undefined') {
|
|
|
|
ft_postfix_logs.destroy();
|
|
|
|
}
|
|
|
|
$.ajax({
|
|
|
|
dataType: 'json',
|
|
|
|
url: '/api/v1/get/logs/postfix/1000',
|
|
|
|
jsonp: false,
|
|
|
|
error: function () {
|
2017-05-08 21:41:05 +08:00
|
|
|
console.log('Cannot draw postfix log table');
|
2017-05-07 05:52:40 +08:00
|
|
|
},
|
2017-05-08 06:27:35 +08:00
|
|
|
success: function (data) {
|
|
|
|
$.each(data, function (i, item) {
|
|
|
|
var danger_class = ["emerg", "alert", "crit"];
|
|
|
|
var warning_class = ["warning"];
|
|
|
|
var info_class = ["notice", "info", "debug"];
|
|
|
|
if (jQuery.inArray(item.priority, danger_class) !== -1) {
|
|
|
|
item.priority = '<span class="label label-danger">' + item.priority + '</span>';
|
|
|
|
}
|
|
|
|
else if (jQuery.inArray(item.priority, warning_class) !== -1) {
|
|
|
|
item.priority = '<span class="label label-warning">' + item.priority + '</span>';
|
|
|
|
}
|
|
|
|
else if (jQuery.inArray(item.priority, info_class) !== -1) {
|
|
|
|
item.priority = '<span class="label label-info">' + item.priority + '</span>';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ft_postfix_logs = FooTable.init("#postfix_log", {
|
|
|
|
"columns": [
|
2017-05-08 21:41:05 +08:00
|
|
|
{"name":"time","formatter":function unix_time_format(tm) { var date = new Date(tm ? tm * 1000 : 0); return date.toLocaleString();},"title":lang.time,"style":{"width":"170px"}},
|
2017-05-08 06:27:35 +08:00
|
|
|
{"name":"priority","title":lang.priority,"style":{"width":"80px"}},
|
|
|
|
{"name":"message","title":lang.message},
|
|
|
|
],
|
|
|
|
"rows": data,
|
|
|
|
"empty": lang.empty,
|
|
|
|
"paging": {
|
|
|
|
"enabled": true,
|
|
|
|
"limit": 5,
|
|
|
|
"size": pagination_size
|
|
|
|
},
|
|
|
|
"filtering": {
|
|
|
|
"enabled": true,
|
|
|
|
"position": "left",
|
|
|
|
"placeholder": lang.filter_table
|
|
|
|
},
|
|
|
|
"sorting": {
|
|
|
|
"enabled": true
|
|
|
|
}
|
|
|
|
});
|
2017-05-07 05:52:40 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2017-05-08 06:27:35 +08:00
|
|
|
$("#refresh_dovecot_log").trigger('click');
|
|
|
|
$("#refresh_postfix_log").trigger('click');
|
2017-03-02 18:23:23 +08:00
|
|
|
});
|