| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 | $(document).ready(function() {  // Auto-fill domain quota when adding new domain  auto_fill_quota = function(domain) {		$.get("/api/v1/get/domain/" + domain, function(data){      var result = $.parseJSON(JSON.stringify(data));      max_new_mailbox_quota = ( result.max_new_mailbox_quota / 1048576);			if (max_new_mailbox_quota != '0') {				$("#quotaBadge").html('max. ' +  max_new_mailbox_quota + ' MiB');				$('#addInputQuota').attr({"disabled": false, "value": "", "type": "number", "max": max_new_mailbox_quota});				$('#addInputQuota').val(max_new_mailbox_quota);			}			else {				$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');				$('#addInputQuota').attr({"disabled": true, "value": "", "type": "text", "value": "n/a"});				$('#addInputQuota').val(max_new_mailbox_quota);			}		});  }	$('#addSelectDomain').on('change', function() {    auto_fill_quota($('#addSelectDomain').val());	});  auto_fill_quota($('#addSelectDomain').val());  $(".generate_password").click(function( event ) {    event.preventDefault();    var random_passwd = Math.random().toString(36).slice(-8)    $('#password').prop('type', 'text');    $('#password').val(random_passwd);    $('#password2').prop('type', 'text');    $('#password2').val(random_passwd);  });  $("#goto_null").click(function( event ) {    if ($("#goto_null").is(":checked")) {      $('#textarea_alias_goto').prop('disabled', true);    }    else {      $("#textarea_alias_goto").removeAttr('disabled');    }  });  // Log modal  $('#logModal').on('show.bs.modal', function(e) {    var logText = $(e.relatedTarget).data('log-text');    $(e.currentTarget).find('#logText').html('<pre style="background:none;font-size:11px;line-height:1.1;border:0px">' + logText + '</pre>');  });});jQuery(function($){  // http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery  var entityMap = {  '&': '&',  '<': '<',  '>': '>',  '"': '"',  "'": ''',  '/': '/',  '`': '`',  '=': '='  };  function escapeHtml(string) {    return String(string).replace(/[&<>"'`=\/]/g, function (s) {      return entityMap[s];    });  }  // http://stackoverflow.com/questions/46155/validate-email-address-in-javascript  function validateEmail(email) {    var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;    return re.test(email);  }  // Calculation human readable file sizes  function humanFileSize(bytes) {    if(Math.abs(bytes) < 1024) {        return bytes + ' B';    }    var units = ['KiB','MiB','GiB','TiB','PiB','EiB','ZiB','YiB'];    var u = -1;    do {        bytes /= 1024;        ++u;    } while(Math.abs(bytes) >= 1024 && u < units.length - 1);    return bytes.toFixed(1)+' '+units[u];  }  function unix_time_format(tm) {    var date = new Date(tm ? tm * 1000 : 0);    return date.toLocaleString();  }  function draw_domain_table() {    ft_domain_table = FooTable.init('#domain_table', {      "columns": [        {"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px"},"filterable": false,"sortable": false,"type":"html"},        {"sorted": true,"name":"domain_name","title":lang.domain,"style":{"width":"250px"}},        {"name":"aliases","title":lang.aliases,"breakpoints":"xs sm"},        {"name":"mailboxes","title":lang.mailboxes},        {"name":"quota","style":{"whiteSpace":"nowrap"},"title":lang.domain_quota,"formatter": function(value){          res = value.split("/");          return humanFileSize(res[0]) + " / " + humanFileSize(res[1]);        },        "sortValue": function(value){          res = value.split("/");          return res[0];        },        },        {"name":"max_quota_for_mbox","title":lang.mailbox_quota,"breakpoints":"xs sm"},        {"name":"backupmx","filterable": false,"style":{"maxWidth":"120px","width":"120px"},"title":lang.backup_mx,"breakpoints":"xs sm"},        {"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": $.ajax({        dataType: 'json',        url: '/api/v1/get/domain/all',        jsonp: false,        error: function (data) {          console.log('Cannot draw domain table');        },        success: function (data) {          $.each(data, function (i, item) {            item.aliases = item.aliases_in_domain + " / " + item.max_num_aliases_for_domain;            item.mailboxes = item.mboxes_in_domain + " / " + item.max_num_mboxes_for_domain;            item.quota = item.quota_used_in_domain + "/" + item.max_quota_for_domain;            item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);            item.chkbox = '<input type="checkbox" data-id="domain" name="multi_select" value="' + item.domain_name + '" />';            if (role == "admin") {              item.action = '<div class="btn-group">' +                '<a href="/edit.php?domain=' + encodeURI(item.domain_name) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +                '<a href="#" id="delete_selected" data-id="single-domain" data-api-url="delete/domain" data-item="' + encodeURI(item.domain_name) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +                '</div>';            }            else {              item.action = '<div class="btn-group">' +                '<a href="/edit.php?domain=' + encodeURI(item.domain_name) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +                '</div>';            }          });        }      }),      "empty": lang.empty,      "paging": {        "enabled": true,        "limit": 5,        "size": pagination_size      },      "filtering": {        "enabled": true,        "position": "left",        "placeholder": lang.filter_table      },      "sorting": {        "enabled": true      }    });  }  function draw_mailbox_table() {    ft_mailbox_table = FooTable.init('#mailbox_table', {      "columns": [        {"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px"},"filterable": false,"sortable": false,"type":"html"},        {"sorted": true,"name":"username","style":{"word-break":"break-all","min-width":"120px"},"title":lang.username},        {"name":"name","title":lang.fname,"style":{"word-break":"break-all","min-width":"120px"},"breakpoints":"xs sm"},        {"name":"domain","title":lang.domain,"breakpoints":"xs sm"},        {"name":"quota","style":{"whiteSpace":"nowrap"},"title":lang.domain_quota,"formatter": function(value){          res = value.split("/");          return humanFileSize(res[0]) + " / " + humanFileSize(res[1]);        },        "sortValue": function(value){          res = value.split("/");          return res[0];        },        },        {"name":"spam_aliases","filterable": false,"title":lang.spam_aliases,"breakpoints":"xs sm md"},        {"name":"in_use","filterable": false,"type":"html","title":lang.in_use},        {"name":"messages","filterable": false,"title":lang.msg_num,"breakpoints":"xs sm md"},        {"name":"active","filterable": false,"title":lang.active},        {"name":"action","filterable": false,"sortable": false,"style":{"text-align":"right","min-width":"250px"},"type":"html","title":lang.action,"breakpoints":"xs sm md"}      ],      "empty": lang.empty,      "rows": $.ajax({        dataType: 'json',        url: '/api/v1/get/mailbox/all',        jsonp: false,        error: function () {          console.log('Cannot draw mailbox table');        },        success: function (data) {          $.each(data, function (i, item) {            item.quota = item.quota_used + "/" + item.quota;            item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);            item.chkbox = '<input type="checkbox" data-id="mailbox" name="multi_select" value="' + item.username + '" />';            if (role == "admin") {            item.action = '<div class="btn-group">' +              '<a href="/edit.php?mailbox=' + encodeURI(item.username) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +              '<a href="#" id="delete_selected" data-id="single-mailbox" data-api-url="delete/mailbox" data-item="' + encodeURI(item.username) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +              '<a href="/index.php?duallogin=' + encodeURI(item.username) + '" class="btn btn-xs btn-success"><span class="glyphicon glyphicon-user"></span> Login</a>' +              '</div>';            }            else {            item.action = '<div class="btn-group">' +              '<a href="/edit.php?mailbox=' + encodeURI(item.username) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +              '<a href="#" id="delete_selected" data-id="single-mailbox" data-api-url="delete/mailbox" data-item="' + encodeURI(item.username) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +              '</div>';            }            item.in_use = '<div class="progress">' +              '<div class="progress-bar progress-bar-' + item.percent_class + ' role="progressbar" aria-valuenow="' + item.percent_in_use + '" aria-valuemin="0" aria-valuemax="100" ' +              'style="min-width:2em;width:' + item.percent_in_use + '%">' + item.percent_in_use + '%' + '</div></div>';          });        }      }),      "paging": {        "enabled": true,        "limit": 5,        "size": pagination_size      },      "filtering": {        "enabled": true,        "position": "left",        "placeholder": lang.filter_table      },      "sorting": {        "enabled": true      }    });  }  function draw_resource_table() {    ft_resource_table = FooTable.init('#resource_table', {      "columns": [        {"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px"},"filterable": false,"sortable": false,"type":"html"},        {"sorted": true,"name":"description","title":lang.description,"style":{"width":"250px"}},        {"name":"kind","title":lang.kind},        {"name":"domain","title":lang.domain,"breakpoints":"xs sm"},        {"name":"multiple_bookings","filterable": false,"style":{"maxWidth":"120px","width":"120px"},"title":lang.multiple_bookings,"breakpoints":"xs sm"},        {"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"}      ],      "empty": lang.empty,      "rows": $.ajax({        dataType: 'json',        url: '/api/v1/get/resource/all',        jsonp: false,        error: function () {          console.log('Cannot draw resource table');        },        success: function (data) {          $.each(data, function (i, item) {            item.action = '<div class="btn-group">' +              '<a href="/edit.php?resource=' + encodeURI(item.name) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +              '<a href="#" id="delete_selected" data-id="single-resource" data-api-url="delete/resource" data-item="' + encodeURI(item.name) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +              '</div>';            item.chkbox = '<input type="checkbox" data-id="resource" name="multi_select" value="' + item.name + '" />';          });        }      }),      "paging": {        "enabled": true,        "limit": 5,        "size": pagination_size      },      "filtering": {        "enabled": true,        "position": "left",        "placeholder": lang.filter_table      },      "sorting": {        "enabled": true      }    });  }  function draw_alias_table() {    ft_alias_table = FooTable.init('#alias_table', {      "columns": [        {"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px"},"filterable": false,"sortable": false,"type":"html"},        {"sorted": true,"name":"address","title":lang.alias,"style":{"width":"250px"}},        {"name":"goto","title":lang.target_address},        {"name":"domain","title":lang.domain,"breakpoints":"xs sm"},        {"name":"active","filterable": false,"style":{"maxWidth":"50px","width":"70px"},"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"}      ],      "empty": lang.empty,      "rows": $.ajax({        dataType: 'json',        url: '/api/v1/get/alias/all',        jsonp: false,        error: function () {          console.log('Cannot draw alias table');        },        success: function (data) {          $.each(data, function (i, item) {            item.action = '<div class="btn-group">' +              '<a href="/edit.php?alias=' + encodeURI(item.address) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +              '<a href="#" id="delete_selected" data-id="single-alias" data-api-url="delete/alias" data-item="' + encodeURI(item.address) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +              '</div>';            item.chkbox = '<input type="checkbox" data-id="alias" name="multi_select" value="' + item.address + '" />';            if (item.is_catch_all == 1) {              item.address = '<div class="label label-default">Catch-All</div> ' + item.address;            }            if (item.goto == "null@localhost") {              item.goto = '⤷ <span style="font-size:12px" class="glyphicon glyphicon-trash" aria-hidden="true"></span>';            }            if (item.in_primary_domain !== "") {              item.domain = "↳ " + item.domain + " (" + item.in_primary_domain + ")";            }          });        }      }),      "paging": {        "enabled": true,        "limit": 5,        "size": pagination_size      },      "filtering": {        "enabled": true,        "position": "left",        "placeholder": lang.filter_table      },      "sorting": {        "enabled": true      }    });  }  function draw_aliasdomain_table() {    ft_aliasdomain_table = FooTable.init('#aliasdomain_table', {      "columns": [        {"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px"},"filterable": false,"sortable": false,"type":"html"},        {"sorted": true,"name":"alias_domain","title":lang.alias,"style":{"width":"250px"}},        {"name":"target_domain","title":lang.target_domain},        {"name":"active","filterable": false,"style":{"maxWidth":"50px","width":"70px"},"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"}      ],      "empty": lang.empty,      "rows": $.ajax({        dataType: 'json',        url: '/api/v1/get/alias-domain/all',        jsonp: false,        error: function () {          console.log('Cannot draw alias domain table');        },        success: function (data) {          $.each(data, function (i, item) {            item.action = '<div class="btn-group">' +              '<a href="/edit.php?aliasdomain=' + encodeURI(item.alias_domain) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +              '<a href="#" id="delete_selected" data-id="single-alias-domain" data-api-url="delete/alias-domain" data-item="' + encodeURI(item.alias_domain) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +              '</div>';            item.chkbox = '<input type="checkbox" data-id="alias-domain" name="multi_select" value="' + item.alias_domain + '" />';          });        }      }),      "paging": {        "enabled": true,        "limit": 5,        "size": pagination_size      },      "filtering": {        "enabled": true,        "position": "left",        "placeholder": lang.filter_table      },      "sorting": {        "enabled": true      }    });  }  function draw_sync_job_table() {    ft_syncjob_table = FooTable.init('#sync_job_table', {      "columns": [        {"name":"chkbox","title":"","style":{"maxWidth":"40px","width":"40px","text-align":"center"},"filterable": false,"sortable": false,"type":"html"},        {"sorted": true,"name":"id","title":"ID","style":{"maxWidth":"60px","width":"60px","text-align":"center"}},        {"name":"user2","title":lang.owner},        {"name":"server_w_port","title":"Server","breakpoints":"xs"},        {"name":"mins_interval","title":lang.mins_interval,"breakpoints":"all"},        {"name":"last_run","title":lang.last_run,"breakpoints":"all"},        {"name":"log","title":"Log"},        {"name":"active","filterable": false,"style":{"maxWidth":"50px","width":"70px"},"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"}      ],      "empty": lang.empty,      "rows": $.ajax({        dataType: 'json',        url: '/api/v1/get/syncjobs/all',        jsonp: false,        error: function () {          console.log('Cannot draw sync job table');        },        success: function (data) {          $.each(data, function (i, item) {            item.log = '<a href="#logModal" data-toggle="modal" data-log-text="' + escapeHtml(item.returned_text) + '">Open logs</a>'            item.exclude = '<code>' + item.exclude + '</code>'            item.server_w_port = item.user1 + '@' + item.host1 + ':' + item.port1;            item.action = '<div class="btn-group">' +              '<a href="/edit.php?syncjob=' + item.id + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang.edit + '</a>' +              '<a href="#" id="delete_selected" data-id="single-syncjob" data-api-url="delete/syncjob" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang.remove + '</a>' +              '</div>';            item.chkbox = '<input type="checkbox" data-id="syncjob" name="multi_select" value="' + item.id + '" />';          });        }      }),      "paging": {        "enabled": true,        "limit": 5,        "size": pagination_size      },      "sorting": {        "enabled": true      }    });  }  draw_domain_table();  draw_mailbox_table();  draw_resource_table();  draw_alias_table();  draw_aliasdomain_table();  draw_sync_job_table();});
 |