Blame view
sources/3rdparty/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/Mock.php
4.79 KB
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
<?php
namespace Sabre\DAVACL\PrincipalBackend;
class Mock extends AbstractBackend {
public $groupMembers = array();
public $principals;
function __construct() {
$this->principals = array(
array(
'uri' => 'principals/user1',
'{DAV:}displayname' => 'User 1',
'{http://sabredav.org/ns}email-address' => 'user1.sabredav@sabredav.org',
'{http://sabredav.org/ns}vcard-url' => 'addressbooks/user1/book1/vcard1.vcf',
),
array(
'uri' => 'principals/admin',
'{DAV:}displayname' => 'Admin',
),
array(
'uri' => 'principals/user2',
'{DAV:}displayname' => 'User 2',
'{http://sabredav.org/ns}email-address' => 'user2.sabredav@sabredav.org',
),
);
}
function getPrincipalsByPrefix($prefix) {
$prefix = trim($prefix,'/') . '/';
$return = array();
foreach($this->principals as $principal) {
if (strpos($principal['uri'], $prefix)!==0) continue;
$return[] = $principal;
}
return $return;
}
function addPrincipal(array $principal) {
$this->principals[] = $principal;
}
function getPrincipalByPath($path) {
foreach($this->getPrincipalsByPrefix('principals') as $principal) {
if ($principal['uri'] === $path) return $principal;
}
}
function searchPrincipals($prefixPath, array $searchProperties) {
$matches = array();
foreach($this->getPrincipalsByPrefix($prefixPath) as $principal) {
foreach($searchProperties as $key=>$value) {
if (!isset($principal[$key])) {
continue 2;
}
if (mb_stripos($principal[$key],$value, 0, 'UTF-8')===false) {
continue 2;
}
}
$matches[] = $principal['uri'];
}
return $matches;
}
function getGroupMemberSet($path) {
return isset($this->groupMembers[$path]) ? $this->groupMembers[$path] : array();
}
function getGroupMembership($path) {
$membership = array();
foreach($this->groupMembers as $group=>$members) {
if (in_array($path, $members)) $membership[] = $group;
}
return $membership;
}
function setGroupMemberSet($path, array $members) {
$this->groupMembers[$path] = $members;
}
/**
* Updates one ore more webdav properties on a principal.
*
* The list of mutations is supplied as an array. Each key in the array is
* a propertyname, such as {DAV:}displayname.
*
* Each value is the actual value to be updated. If a value is null, it
* must be deleted.
*
* This method should be atomic. It must either completely succeed, or
* completely fail. Success and failure can simply be returned as 'true' or
* 'false'.
*
* It is also possible to return detailed failure information. In that case
* an array such as this should be returned:
*
* array(
* 200 => array(
* '{DAV:}prop1' => null,
* ),
* 201 => array(
* '{DAV:}prop2' => null,
* ),
* 403 => array(
* '{DAV:}prop3' => null,
* ),
* 424 => array(
* '{DAV:}prop4' => null,
* ),
* );
*
* In this previous example prop1 was successfully updated or deleted, and
* prop2 was succesfully created.
*
* prop3 failed to update due to '403 Forbidden' and because of this prop4
* also could not be updated with '424 Failed dependency'.
*
* This last example was actually incorrect. While 200 and 201 could appear
* in 1 response, if there's any error (403) the other properties should
* always fail with 423 (failed dependency).
*
* But anyway, if you don't want to scratch your head over this, just
* return true or false.
*
* @param string $path
* @param array $mutations
* @return array|bool
*/
public function updatePrincipal($path, $mutations) {
$value = null;
foreach($this->principals as $principalIndex=>$value) {
if ($value['uri'] === $path) {
$principal = $value;
break;
}
}
if (!$principal) return false;
foreach($mutations as $prop=>$value) {
if (is_null($value) && isset($principal[$prop])) {
unset($principal[$prop]);
} else {
$principal[$prop] = $value;
}
}
$this->principals[$principalIndex] = $principal;
return true;
}
}
|