2012-03-05 14:07:38 +01: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 >
* /
/ * e g w : u s e s
egw _core ;
* /
2016-02-29 16:50:24 +01:00
egw . extend ( 'utils' , egw . MODULE _GLOBAL , function ( )
{
"use strict" ;
2012-03-05 14:07:38 +01:00
function json _escape _string ( input )
{
var len = input . length ;
var res = "" ;
for ( var i = 0 ; i < len ; i ++ )
{
switch ( input . charAt ( i ) )
{
case '"' :
res += '\\"' ;
break ;
case '\n' :
res += '\\n' ;
break ;
case '\r' :
res += '\\r' ;
break ;
case '\\' :
res += '\\\\' ;
break ;
case '\/' :
res += '\\/' ;
break ;
case '\b' :
res += '\\b' ;
break ;
case '\f' :
res += '\\f' ;
break ;
case '\t' :
res += '\\t' ;
break ;
default :
res += input . charAt ( i ) ;
}
}
return res ;
}
function json _encode _simple ( input )
{
switch ( input . constructor )
{
case String :
return '"' + json _escape _string ( input ) + '"' ;
case Number :
return input . toString ( ) ;
case Boolean :
return input ? 'true' : 'false' ;
default :
return null ;
}
}
function json _encode ( input )
{
if ( input == null || ! input && input . length == 0 ) return 'null' ;
var simple _res = json _encode _simple ( input ) ;
if ( simple _res == null )
{
switch ( input . constructor )
{
case Array :
var buf = [ ] ;
for ( var k in input )
{
//Filter non numeric entries
if ( ! isNaN ( k ) )
buf . push ( json _encode ( input [ k ] ) ) ;
}
return '[' + buf . join ( ',' ) + ']' ;
case Object :
var buf = [ ] ;
for ( var k in input )
{
buf . push ( json _encode _simple ( k ) + ':' + json _encode ( input [ k ] ) ) ;
}
return '{' + buf . join ( ',' ) + '}' ;
default :
switch ( typeof input )
{
case 'array' :
var buf = [ ] ;
for ( var k in input )
{
//Filter non numeric entries
if ( ! isNaN ( k ) )
buf . push ( json _encode ( input [ k ] ) ) ;
}
return '[' + buf . join ( ',' ) + ']' ;
case 'object' :
var buf = [ ] ;
for ( var k in input )
{
buf . push ( json _encode _simple ( k ) + ':' + json _encode ( input [ k ] ) ) ;
}
return '{' + buf . join ( ',' ) + '}' ;
}
return 'null' ;
}
}
else
{
return simple _res ;
}
}
2012-03-07 16:20:04 +01:00
var uid _counter = 0 ;
2012-03-05 14:07:38 +01:00
// Create the utils object which contains references to all functions
// covered by it.
2012-03-05 16:02:00 +01:00
var utils = {
ajaxUrl : function ( _menuaction ) {
2019-01-10 00:48:04 +01:00
if ( _menuaction . indexOf ( 'menuaction=' ) >= 0 )
{
return _menuaction ;
}
2012-03-05 16:02:00 +01:00
return this . webserverUrl + '/json.php?menuaction=' + _menuaction ;
2012-03-06 14:22:01 +01:00
} ,
elemWindow : function ( _elem ) {
var res =
_elem . ownerDocument . parentNode ||
_elem . ownerDocument . defaultView ;
return res ;
2012-03-07 16:20:04 +01:00
} ,
uid : function ( ) {
return ( uid _counter ++ ) . toString ( 16 ) ;
2012-03-28 15:58:18 +02:00
} ,
2012-03-05 16:02:00 +01:00
2012-03-28 15:58:18 +02:00
/ * *
* Decode encoded vfs special chars
2016-02-29 16:50:24 +01:00
*
* @ param { string } _path path to decode
* @ return { string }
2012-03-28 15:58:18 +02:00
* /
decodePath : function ( _path ) {
2019-03-21 12:46:22 +01:00
try {
return decodeURIComponent ( _path ) ;
}
catch ( e ) {
// ignore decoding errors, as they usually only mean _path is not encoded
egw . debug ( "error" , "decodePath('" + _path + "'): " + e . stack ) ;
}
return _path ;
2012-03-28 15:58:18 +02:00
} ,
2016-02-29 16:50:24 +01:00
2012-03-28 15:58:18 +02:00
/ * *
* Encode vfs special chars excluding /
2016-02-29 16:50:24 +01:00
*
* @ param { string } _path path to decode
* @ return { string }
2012-03-28 15:58:18 +02:00
* /
encodePath : function ( _path ) {
var components = _path . split ( '/' ) ;
for ( var n = 0 ; n < components . length ; n ++ )
{
components [ n ] = this . encodePathComponent ( components [ n ] ) ;
}
return components . join ( '/' ) ;
} ,
2016-02-29 16:50:24 +01:00
2012-03-28 15:58:18 +02:00
/ * *
* Encode vfs special chars removing /
2016-02-29 16:50:24 +01:00
*
2019-03-21 12:46:22 +01:00
* '%' => '%25' ,
2012-03-28 15:58:18 +02:00
* '#' => '%23' ,
* '?' => '%3F' ,
* '/' => '' , // better remove it completly
*
2016-02-29 16:50:24 +01:00
* @ param { string } _comp path to decode
* @ return { string }
2012-03-28 15:58:18 +02:00
* /
encodePathComponent : function ( _comp ) {
2019-03-21 12:46:22 +01:00
return _comp . replace ( /%/g , '%25' ) . replace ( /#/g , '%23' ) . replace ( /\?/g , '%3F' ) . replace ( /\//g , '' ) ;
2012-11-12 20:29:23 +01:00
} ,
2017-03-01 18:52:38 +01:00
/ * *
* Escape HTML special chars , just like PHP
*
* @ param { string } s String to encode
*
* @ return { string }
* /
htmlspecialchars : function ( s ) {
return s . replace ( /&/g , '&' )
. replace ( /"/g , '"' )
. replace ( /</g , '<' )
. replace ( />/g , '>' ) ;
} ,
2012-11-12 20:29:23 +01:00
/ * *
* If an element has display : none ( or a parent like that ) , it has no size .
* Use this to get its dimensions anyway .
*
* @ param element HTML element
* @ param boolOuter Pass true to get outerWidth ( ) / outerHeight ( ) instead of width ( ) / height ( )
*
* @ return Object [ w : width , h : height ]
2016-02-29 16:50:24 +01:00
*
2012-11-12 20:29:23 +01:00
* @ author Ryan Wheale
* @ see http : //www.foliotek.com/devblog/getting-the-width-of-a-hidden-element-with-jquery-using-width/
* /
getHiddenDimensions : function ( element , boolOuter ) {
2016-06-02 16:51:15 +02:00
var $item = jQuery ( element ) ;
2012-11-12 20:29:23 +01:00
var props = { position : "absolute" , visibility : "hidden" , display : "block" } ;
2012-11-27 22:32:53 +01:00
var dim = { "w" : 0 , "h" : 0 , "left" : 0 , "top" : 0 } ;
2012-11-12 20:29:23 +01:00
var $hiddenParents = $item . parents ( ) . andSelf ( ) . not ( ":visible" ) ;
var oldProps = [ ] ;
$hiddenParents . each ( function ( ) {
var old = { } ;
for ( var name in props ) {
old [ name ] = this . style [ name ] ;
}
2016-06-02 16:51:15 +02:00
jQuery ( this ) . show ( ) ;
2012-11-12 20:29:23 +01:00
oldProps . push ( old ) ;
} ) ;
dim . w = ( boolOuter === true ) ? $item . outerWidth ( ) : $item . width ( ) ;
dim . h = ( boolOuter === true ) ? $item . outerHeight ( ) : $item . height ( ) ;
2012-11-27 22:32:53 +01:00
dim . top = $item . offset ( ) . top ;
dim . left = $item . offset ( ) . left ;
2012-11-12 20:29:23 +01:00
$hiddenParents . each ( function ( i ) {
var old = oldProps [ i ] ;
for ( var name in props ) {
this . style [ name ] = old [ name ] ;
}
} ) ;
//$.log(”w: ” + dim.w + ”, h:” + dim.h)
return dim ;
2013-10-10 11:37:21 +02:00
} ,
2016-02-29 16:50:24 +01:00
2013-10-10 11:37:21 +02:00
/ * *
* Store a window ' s name in egw . store so we can have a list of open windows
2016-02-29 16:50:24 +01:00
*
2013-10-10 11:37:21 +02:00
* @ param { string } appname
* @ param { Window } popup
* /
storeWindow : function ( appname , popup )
{
2018-03-12 17:04:17 +01:00
if ( popup . opener && popup . opener . framework ) popup . opener . framework . popups _garbage _collector ( ) ;
2019-01-10 00:48:04 +01:00
2013-10-10 11:37:21 +02:00
// Don't store if it has no name
if ( ! popup . name || [ '_blank' ] . indexOf ( popup . name ) >= 0 )
{
return ;
}
var _target _app = appname || this . appName || egw _appName || 'common' ;
var open _windows = JSON . parse ( this . getSessionItem ( _target _app , 'windows' ) ) || { } ;
open _windows [ popup . name ] = Date . now ( ) ;
this . setSessionItem ( _target _app , 'windows' , JSON . stringify ( open _windows ) ) ;
2016-02-29 16:50:24 +01:00
2013-10-10 11:37:21 +02:00
// We don't want to start the timer on the popup here, because this is the function that updates the timeout, so it would set a timer each time. Timer is started in egw.js
} ,
2016-02-29 16:50:24 +01:00
2013-10-10 11:37:21 +02:00
/ * *
* Get a list of the names of open popups
2016-02-29 16:50:24 +01:00
*
2013-10-10 11:37:21 +02:00
* Using the name , you can get a reference to the popup using :
* window . open ( '' , name ) ;
* Popups that were not given a name when they were opened are not tracked .
2016-02-29 16:50:24 +01:00
*
2013-10-10 11:37:21 +02:00
* @ param { string } appname Application that owns / opened the popup
* @ param { string } regex Optionally filter names by the given regular expression
2016-02-29 16:50:24 +01:00
*
2013-10-10 11:37:21 +02:00
* @ returns { string [ ] } List of window names
* /
getOpenWindows : function ( appname , regex ) {
var open _windows = JSON . parse ( this . getSessionItem ( appname , 'windows' ) ) || { } ;
if ( typeof regex == 'undefined' )
{
return open _windows ;
}
2016-02-29 16:50:24 +01:00
var list = [ ] ;
2013-10-10 11:37:21 +02:00
var now = Date . now ( ) ;
for ( var i in open _windows )
{
// Expire old windows (5 seconds since last update)
if ( now - open _windows [ i ] > 5000 )
{
egw . windowClosed ( appname , i ) ;
continue ;
}
if ( i . match ( regex ) )
{
list . push ( i ) ;
}
}
return list ;
} ,
/ * *
* Notify egw of closing a named window , which removes it from the list
2016-02-29 16:50:24 +01:00
*
2013-10-10 11:37:21 +02:00
* @ param { String } appname
* @ param { Window | String } closed Window that was closed , or its name
* @ returns { undefined }
* /
windowClosed : function ( appname , closed ) {
var closed _name = typeof closed == "string" ? closed : closed . name ;
var closed _window = typeof closed == "string" ? null : closed ;
window . setTimeout ( function ( ) {
if ( closed _window != null && ! closed _window . closed ) return ;
2016-02-29 16:50:24 +01:00
2013-10-10 11:37:21 +02:00
var open _windows = JSON . parse ( egw ( ) . getSessionItem ( appname , 'windows' ) ) || { } ;
delete open _windows [ closed _name ] ;
egw . setSessionItem ( appname , 'windows' , JSON . stringify ( open _windows ) ) ;
} , 100 ) ;
2012-03-28 15:58:18 +02:00
}
2012-03-05 16:02:00 +01:00
} ;
2012-03-05 14:07:38 +01:00
// Check whether the browser already supports encoding JSON -- if yes, use
// its implementation, otherwise our own
if ( typeof window . JSON !== 'undefined' && typeof window . JSON . stringify !== 'undefined' )
{
utils [ "jsonEncode" ] = JSON . stringify ;
}
else
{
utils [ "jsonEncode" ] = json _encode ;
}
// Return the extension
2012-03-05 16:02:00 +01:00
return utils ;
2012-03-05 14:07:38 +01:00
} ) ;