2016-12-10 03:39:02 +08:00
$ ( document ) . ready ( function ( ) {
$ ( '[data-toggle="tooltip"]' ) . tooltip ( ) ;
2017-03-21 15:11:06 +08:00
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 ] ;
}
2017-04-27 05:38:18 +08:00
2017-03-21 15:11:06 +08:00
$ . ajax ( {
dataType : 'json' ,
2017-04-27 05:38:18 +08:00
url : '/api/v1/get/domain/all' ,
2017-03-21 15:11:06 +08:00
jsonp : false ,
error : function ( ) {
2017-03-21 17:38:16 +08:00
alert ( 'Cannot draw domain table' ) ;
2017-03-21 15:11:06 +08:00
} ,
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 ;
2017-04-26 02:32:29 +08:00
item . quota = item . quota _used _in _domain + "/" + item . max _quota _for _domain ;
2017-03-21 15:11:06 +08:00
item . max _quota _for _mbox = humanFileSize ( item . max _quota _for _mbox ) ;
2017-03-21 21:45:49 +08:00
if ( role == "admin" ) {
2017-03-21 15:11:06 +08:00
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<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="/delete.php?domain=' + encodeURI ( item . domain _name ) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang . remove + '</a>' +
2017-03-21 15:11:06 +08:00
'</div>' ;
2017-03-21 21:45:49 +08:00
}
else {
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<a href="/edit.php?domain=' + encodeURI ( item . domain _name ) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang . edit + '</a>' +
2017-03-21 21:45:49 +08:00
'</div>' ;
}
2017-03-21 15:11:06 +08:00
} ) ;
$ ( '#domain_table' ) . footable ( {
"columns" : [
2017-03-21 17:02:23 +08:00
{ "sorted" : true , "name" : "domain_name" , "title" : lang . domain , "style" : { "width" : "250px" } } ,
{ "name" : "aliases" , "title" : lang . aliases , "breakpoints" : "xs sm" } ,
{ "name" : "mailboxes" , "title" : lang . mailboxes } ,
2017-04-26 02:32:29 +08:00
{ "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 ] ;
} ,
} ,
2017-03-21 17:38:16 +08:00
{ "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" }
2017-03-21 15:11:06 +08:00
] ,
"rows" : data ,
2017-03-21 17:02:23 +08:00
"empty" : lang . empty ,
2017-03-21 15:11:06 +08:00
"paging" : {
"enabled" : true ,
"limit" : 5 ,
2017-03-22 17:46:24 +08:00
"size" : pagination _size
2017-03-21 15:11:06 +08:00
} ,
"filtering" : {
"enabled" : true ,
2017-03-21 17:02:23 +08:00
"position" : "left" ,
2017-03-21 17:38:16 +08:00
"placeholder" : lang . filter _table
2017-03-21 15:11:06 +08:00
} ,
"sorting" : {
"enabled" : true
}
} ) ;
}
} ) ;
$ . ajax ( {
dataType : 'json' ,
2017-04-27 05:38:18 +08:00
url : '/api/v1/get/mailbox/all' ,
2017-03-21 15:11:06 +08:00
jsonp : false ,
error : function ( ) {
2017-03-21 17:38:16 +08:00
alert ( 'Cannot draw mailbox table' ) ;
2017-03-21 15:11:06 +08:00
} ,
success : function ( data ) {
$ . each ( data , function ( i , item ) {
2017-04-26 02:32:29 +08:00
item . quota = item . quota _used + "/" + item . quota ;
2017-03-21 15:11:06 +08:00
item . max _quota _for _mbox = humanFileSize ( item . max _quota _for _mbox ) ;
2017-03-21 21:45:49 +08:00
if ( role == "admin" ) {
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<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="/delete.php?mailbox=' + 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>' +
2017-03-21 21:45:49 +08:00
'</div>' ;
}
else {
2017-03-21 15:11:06 +08:00
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<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="/delete.php?mailbox=' + encodeURI ( item . username ) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang . remove + '</a>' +
2017-03-21 15:11:06 +08:00
'</div>' ;
2017-03-21 21:45:49 +08:00
}
2017-03-21 15:11:06 +08:00
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>' ;
} ) ;
$ ( '#mailbox_table' ) . footable ( {
"columns" : [
2017-05-02 01:13:46 +08:00
{ "sorted" : true , "name" : "username" , "style" : { "word-break" : "break-all" } , "title" : lang . username } ,
{ "name" : "name" , "title" : lang . fname , "style" : { "word-break" : "break-all" } , "breakpoints" : "xs sm" } ,
2017-03-21 17:38:16 +08:00
{ "name" : "domain" , "title" : lang . domain , "breakpoints" : "xs sm" } ,
2017-04-26 02:32:29 +08:00
{ "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 ] ;
} ,
} ,
2017-03-28 17:51:17 +08:00
{ "name" : "spam_aliases" , "filterable" : false , "title" : lang . spam _aliases , "breakpoints" : "xs sm md" } ,
{ "name" : "in_use" , "filterable" : false , "style" : { "whiteSpace" : "nowrap" } , "type" : "html" , "title" : lang . in _use } ,
{ "name" : "messages" , "filterable" : false , "style" : { "whiteSpace" : "nowrap" } , "title" : lang . msg _num , "breakpoints" : "xs sm md" } ,
{ "name" : "active" , "filterable" : false , "style" : { "whiteSpace" : "nowrap" } , "title" : lang . active } ,
{ "name" : "action" , "filterable" : false , "sortable" : false , "style" : { "whiteSpace" : "nowrap" , "text-align" : "right" , "width" : "290px" } , "type" : "html" , "title" : lang . action , "breakpoints" : "xs sm md" }
2017-03-21 15:11:06 +08:00
] ,
2017-03-21 17:02:23 +08:00
"empty" : lang . empty ,
2017-03-21 15:11:06 +08:00
"rows" : data ,
"paging" : {
"enabled" : true ,
"limit" : 5 ,
2017-03-22 17:46:24 +08:00
"size" : pagination _size
2017-03-21 15:11:06 +08:00
} ,
"filtering" : {
"enabled" : true ,
2017-03-21 17:02:23 +08:00
"position" : "left" ,
2017-03-21 17:38:16 +08:00
"placeholder" : lang . filter _table
2017-03-21 15:11:06 +08:00
} ,
"sorting" : {
"enabled" : true
}
} ) ;
}
} ) ;
2016-12-25 17:03:37 +08:00
2017-03-21 17:02:23 +08:00
$ . ajax ( {
dataType : 'json' ,
2017-04-27 05:38:18 +08:00
url : '/api/v1/get/resource/all' ,
2017-03-21 17:02:23 +08:00
jsonp : false ,
error : function ( ) {
2017-03-21 17:38:16 +08:00
alert ( 'Cannot draw resource table' ) ;
2017-03-21 17:02:23 +08:00
} ,
success : function ( data ) {
$ . each ( data , function ( i , item ) {
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<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="/delete.php?resource=' + encodeURI ( item . name ) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang . remove + '</a>' +
2017-03-21 17:02:23 +08:00
'</div>' ;
} ) ;
$ ( '#resources_table' ) . footable ( {
"columns" : [
{ "sorted" : true , "name" : "description" , "title" : lang . description , "style" : { "width" : "250px" } } ,
2017-03-21 17:38:16 +08:00
{ "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" }
2017-03-21 17:02:23 +08:00
] ,
"empty" : lang . empty ,
"rows" : data ,
"paging" : {
"enabled" : true ,
"limit" : 5 ,
2017-03-22 17:46:24 +08:00
"size" : pagination _size
2017-03-21 17:02:23 +08:00
} ,
"filtering" : {
"enabled" : true ,
"position" : "left" ,
2017-03-21 17:38:16 +08:00
"placeholder" : lang . filter _table
2017-03-21 17:02:23 +08:00
} ,
"sorting" : {
"enabled" : true
}
} ) ;
}
} ) ;
$ . ajax ( {
dataType : 'json' ,
2017-04-27 05:38:18 +08:00
url : '/api/v1/get/alias-domain/all' ,
2017-03-21 17:02:23 +08:00
jsonp : false ,
error : function ( ) {
2017-03-21 17:38:16 +08:00
alert ( 'Cannot draw alias domain table' ) ;
2017-03-21 17:02:23 +08:00
} ,
success : function ( data ) {
$ . each ( data , function ( i , item ) {
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<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="/delete.php?aliasdomain=' + encodeURI ( item . alias _domain ) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-trash"></span> ' + lang . remove + '</a>' +
2017-03-21 17:02:23 +08:00
'</div>' ;
} ) ;
$ ( '#aliasdomain_table' ) . footable ( {
"columns" : [
{ "sorted" : true , "name" : "alias_domain" , "title" : lang . alias , "style" : { "width" : "250px" } } ,
2017-03-21 17:38:16 +08:00
{ "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" }
2017-03-21 17:02:23 +08:00
] ,
"empty" : lang . empty ,
"rows" : data ,
"paging" : {
"enabled" : true ,
"limit" : 5 ,
2017-03-22 17:46:24 +08:00
"size" : pagination _size
2017-03-21 17:02:23 +08:00
} ,
"filtering" : {
"enabled" : true ,
"position" : "left" ,
2017-03-21 17:38:16 +08:00
"placeholder" : lang . filter _table
2017-03-21 17:02:23 +08:00
} ,
"sorting" : {
"enabled" : true
}
} ) ;
}
} ) ;
$ . ajax ( {
dataType : 'json' ,
2017-04-27 05:38:18 +08:00
url : '/api/v1/get/alias/all' ,
2017-03-21 17:02:23 +08:00
jsonp : false ,
error : function ( ) {
2017-03-21 17:38:16 +08:00
alert ( 'Cannot draw alias table' ) ;
2017-03-21 17:02:23 +08:00
} ,
success : function ( data ) {
$ . each ( data , function ( i , item ) {
item . action = '<div class="btn-group">' +
2017-03-21 21:50:58 +08:00
'<a href="/edit.php?alias=' + encodeURI ( item . address ) + '" class="btn btn-xs btn-default"><span class="glyphicon glyphicon-pencil"></span> ' + lang . edit + '</a>' +
2017-04-28 02:11:05 +08:00
'<a href="/delete.php?alias=' + encodeURI ( item . address ) + '" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-pencil"></span> ' + lang . remove + '</a>' +
2017-03-21 17:02:23 +08:00
'</div>' ;
2017-04-27 05:38:18 +08:00
item . chkbox = '<input type="checkbox" class="alias_item" name="sel_aliases" value="' + item . address + '" />' ;
2017-04-24 19:13:23 +08:00
if ( item . is _catch _all == 1 ) {
item . address = '<div class="label label-default">Catch-All</div> ' + item . address ;
}
if ( item . in _primary _domain !== "" ) {
item . domain = "↳ " + item . domain + " (" + item . in _primary _domain + ")" ;
}
2017-03-21 17:02:23 +08:00
} ) ;
2017-04-27 05:38:18 +08:00
ft _aliases = FooTable . init ( "#alias_table" , {
2017-03-21 17:02:23 +08:00
"columns" : [
2017-04-27 05:38:18 +08:00
{ "name" : "chkbox" , "title" : "" , "style" : { "maxWidth" : "40px" , "width" : "40px" } , "filterable" : false , "sortable" : false , "type" : "html" } ,
2017-03-21 17:02:23 +08:00
{ "sorted" : true , "name" : "address" , "title" : lang . alias , "style" : { "width" : "250px" } } ,
{ "name" : "goto" , "title" : lang . target _address } ,
2017-03-21 17:38:16 +08:00
{ "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" }
2017-03-21 17:02:23 +08:00
] ,
"empty" : lang . empty ,
"rows" : data ,
"paging" : {
"enabled" : true ,
"limit" : 5 ,
2017-03-24 02:43:52 +08:00
"size" : pagination _size
2017-03-21 17:02:23 +08:00
} ,
"filtering" : {
"enabled" : true ,
"position" : "left" ,
2017-03-21 17:38:16 +08:00
"placeholder" : lang . filter _table
2017-03-21 17:02:23 +08:00
} ,
"sorting" : {
"enabled" : true
}
2017-04-27 15:49:04 +08:00
} ) ;
2017-04-28 02:11:05 +08:00
var selected _aliases = [ ] ;
2017-04-27 15:49:04 +08:00
$ ( document ) . on ( 'click' , 'tr' , function ( e ) {
if ( e . target . type == "checkbox" ) {
e . stopPropagation ( ) ;
} else {
var checkbox = $ ( this ) . find ( ':checkbox' ) ;
checkbox . trigger ( 'click' ) ;
}
} ) ;
2017-04-28 02:11:05 +08:00
$ ( document ) . on ( 'change' , 'input[name=sel_aliases]:checkbox' , function ( ) {
if ( $ ( this ) . is ( ':checked' ) ) {
selected _aliases . push ( $ ( this ) . val ( ) ) ;
}
else {
selected _aliases . splice ( $ . inArray ( $ ( this ) . val ( ) , selected _aliases ) , 1 ) ;
}
2017-03-21 17:02:23 +08:00
} ) ;
2017-04-27 15:49:04 +08:00
$ ( document ) . on ( 'click' , '#select_all_aliases' , function ( e ) {
e . preventDefault ( ) ;
2017-04-28 02:11:05 +08:00
var alias _chkbxs = $ ( "input[name=sel_aliases]" ) ;
2017-04-27 15:49:04 +08:00
alias _chkbxs . prop ( "checked" , ! alias _chkbxs . prop ( "checked" ) ) . change ( ) ;
} ) ;
$ ( document ) . on ( 'click' , '#activate_selected_alias' , function ( e ) {
e . preventDefault ( ) ;
2017-04-28 02:11:05 +08:00
if ( selected _aliases . length !== 0 ) {
2017-04-27 15:49:04 +08:00
$ . ajax ( {
type : "POST" ,
dataType : "json" ,
data : { "address" : JSON . stringify ( selected _aliases ) , "active" : "1" } ,
2017-04-29 22:36:41 +08:00
url : '/api/v1/edit/alias' ,
2017-04-27 15:49:04 +08:00
jsonp : false ,
complete : function ( data ) {
location . reload ( ) ;
}
} ) ;
}
} ) ;
$ ( document ) . on ( 'click' , '#deactivate_selected_alias' , function ( e ) {
e . preventDefault ( ) ;
if ( Object . keys ( selected _aliases ) . length !== 0 ) {
$ . ajax ( {
type : "POST" ,
dataType : "json" ,
data : { "address" : JSON . stringify ( selected _aliases ) , "active" : "0" } ,
2017-04-29 22:36:41 +08:00
url : '/api/v1/edit/alias' ,
2017-04-27 15:49:04 +08:00
jsonp : false ,
complete : function ( data ) {
location . reload ( ) ;
}
} ) ;
}
} ) ;
$ ( document ) . on ( 'click' , '#delete_selected_alias' , function ( e ) {
e . preventDefault ( ) ;
if ( Object . keys ( selected _aliases ) . length !== 0 ) {
2017-04-27 17:58:20 +08:00
$ ( document ) . on ( 'show.bs.modal' , '#ConfirmDeleteModal' , function ( ) {
$ ( "#ItemsToDelete" ) . empty ( ) ;
for ( var i in selected _aliases ) {
$ ( "#ItemsToDelete" ) . append ( "<li>" + selected _aliases [ i ] + "</li>" ) ;
2017-04-27 15:49:04 +08:00
}
2017-04-27 17:58:20 +08:00
} )
$ ( '#ConfirmDeleteModal' ) . modal ( {
backdrop : 'static' ,
keyboard : false
} )
. one ( 'click' , '#IsConfirmed' , function ( e ) {
$ . ajax ( {
type : "POST" ,
dataType : "json" ,
data : { "address" : JSON . stringify ( selected _aliases ) } ,
2017-04-29 22:36:41 +08:00
url : '/api/v1/delete/alias' ,
2017-04-27 17:58:20 +08:00
jsonp : false ,
complete : function ( data ) {
location . reload ( ) ;
}
} ) ;
} )
. one ( 'click' , '#isCanceled' , function ( e ) {
$ ( '#ConfirmDeleteModal' ) . modal ( 'hide' ) ;
} ) ; ;
2017-04-27 15:49:04 +08:00
}
} ) ;
2017-03-21 17:02:23 +08:00
}
2017-04-27 15:49:04 +08:00
2017-03-21 17:02:23 +08:00
} ) ;
2016-12-10 03:39:02 +08:00
} ) ;