Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F8200342
PrincipalBackend.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
8 KB
Referenced Files
None
Subscribers
None
PrincipalBackend.php
View Options
<?php
/**
* SabreDAV Principals Backend implementation for Kolab.
*
* @author Thomas Bruederli <bruederli@kolabsys.com>
*
* Copyright (C) 2013, 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/>.
*/
namespace
Kolab\DAVACL
;
use
\rcube
;
use
\rcube_utils
;
use
\libcalendaring
;
use
\kolab_storage
;
use
Sabre\DAV\Exception
;
use
Sabre\DAV\URLUtil
;
use
Kolab\DAV\Auth\HTTPBasic
;
/**
* Kolab Principal Backend
*/
class
PrincipalBackend
extends
\Sabre\DAVACL\PrincipalBackend\AbstractBackend
implements
\Sabre\DAVACL\PrincipalBackend\BackendInterface
{
/**
* Sets up the backend.
*/
public
function
__construct
()
{
}
/**
* Returns a pricipal record for the currently authenticated user
*/
public
function
getCurrentUser
()
{
// console(__METHOD__, HTTPBasic::$current_user);
if
(
HTTPBasic
::
$current_user
)
{
$user_email
=
rcube
::
get_instance
()->
get_user_email
();
$emails
=
libcalendaring
::
get_instance
()->
get_user_emails
();
return
array
(
'uri'
=>
'principals/'
.
HTTPBasic
::
$current_user
,
'{DAV:}displayname'
=>
HTTPBasic
::
$current_user
,
'{http://sabredav.org/ns}email-address'
=>
$user_email
,
'{DAV:}alternate-URI-set'
=>
array_map
(
function
(
$email
)
{
return
'mailto:'
.
$email
;
},
$emails
),
);
}
return
false
;
}
/**
* Returns a list of principals based on a prefix.
*
* This prefix will often contain something like 'principals'. You are only
* expected to return principals that are in this base path.
*
* You are expected to return at least a 'uri' for every user, you can
* return any additional properties if you wish so. Common properties are:
* {DAV:}displayname
* {http://sabredav.org/ns}email-address - This is a custom SabreDAV
* field that's actualy injected in a number of other properties. If
* you have an email address, use this property.
*
* @param string $prefixPath
* @return array
*/
public
function
getPrincipalsByPrefix
(
$prefixPath
)
{
console
(
__METHOD__
,
$prefixPath
);
$principals
=
array
();
if
(
$prefixPath
==
'principals'
)
{
// TODO: list users from LDAP
// we currently only advertise the authenticated user
if
(
$user
=
$this
->
getCurrentUser
())
{
$principals
[]
=
$user
;
}
}
return
$principals
;
}
/**
* Returns a specific principal, specified by it's path.
* The returned structure should be the exact same as from
* getPrincipalsByPrefix.
*
* @param string $path
* @return array
*/
public
function
getPrincipalByPath
(
$path
)
{
// console(__METHOD__, $path);
list
(
$prefix
,
$name
)
=
explode
(
'/'
,
$path
);
if
(
$prefix
==
'principals'
&&
$name
==
HTTPBasic
::
$current_user
)
{
return
$this
->
getCurrentUser
();
}
else
if
(
$prefix
==
'principals'
&&
rcube_utils
::
check_email
(
$name
,
false
))
{
list
(
$localname
,
$domain
)
=
explode
(
'@'
,
$name
);
$displayname
=
ucfirst
(
str_replace
(
'.'
,
' '
,
$localname
));
// Do a user lookup in LDAP
foreach
(
kolab_storage
::
search_users
(
$name
,
1
,
array
(
'email'
),
1
)
as
$user
)
{
$displayname
=
$user
[
'displayname'
];
}
return
array
(
'uri'
=>
$path
,
'{DAV:}displayname'
=>
$displayname
,
'{http://sabredav.org/ns}email-address'
=>
$name
,
);
}
return
null
;
}
/**
* Returns the list of members for a group-principal
*
* @param string $principal
* @return array
*/
public
function
getGroupMemberSet
(
$principal
)
{
// TODO: for now the group principal has only one member, the user itself
list
(
$prefix
,
$name
)
=
URLUtil
::
splitPath
(
$principal
);
$principal
=
$this
->
getPrincipalByPath
(
$principal
);
if
(!
$principal
)
throw
new
Exception
(
'Principal not found'
);
return
array
(
$prefix
);
}
/**
* Returns the list of groups a principal is a member of
*
* @param string $principal
* @return array
*/
public
function
getGroupMembership
(
$principal
)
{
list
(
$prefix
,
$name
)
=
URLUtil
::
splitPath
(
$principal
);
$group_membership
=
array
();
if
(
$prefix
==
'principals'
)
{
$principal
=
$this
->
getPrincipalByPath
(
$principal
);
if
(!
$principal
)
throw
new
Exception
(
'Principal not found'
);
// TODO: implement full calendar delegation (with information from LDAP kolabDelegate)
return
array
(
// Calendar delegation is not supported by our backend
//'principals/'.$name.'/calendar-proxy-read',
//'principals/'.$name.'/calendar-proxy-write',
// The addressbook groups are not supported in Sabre,
// see http://groups.google.com/group/sabredav-discuss/browse_thread/thread/ef2fa9759d55f8c#msg_5720afc11602e753
//'principals/'.$name.'/addressbook-proxy-read',
//'principals/'.$name.'/addressbook-proxy-write',
);
}
return
$group_membership
;
}
/**
* Updates the list of group members for a group principal.
*
* The principals should be passed as a list of uri's.
*
* @param string $principal
* @param array $members
* @return void
*/
public
function
setGroupMemberSet
(
$principal
,
array
$members
)
{
throw
new
Exception
(
'Setting members of the group is not supported yet'
);
}
function
updatePrincipal
(
$path
,
\Sabre\DAV\PropPatch
$propPatch
)
{
return
0
;
}
/**
* This method is used to search for principals matching a set of
* properties.
*
* This search is specifically used by RFC3744's principal-property-search
* REPORT. You should at least allow searching on
* http://sabredav.org/ns}email-address.
*
* The actual search should be a unicode-non-case-sensitive search. The
* keys in searchProperties are the WebDAV property names, while the values
* are the property values to search on.
*
* If multiple properties are being searched on, the search should be
* AND'ed.
*
* This method should simply return an array with full principal uri's.
*
* If somebody attempted to search on a property the backend does not
* support, you should simply return 0 results.
*
* @param string $prefixPath
* @param array $searchProperties
* @param string $test
* @return array
*/
function
searchPrincipals
(
$prefixPath
,
array
$searchProperties
,
$test
=
'allof'
)
{
console
(
__METHOD__
,
$prefixPath
,
$searchProperties
);
$email
=
null
;
$name
=
null
;
$results
=
array
();
$current_user
=
$this
->
getCurrentUser
();
foreach
(
$searchProperties
as
$property
=>
$value
)
{
// check search property against the current user
if
(
$current_user
[
$property
]
==
$value
)
{
$results
[]
=
$current_user
[
'uri'
];
continue
;
}
switch
(
$property
)
{
case
'{http://sabredav.org/ns}email-address'
:
$email
=
$value
;
break
;
case
'{DAV:}displayname'
:
$name
=
$value
;
break
;
default
:
// Unsupported property
return
array
();
}
}
// search users via LDAP
if
(!
empty
(
$email
)
||
!
empty
(
$name
))
{
foreach
(
kolab_storage
::
search_users
(
$email
?:
$name
,
2
,
array
(
'email'
),
10
)
as
$user
)
{
$results
[]
=
'principals/'
.
$user
[
'email'
];
}
}
return
array_unique
(
$results
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jul 9, 1:37 AM (13 h, 9 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1052488
Default Alt Text
PrincipalBackend.php (8 KB)
Attached To
Mode
R5 irony
Attached
Detach File
Event Timeline
Log In to Comment