egroupware/admin/js/app.js

249 lines
5.8 KiB
JavaScript
Raw Normal View History

/**
* EGroupware - Admin - Javascript UI
*
* @link http://www.egroupware.org
* @package filemanager
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @copyright (c) 2013 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
/**
* UI for Admin
*
* @augments AppJS
*/
app.classes.admin = AppJS.extend(
{
appname: 'admin',
2013-07-03 18:27:18 +02:00
/**
* reference to splitter
*/
splitter: null,
/**
* reference to splitter
*/
iframe: null,
/**
* Constructor
*
* @memberOf app.filemanager
*/
init: function()
{
// call parent
this._super.apply(this, arguments);
},
/**
* Destructor
*/
destroy: function()
{
// call parent
this._super.apply(this, arguments);
},
/**
* This function is called when the etemplate2 object is loaded
* and ready. If you must store a reference to the et2 object,
* make sure to clean it up in destroy().
*
* @param _et2 etemplate2 Newly ready object
*/
et2_ready: function(_et2)
{
// call parent
this._super.apply(this, arguments);
2013-08-01 13:44:44 +02:00
var iframe = this.iframe = this.et2.getWidgetById('iframe');
if (iframe)
2013-08-01 13:44:44 +02:00
{
var self = this;
jQuery(iframe.getDOMNode()).off('load.admin')
.bind('load.admin', function(){
self._hide_navbar.call(self);
self.splitter.dock();
self.splitter.resize();
}
);
2013-08-01 13:44:44 +02:00
}
this.splitter = this.et2.getWidgetById('splitter');
2013-07-03 18:27:18 +02:00
},
2013-08-01 13:44:44 +02:00
/**
* Hide navbar for idots template
*
2013-08-01 13:44:44 +02:00
* Just a hack for old idots, not neccesary for jdots
*/
_hide_navbar: function()
{
var document = this.iframe.getDOMNode().contentDocument;
// set white background, as transparent one lets account-list show through
document.getElementsByTagName('body')[0].style.backgroundColor = 'white';
2013-08-01 13:44:44 +02:00
// hide navbar elements
var ids2hide = ['divLogo', 'topmenu', 'divAppIconBar', 'divStatusBar', 'tdSidebox', 'divAppboxHeader'];
for(var i=0; i < ids2hide.length; ++i)
{
var elem = document.getElementById(ids2hide[i]);
if (elem) elem.style.display = 'none';
}
},
2013-07-03 18:27:18 +02:00
/**
* Set location of iframe for given _action and _sender (row)
*
2013-07-03 18:27:18 +02:00
* @param _action
* @param _senders
*/
iframe_location: function(_action, _senders)
{
var id = _senders[0].id.split('::');
var url = _action.data.url.replace(/(%24|\$)id/, id[1]);
this.iframe.set_src(url);
},
/**
* Link hander for jDots template to just reload our iframe, instead of reloading whole admin app
*
* @param _url
* @return boolean true, if linkHandler took care of link, false otherwise
*/
linkHandler: function(_url)
{
var matches;
if (!_url.match('menuaction=admin.admin_ui.index') ||
(matches = _url.match(/menuaction=admin.admin_ui.index.*&load=([^&]+)/)))
{
if (matches)
{
_url = _url.replace(/menuaction=admin.admin_ui.index/, 'menuaction='+matches[1]).replace(/&(ajax=true|load=[^&]+)/g, '');
}
this.iframe.set_src(_url);
return true;
}
// can not load our own index page, has to be done by framework
return false;
},
/**
* Run an admin module / onclick callback for tree
*
* @param string _id id of clicked node
* @param et2_tree _widget reference to tree widget
*/
run: function(_id, _widget)
{
var link = _widget.getUserData(_id, 'link');
2013-07-03 18:27:18 +02:00
if (_id == '/accounts' || _id.substr(0, 8) == '/groups/')
{
this.splitter.undock();
var parts = _id.split('/');
2013-08-01 13:44:44 +02:00
this.et2.getWidgetById('nm').applyFilters({ filter: parts[2] ? parts[2] : '', search: ''});
2013-07-03 18:27:18 +02:00
}
else if (typeof link == 'undefined')
{
_widget.openItem(_id, 'toggle');
}
else if (link[0] == '/' || link.substr(0,4) == 'http')
{
2013-07-03 18:27:18 +02:00
this.splitter.dock();
this.iframe.set_src(link+(link.match(/\?/)?'&':'?')+'nonavbar=1');
}
else if (link.substr(0,11) == 'javascript:')
{
eval(link.substr(11));
}
2013-07-31 16:01:12 +02:00
},
2013-07-31 16:01:12 +02:00
/**
* View, edit or delete a group callback for tree
*
2013-07-31 16:01:12 +02:00
* @param Object _action egwAction
* @param Object _senders egwActionObject _senders[0].id holds id
*/
group: function(_action, _senders)
{
switch(_action.id)
{
case 'view':
this.run(_senders[0].id, this.et2.getWidgetById('tree'));
break;
2013-07-31 16:01:12 +02:00
case 'edit':
case 'delete':
this.splitter.dock();
this.iframe.set_src(egw.link('/index.php', {
menuaction: _action.id == 'edit' ? 'admin.uiaccounts.edit_group' : 'admin.uiaccounts.delete_group',
2013-07-31 16:01:12 +02:00
account_id: _senders[0].id.split('/')[2]
}));
break;
2013-08-26 20:25:43 +02:00
case 'acl':
this.splitter.dock();
this.iframe.set_src(egw.link('/index.php', {
menuaction: 'admin.admin_acl.index',
2013-08-26 20:25:43 +02:00
account_id: _senders[0].id.split('/')[2]
}));
break;
2013-07-31 16:01:12 +02:00
}
},
2013-07-31 16:01:12 +02:00
/**
2013-08-27 19:58:38 +02:00
* Modify an ACL entry
*
2013-07-31 16:01:12 +02:00
* @param Object _action egwAction
* @param Object _senders egwActionObject _senders[0].id holds the id "admin::app:account:location"
2013-07-31 16:01:12 +02:00
*/
2013-08-27 19:58:38 +02:00
acl: function(_action, _senders)
2013-07-31 16:01:12 +02:00
{
2013-08-27 19:58:38 +02:00
var ids = [];
for(var i=0; i < _senders.length; ++i)
{
ids.push(_senders[i].id.substr(7)); // remove "admin::" prefix
}
switch(_action.id)
{
case 'delete':
2013-09-10 21:45:08 +02:00
var request = egw.json('admin_acl::ajax_change_acl', [ids], this._acl_callback,this,false,this)
.sendRequest();
2013-08-27 19:58:38 +02:00
break;
2013-08-27 19:58:38 +02:00
case 'edit':
// need to specify window to get correct opener, as admin has multiple windows open!
egw('admin', window).open_link(egw.link('/index.php', {
2013-08-27 19:58:38 +02:00
menuaction: 'admin.admin_acl.acl',
id: ids[0],
}), 'acl', '300x300');
break;
case 'add':
var current = ids[0].split(':');
egw('admin', window).open_link(egw.link('/index.php', {
2013-08-27 19:58:38 +02:00
menuaction: 'admin.admin_acl.acl',
app: current[0],
account: current[1]
2013-08-27 19:58:38 +02:00
}), 'acl', '250x250');
break;
}
},
2013-08-27 19:58:38 +02:00
/**
* Callback called on successfull call of serverside ACL handling
*
2013-08-27 19:58:38 +02:00
* @param string _data returned from server
*/
_acl_callback: function(_data)
{
window.egw_refresh(_data.msg, this.appname, _data.ids, _data.type);
2013-07-31 16:01:12 +02:00
},
});