Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1841749
kolab_config.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
kolab_config.php
View Options
<?php
/**
* Kolab configuration storage.
*
* Plugin to use Kolab server as a configuration storage. Provides an API to handle
* configuration according to http://wiki.kolab.org/KEP:9.
*
* @version @package_version@
* @author Machniak Aleksander <machniak@kolabsys.com>
* @author Thomas Bruederli <bruederli@kolabsys.com>
*
* Copyright (C) 2011-2012, Kolab Systems AG <contact@kolabsys.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class
kolab_config
extends
rcube_plugin
{
public
$task
=
'utils'
;
private
$enabled
;
private
$default
;
private
$folders
;
private
$dicts
=
array
();
/**
* Required startup method of a Roundcube plugin
*/
public
function
init
()
{
$rcmail
=
rcube
::
get_instance
();
// Register spellchecker dictionary handlers
if
(
strtolower
(
$rcmail
->
config
->
get
(
'spellcheck_dictionary'
))
!=
'shared'
)
{
$this
->
add_hook
(
'spell_dictionary_save'
,
array
(
$this
,
'dictionary_save'
));
$this
->
add_hook
(
'spell_dictionary_get'
,
array
(
$this
,
'dictionary_get'
));
}
/*
// Register addressbook saved searches handlers
$this->add_hook('saved_search_create', array($this, 'saved_search_create'));
$this->add_hook('saved_search_delete', array($this, 'saved_search_delete'));
$this->add_hook('saved_search_list', array($this, 'saved_search_list'));
$this->add_hook('saved_search_get', array($this, 'saved_search_get'));
*/
}
/**
* Initializes config object and dependencies
*/
private
function
load
()
{
// nothing to be done here
if
(
isset
(
$this
->
folders
))
return
;
$this
->
require_plugin
(
'libkolab'
);
$this
->
folders
=
kolab_storage
::
get_folders
(
'configuration'
);
foreach
(
$this
->
folders
as
$folder
)
{
if
(
$folder
->
default
)
{
$this
->
default
=
$folder
;
break
;
}
}
// if no folder is set as default, choose the first one
if
(!
$this
->
default
)
$this
->
default
=
reset
(
$this
->
folders
);
// check if configuration folder exist
if
(
$this
->
default
&&
$this
->
default
->
name
)
{
$this
->
enabled
=
true
;
}
}
/**
* Saves spellcheck dictionary.
*
* @param array $args Hook arguments
*
* @return array Hook arguments
*/
public
function
dictionary_save
(
$args
)
{
$this
->
load
();
if
(!
$this
->
enabled
)
{
return
$args
;
}
$lang
=
$args
[
'language'
];
$dict
=
$this
->
read_dictionary
(
$lang
,
true
);
$dict
[
'type'
]
=
'dictionary'
;
$dict
[
'language'
]
=
$args
[
'language'
];
$dict
[
'e'
]
=
$args
[
'dictionary'
];
if
(
empty
(
$dict
[
'e'
]))
{
// Delete the object
$this
->
default
->
delete
(
$dict
);
}
else
{
// Update the object
$this
->
default
->
save
(
$dict
,
'configuration.dictionary'
,
$dict
[
'uid'
]);
}
$args
[
'abort'
]
=
true
;
return
$args
;
}
/**
* Returns spellcheck dictionary.
*
* @param array $args Hook arguments
*
* @return array Hook arguments
*/
public
function
dictionary_get
(
$args
)
{
$this
->
load
();
if
(!
$this
->
enabled
)
{
return
$args
;
}
$lang
=
$args
[
'language'
];
$dict
=
$this
->
read_dictionary
(
$lang
);
if
(!
empty
(
$dict
))
{
$args
[
'dictionary'
]
=
(
array
)
$dict
[
'e'
];
}
$args
[
'abort'
]
=
true
;
return
$args
;
}
/**
* Load dictionary config objects from Kolab storage
*
* @param string The language (2 chars) to load
* @param boolean Only load objects from default folder
* @return array Dictionary object as hash array
*/
private
function
read_dictionary
(
$lang
,
$default
=
false
)
{
if
(
isset
(
$this
->
dicts
[
$lang
]))
return
$this
->
dicts
[
$lang
];
$query
=
array
(
array
(
'type'
,
'='
,
'dictionary'
),
array
(
'tags'
,
'='
,
$lang
));
foreach
(
$this
->
folders
as
$folder
)
{
// we only want to read from default folder
if
(
$default
&&
!
$folder
->
default
)
continue
;
foreach
(
$folder
->
select
(
$query
)
as
$object
)
{
if
(
$object
[
'type'
]
==
'dictionary'
&&
(
$object
[
'language'
]
==
$lang
||
$object
[
'language'
]
==
'XX'
))
{
if
(
is_array
(
$this
->
dicts
[
$lang
]))
$this
->
dicts
[
$lang
][
'e'
]
=
array_merge
((
array
)
$this
->
dicts
[
$lang
][
'e'
],
$object
[
'e'
]);
else
$this
->
dicts
[
$lang
]
=
$object
;
// make sure the default object is cached
if
(
$folder
->
default
&&
$object
[
'language'
]
!=
'XX'
)
{
$object
[
'e'
]
=
$this
->
dicts
[
$lang
][
'e'
];
$this
->
dicts
[
$lang
]
=
$object
;
}
}
}
}
return
$this
->
dicts
[
$lang
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Aug 25, 3:45 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
242734
Default Alt Text
kolab_config.php (5 KB)
Attached To
Mode
R14 roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline
Log In to Comment