2011-08-26 18:27:57 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2016-04-06 21:57:40 +02:00
|
|
|
* API: loading configuratino from server
|
2011-08-26 18:27:57 +02:00
|
|
|
*
|
2016-04-06 21:57:40 +02:00
|
|
|
* Usage: /egroupware/api/config.php
|
2011-08-26 18:27:57 +02:00
|
|
|
*
|
|
|
|
* @link www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
2016-04-06 21:57:40 +02:00
|
|
|
* @package api
|
2011-08-26 18:27:57 +02:00
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2016-04-06 21:57:40 +02:00
|
|
|
use EGroupware\Api;
|
|
|
|
|
2012-03-19 09:35:47 +01:00
|
|
|
// switch evtl. set output-compression off, as we cant calculate a Content-Length header with transparent compression
|
|
|
|
ini_set('zlib.output_compression', 0);
|
|
|
|
|
2011-08-26 18:27:57 +02:00
|
|
|
$GLOBALS['egw_info'] = array(
|
|
|
|
'flags' => array(
|
2016-04-06 21:57:40 +02:00
|
|
|
'currentapp' => 'api',
|
2011-08-26 18:27:57 +02:00
|
|
|
'noheader' => true,
|
|
|
|
'nocachecontrol' => true,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
include '../header.inc.php';
|
|
|
|
|
|
|
|
// use an etag over config and link-registry
|
2016-04-06 21:57:40 +02:00
|
|
|
$config = json_encode(Api\Config::clientConfigs());
|
|
|
|
$link_registry = Api\Link::json_registry();
|
2014-01-18 18:43:15 +01:00
|
|
|
$etag = '"'.md5($config.$link_registry).'"';
|
2011-08-26 18:27:57 +02:00
|
|
|
|
2014-01-18 18:43:15 +01:00
|
|
|
// headers to allow caching, egw_framework specifies etag on url to force reload, even with Expires header
|
2016-04-06 21:57:40 +02:00
|
|
|
Api\Session::cache_control(86400); // cache for one day
|
2011-08-26 18:27:57 +02:00
|
|
|
Header('Content-Type: text/javascript; charset=utf-8');
|
|
|
|
Header('ETag: '.$etag);
|
|
|
|
|
|
|
|
// if servers send a If-None-Match header, response with 304 Not Modified, if etag matches
|
|
|
|
if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && $_SERVER['HTTP_IF_NONE_MATCH'] == $etag)
|
|
|
|
{
|
|
|
|
header("HTTP/1.1 304 Not Modified");
|
2016-04-06 21:57:40 +02:00
|
|
|
exit;
|
2011-08-26 18:27:57 +02:00
|
|
|
}
|
|
|
|
|
2021-06-05 20:39:39 +02:00
|
|
|
$content = "import './js/jsapi/egw_config.js';\n";
|
|
|
|
$content .= "import './js/jsapi/egw_links.js';\n\n";
|
2021-06-07 17:33:53 +02:00
|
|
|
$content .= 'egw.set_configs('.$config.", window.egw && window.egw.window !== window);\n";
|
|
|
|
$content .= 'egw.set_link_registry('.$link_registry.", undefined, window.egw && window.egw.window !== window);\n";
|
2012-03-19 09:35:47 +01:00
|
|
|
|
|
|
|
// we run our own gzip compression, to set a correct Content-Length of the encoded content
|
|
|
|
if (in_array('gzip', explode(',',$_SERVER['HTTP_ACCEPT_ENCODING'])) && function_exists('gzencode'))
|
|
|
|
{
|
|
|
|
$content = gzencode($content);
|
|
|
|
header('Content-Encoding: gzip');
|
|
|
|
}
|
2011-08-26 18:27:57 +02:00
|
|
|
|
|
|
|
// Content-Lenght header is important, otherwise browsers dont cache!
|
2012-03-19 09:35:47 +01:00
|
|
|
Header('Content-Length: '.bytes($content));
|
|
|
|
echo $content;
|