2011-08-23 16:29:56 +02:00
|
|
|
/**
|
|
|
|
* EGroupware clientside API object
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Andreas Stöckel (as AT stylite.de)
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2012-03-01 17:24:29 +01:00
|
|
|
/*egw:uses
|
|
|
|
egw_core;
|
2012-03-05 16:02:00 +01:00
|
|
|
egw_debug;
|
2012-03-01 17:24:29 +01:00
|
|
|
egw_preferences;
|
|
|
|
egw_lang;
|
|
|
|
egw_links;
|
2012-03-28 14:37:03 +02:00
|
|
|
egw_open;
|
2012-03-01 17:24:29 +01:00
|
|
|
egw_user;
|
|
|
|
egw_config;
|
|
|
|
egw_images;
|
|
|
|
egw_jsonq;
|
2012-03-05 14:07:38 +01:00
|
|
|
egw_files;
|
2012-03-05 16:02:00 +01:00
|
|
|
egw_json;
|
2013-10-05 11:28:12 +02:00
|
|
|
egw_store;
|
2012-03-06 14:22:01 +01:00
|
|
|
egw_tooltip;
|
2012-03-07 15:04:25 +01:00
|
|
|
egw_css;
|
2012-03-08 12:29:46 +01:00
|
|
|
egw_calendar;
|
2012-03-09 16:32:29 +01:00
|
|
|
egw_ready;
|
2012-03-20 13:05:31 +01:00
|
|
|
egw_data;
|
2014-01-27 15:29:24 +01:00
|
|
|
egw_tail;
|
2013-04-09 10:45:59 +02:00
|
|
|
egw_inheritance;
|
2014-02-06 16:42:33 +01:00
|
|
|
egw_message;
|
2013-04-09 10:45:59 +02:00
|
|
|
app_base;
|
2012-03-01 17:24:29 +01:00
|
|
|
*/
|
2011-08-23 16:29:56 +02:00
|
|
|
|
2013-07-19 10:45:26 +02:00
|
|
|
(function(){
|
|
|
|
var debug = false;
|
|
|
|
var egw_script = document.getElementById('egw_script_id');
|
2014-01-09 13:20:13 +01:00
|
|
|
var start_time = (new Date).getTime();
|
2014-01-10 10:13:56 +01:00
|
|
|
if(console.timeline) console.timeline("egw");
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2013-10-07 12:09:08 +02:00
|
|
|
// Flag for if this is opened in a popup
|
2013-12-19 18:18:01 +01:00
|
|
|
var popup = (window.opener != null);
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2013-07-19 10:45:26 +02:00
|
|
|
window.egw_webserverUrl = egw_script.getAttribute('data-url');
|
|
|
|
window.egw_appName = egw_script.getAttribute('data-app');
|
|
|
|
|
|
|
|
// check if egw object was injected by window open
|
|
|
|
if (typeof window.egw == 'undefined')
|
|
|
|
{
|
2014-01-08 16:14:10 +01:00
|
|
|
try {
|
|
|
|
// try finding it in top or opener's top
|
|
|
|
if (window.opener && typeof window.opener.top.egw != 'undefined')
|
|
|
|
{
|
|
|
|
window.egw = window.opener.top.egw;
|
|
|
|
if (typeof window.opener.top.framework != 'undefined') window.framework = window.opener.top.framework;
|
|
|
|
popup = true;
|
|
|
|
if (debug) console.log('found egw object in opener');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
// ignore SecurityError exception if opener is different security context / cross-origin
|
|
|
|
}
|
|
|
|
if (typeof window.egw != 'undefined')
|
2013-07-19 10:45:26 +02:00
|
|
|
{
|
2014-01-08 16:14:10 +01:00
|
|
|
// set in above try block
|
2013-07-19 10:45:26 +02:00
|
|
|
}
|
|
|
|
else if (window.top && typeof window.top.egw != 'undefined')
|
|
|
|
{
|
|
|
|
window.egw = window.top.egw;
|
|
|
|
if (typeof window.top.framework != 'undefined') window.framework = window.top.framework;
|
|
|
|
if (debug) console.log('found egw object in top');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window.egw = {
|
|
|
|
prefsOnly: true,
|
|
|
|
webserverUrl: egw_webserverUrl
|
|
|
|
};
|
|
|
|
if (debug) console.log('creating new egw object');
|
|
|
|
}
|
|
|
|
}
|
2013-07-19 17:22:37 +02:00
|
|
|
else if (debug) console.log('found injected egw object');
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2013-07-19 10:45:26 +02:00
|
|
|
// check for a framework object
|
|
|
|
if (typeof window.framework == 'undefined')
|
|
|
|
{
|
2014-01-08 16:19:04 +01:00
|
|
|
try {
|
|
|
|
// try finding it in top or opener's top
|
|
|
|
if (window.opener && typeof window.opener.top.framework != 'undefined')
|
|
|
|
{
|
|
|
|
window.framework = window.opener.top.framework;
|
|
|
|
if (debug) console.log('found framework object in opener top');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
// ignore SecurityError exception if opener is different security context / cross-origin
|
|
|
|
}
|
|
|
|
if (typeof window.framework != 'undefined')
|
2013-07-19 10:45:26 +02:00
|
|
|
{
|
2014-01-08 16:19:04 +01:00
|
|
|
// set in above try block
|
2013-07-19 10:45:26 +02:00
|
|
|
}
|
|
|
|
else if (window.top && typeof window.top.framework != 'undefined')
|
|
|
|
{
|
|
|
|
window.framework = window.top.framework;
|
|
|
|
if (debug) console.log('found framework object in top');
|
|
|
|
}
|
|
|
|
// if framework not found, but requested to check for it, redirect to cd=yes to create it
|
|
|
|
else if (egw_script.getAttribute('data-check-framework'))
|
|
|
|
{
|
|
|
|
window.location.search += window.location.search ? "&cd=yes" : "?cd=yes";
|
|
|
|
}
|
|
|
|
}
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2014-02-19 16:08:38 +01:00
|
|
|
// call egw.link_handler, if attr specified
|
|
|
|
var egw_redirect = egw_script.getAttribute('data-egw-redirect');
|
|
|
|
if (egw_redirect)
|
|
|
|
{
|
|
|
|
// set sidebox for tabed templates, we need to set it now, as framework will not resent it!
|
|
|
|
var sidebox = egw_script.getAttribute('data-setSidebox');
|
|
|
|
if (window.framework && sidebox)
|
|
|
|
{
|
|
|
|
window.framework.setSidebox.apply(window.framework, JSON.parse(sidebox));
|
|
|
|
}
|
|
|
|
egw_redirect = JSON.parse(egw_redirect);
|
|
|
|
egw.link_handler.apply(egw, egw_redirect);
|
|
|
|
return; // do NOT execute any further code, as IE(11) will give errors because framework already redirects
|
|
|
|
}
|
|
|
|
|
2013-08-20 15:25:36 +02:00
|
|
|
// call egw_refresh on opener, if attr specified
|
|
|
|
var refresh_opener = egw_script.getAttribute('data-refresh-opener');
|
|
|
|
if (refresh_opener && window.opener)
|
|
|
|
{
|
|
|
|
refresh_opener = JSON.parse(refresh_opener) || {};
|
|
|
|
window.opener.egw_refresh.apply(window.opener, refresh_opener);
|
|
|
|
}
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2013-08-20 15:25:36 +02:00
|
|
|
// close window / call window.close(), if data-window-close is specified
|
|
|
|
var window_close = egw_script.getAttribute('data-window-close');
|
2013-08-26 12:24:11 +02:00
|
|
|
if (window_close)
|
2013-08-20 15:25:36 +02:00
|
|
|
{
|
2013-08-27 18:49:57 +02:00
|
|
|
if (typeof window_close == 'string' && window_close !== '1')
|
2013-08-26 12:24:11 +02:00
|
|
|
{
|
|
|
|
alert(window_close);
|
2013-11-05 19:08:07 +01:00
|
|
|
}
|
2014-01-15 15:40:42 +01:00
|
|
|
// If there's a message & opener, set it
|
|
|
|
if(window.opener && egw_script.getAttribute('data-message'))
|
|
|
|
{
|
2014-02-06 16:42:33 +01:00
|
|
|
egw(window.opener).message(JSON.parse(egw_script.getAttribute('data-message')));
|
2014-01-15 15:40:42 +01:00
|
|
|
}
|
2013-08-20 15:25:36 +02:00
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
|
2013-08-26 12:24:11 +02:00
|
|
|
// focus window / call window.focus(), if data-window-focus is specified
|
2013-08-20 15:25:36 +02:00
|
|
|
var window_focus = egw_script.getAttribute('data-window-focus');
|
|
|
|
if (window_focus && JSON.parse(window_focus))
|
|
|
|
{
|
|
|
|
window.focus();
|
|
|
|
}
|
2013-07-19 10:45:26 +02:00
|
|
|
|
|
|
|
window.egw_LAB = $LAB.setOptions({AlwaysPreserveOrder:true,BasePath:window.egw_webserverUrl+'/'});
|
|
|
|
var include = JSON.parse(egw_script.getAttribute('data-include'));
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2013-07-19 10:45:26 +02:00
|
|
|
// remove this script from include, until server-side no longer requires it
|
|
|
|
for(var i=0; i < include.length; ++i)
|
|
|
|
{
|
|
|
|
if (include[i].match(/^phpgwapi\/js\/jsapi\/egw\.js/))
|
|
|
|
{
|
|
|
|
include.splice(i, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-01-09 13:20:13 +01:00
|
|
|
|
2013-11-05 19:08:07 +01:00
|
|
|
window.egw_LAB.script(include).wait(function()
|
|
|
|
{
|
2014-01-10 10:13:56 +01:00
|
|
|
if(console.timelineEnd) console.timelineEnd("egw");
|
2014-01-09 13:20:13 +01:00
|
|
|
var end_time = (new Date).getTime();
|
|
|
|
var gen_time_div = $j('#divGenTime_'+window.egw_appName);
|
|
|
|
if (!gen_time_div.length) gen_time_div = $j('.pageGenTime');
|
|
|
|
gen_time_div.append('<span class="asyncIncludeTime">'+egw.lang('async includes took %1s', (end_time-start_time)/1000)+'</span>');
|
|
|
|
|
2013-10-10 11:37:21 +02:00
|
|
|
// Make sure opener knows when we close - start a heartbeat
|
|
|
|
if((popup || window.opener) && window.name != '')
|
2013-10-07 12:09:08 +02:00
|
|
|
{
|
2013-10-10 11:37:21 +02:00
|
|
|
// Timeout is 5 seconds, but it iks only applied(egw_utils) when something asks for the window list
|
|
|
|
window.setInterval(function() {
|
|
|
|
egw().storeWindow(this.egw_appName, this);
|
|
|
|
}, 2000);
|
2013-10-07 12:09:08 +02:00
|
|
|
}
|
2013-11-05 19:08:07 +01:00
|
|
|
|
|
|
|
// instanciate app object
|
|
|
|
var appname = window.egw_appName;
|
|
|
|
if (window.app && window.app[appname] != 'object' && typeof window.app.classes[appname] == 'function')
|
|
|
|
{
|
|
|
|
window.app[appname] = new window.app.classes[appname]();
|
|
|
|
}
|
|
|
|
|
2013-11-29 00:18:36 +01:00
|
|
|
// set sidebox for tabed templates
|
2014-02-21 18:06:11 +01:00
|
|
|
var sidebox = egw_script.getAttribute('data-setSidebox') || jQuery('#late-sidebox').attr('data-setSidebox');
|
2013-11-29 00:18:36 +01:00
|
|
|
if (window.framework && sidebox)
|
|
|
|
{
|
|
|
|
window.framework.setSidebox.apply(window.framework, JSON.parse(sidebox));
|
|
|
|
}
|
|
|
|
|
2014-03-10 12:58:49 +01:00
|
|
|
// load etemplate2 template(s)
|
|
|
|
$j('div.et2_container[data-etemplate]').each(function(index, node){
|
|
|
|
var data = JSON.parse(node.getAttribute('data-etemplate')) || {};
|
|
|
|
var currentapp = data.data.currentapp || window.egw_appName;
|
|
|
|
if(popup || window.opener)
|
2013-07-20 15:42:23 +02:00
|
|
|
{
|
2014-03-10 12:58:49 +01:00
|
|
|
// Resize popup when et2 load is done
|
|
|
|
jQuery(node).one("load",function() {
|
|
|
|
window.resizeTo(jQuery(document).width()+20,jQuery(document).height()+70);
|
|
|
|
});
|
2013-07-20 15:42:23 +02:00
|
|
|
}
|
2014-03-10 12:58:49 +01:00
|
|
|
var et2 = new etemplate2(node, currentapp+".etemplate_new.ajax_process_content.etemplate");
|
|
|
|
et2.load(data.name,data.url,data.data);
|
|
|
|
});
|
|
|
|
|
2014-01-10 10:13:56 +01:00
|
|
|
$j(function() {
|
|
|
|
// set app-header
|
2014-02-06 16:42:33 +01:00
|
|
|
if (window.framework && egw_script.getAttribute('data-app-header'))
|
2013-07-20 15:42:23 +02:00
|
|
|
{
|
2014-02-07 10:11:30 +01:00
|
|
|
egw(window).app_header(egw_script.getAttribute('data-app-header'), appname);
|
2013-07-20 15:42:23 +02:00
|
|
|
}
|
2014-01-10 10:13:56 +01:00
|
|
|
// display a message
|
2014-02-06 16:42:33 +01:00
|
|
|
if (egw_script.getAttribute('data-message'))
|
2013-07-20 15:42:23 +02:00
|
|
|
{
|
2014-02-06 16:42:33 +01:00
|
|
|
egw(window).message(JSON.parse(egw_script.getAttribute('data-message')));
|
2013-07-19 10:45:26 +02:00
|
|
|
}
|
2014-03-03 18:35:48 +01:00
|
|
|
// hide location bar for mobile browsers
|
|
|
|
if (egw_script.getAttribute('data-mobile'))
|
|
|
|
{
|
|
|
|
window.scrollTo(0, 1);
|
|
|
|
}
|
2014-01-10 10:13:56 +01:00
|
|
|
});
|
2013-07-19 10:45:26 +02:00
|
|
|
});
|
2013-11-05 19:08:07 +01:00
|
|
|
|
2013-08-20 20:01:49 +02:00
|
|
|
/**
|
2013-11-05 19:08:07 +01:00
|
|
|
*
|
2013-08-20 20:01:49 +02:00
|
|
|
*/
|
|
|
|
window.callManual = function()
|
|
|
|
{
|
|
|
|
if (window.framework)
|
|
|
|
{
|
|
|
|
window.framework.callManual.call(window.framework, window.location.href);
|
|
|
|
}
|
|
|
|
};
|
2013-07-19 10:45:26 +02:00
|
|
|
})();
|