Blame view

sources/apps/user_ldap/group_proxy.php 5.82 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?php
  
  /**
   * ownCloud
   *
   * @author Artuhr Schiwon
   * @copyright 2013 Arthur Schiwon blizzz@owncloud.com
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library 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 library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  namespace OCA\user_ldap;
31b7f2792   Kload   Upgrade to ownclo...
25
  use OCA\user_ldap\lib\ILDAPWrapper;
03e52840d   Kload   Init
26
27
28
29
30
  class Group_Proxy extends lib\Proxy implements \OCP\GroupInterface {
  	private $backends = array();
  	private $refBackend = null;
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
31
32
  	 * Constructor
  	 * @param string[] $serverConfigPrefixes array containing the config Prefixes
03e52840d   Kload   Init
33
  	 */
31b7f2792   Kload   Upgrade to ownclo...
34
35
  	public function __construct($serverConfigPrefixes, ILDAPWrapper $ldap) {
  		parent::__construct($ldap);
03e52840d   Kload   Init
36
  		foreach($serverConfigPrefixes as $configPrefix) {
6d9380f96   Cédric Dupont   Update sources OC...
37
  			$this->backends[$configPrefix] =
31b7f2792   Kload   Upgrade to ownclo...
38
  				new \OCA\user_ldap\GROUP_LDAP($this->getAccess($configPrefix));
03e52840d   Kload   Init
39
40
41
42
43
44
45
  			if(is_null($this->refBackend)) {
  				$this->refBackend = &$this->backends[$configPrefix];
  			}
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
46
47
48
49
  	 * Tries the backends one after the other until a positive result is returned from the specified method
  	 * @param string $gid the gid connected to the request
  	 * @param string $method the method of the group backend that shall be called
  	 * @param array $parameters an array of parameters to be passed
03e52840d   Kload   Init
50
51
52
53
54
  	 * @return mixed, the result of the method or false
  	 */
  	protected function walkBackends($gid, $method, $parameters) {
  		$cacheKey = $this->getGroupCacheKey($gid);
  		foreach($this->backends as $configPrefix => $backend) {
6d9380f96   Cédric Dupont   Update sources OC...
55
  			if($result = call_user_func_array(array($backend, $method), $parameters)) {
03e52840d   Kload   Init
56
57
  				$this->writeToCache($cacheKey, $configPrefix);
  				return $result;
6d9380f96   Cédric Dupont   Update sources OC...
58
  			}
03e52840d   Kload   Init
59
60
61
62
63
  		}
  		return false;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
64
65
66
67
68
  	 * Asks the backend connected to the server that supposely takes care of the gid from the request.
  	 * @param string $gid the gid connected to the request
  	 * @param string $method the method of the group backend that shall be called
  	 * @param array $parameters an array of parameters to be passed
  	 * @param mixed $passOnWhen the result matches this variable
03e52840d   Kload   Init
69
70
  	 * @return mixed, the result of the method or false
  	 */
31b7f2792   Kload   Upgrade to ownclo...
71
  	protected function callOnLastSeenOn($gid, $method, $parameters, $passOnWhen) {
03e52840d   Kload   Init
72
73
74
75
76
77
  		$cacheKey = $this->getGroupCacheKey($gid);;
  		$prefix = $this->getFromCache($cacheKey);
  		//in case the uid has been found in the past, try this stored connection first
  		if(!is_null($prefix)) {
  			if(isset($this->backends[$prefix])) {
  				$result = call_user_func_array(array($this->backends[$prefix], $method), $parameters);
31b7f2792   Kload   Upgrade to ownclo...
78
  				if($result === $passOnWhen) {
03e52840d   Kload   Init
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  					//not found here, reset cache to null if group vanished
  					//because sometimes methods return false with a reason
  					$groupExists = call_user_func_array(
  						array($this->backends[$prefix], 'groupExists'),
  						array($gid)
  					);
  					if(!$groupExists) {
  						$this->writeToCache($cacheKey, null);
  					}
  				}
  				return $result;
  			}
  		}
  		return false;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
96
97
98
99
  	 * is user in group?
  	 * @param string $uid uid of the user
  	 * @param string $gid gid of the group
  	 * @return bool
03e52840d   Kload   Init
100
101
102
103
104
105
106
107
  	 *
  	 * Checks whether the user is member of a group or not.
  	 */
  	public function inGroup($uid, $gid) {
  		return $this->handleRequest($gid, 'inGroup', array($uid, $gid));
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
108
109
110
  	 * Get all groups a user belongs to
  	 * @param string $uid Name of the user
  	 * @return string[] with group names
03e52840d   Kload   Init
111
112
113
114
115
116
117
118
  	 *
  	 * This function fetches all groups a user belongs to. It does not check
  	 * if the user exists at all.
  	 */
  	public function getUserGroups($uid) {
  		$groups = array();
  
  		foreach($this->backends as $backend) {
6d9380f96   Cédric Dupont   Update sources OC...
119
  			$backendGroups = $backend->getUserGroups($uid);
03e52840d   Kload   Init
120
121
122
123
124
125
126
127
128
  			if (is_array($backendGroups)) {
  				$groups = array_merge($groups, $backendGroups);
  			}
  		}
  
  		return $groups;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
129
130
  	 * get a list of all users in a group
  	 * @return string[] with user ids
03e52840d   Kload   Init
131
132
133
134
135
  	 */
  	public function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) {
  		$users = array();
  
  		foreach($this->backends as $backend) {
6d9380f96   Cédric Dupont   Update sources OC...
136
  			$backendUsers = $backend->usersInGroup($gid, $search, $limit, $offset);
03e52840d   Kload   Init
137
138
139
140
141
142
143
144
145
  			if (is_array($backendUsers)) {
  				$users = array_merge($users, $backendUsers);
  			}
  		}
  
  		return $users;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
146
147
148
149
150
151
152
153
154
155
156
157
158
  	 * returns the number of users in a group, who match the search term
  	 * @param string $gid the internal group name
  	 * @param string $search optional, a search string
  	 * @return int|bool
  	 */
  	public function countUsersInGroup($gid, $search = '') {
  		return $this->handleRequest(
  			$gid, 'countUsersInGroup', array($gid, $search));
  	}
  
  	/**
  	 * get a list of all groups
  	 * @return string[] with group names
03e52840d   Kload   Init
159
160
161
162
163
164
165
  	 *
  	 * Returns a list with all groups
  	 */
  	public function getGroups($search = '', $limit = -1, $offset = 0) {
  		$groups = array();
  
  		foreach($this->backends as $backend) {
6d9380f96   Cédric Dupont   Update sources OC...
166
  			$backendGroups = $backend->getGroups($search, $limit, $offset);
03e52840d   Kload   Init
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
  			if (is_array($backendGroups)) {
  				$groups = array_merge($groups, $backendGroups);
  			}
  		}
  
  		return $groups;
  	}
  
  	/**
  	 * check if a group exists
  	 * @param string $gid
  	 * @return bool
  	 */
  	public function groupExists($gid) {
  		return $this->handleRequest($gid, 'groupExists', array($gid));
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
185
186
187
  	 * Check if backend implements actions
  	 * @param int $actions bitwise-or'ed actions
  	 * @return boolean
03e52840d   Kload   Init
188
189
190
191
192
193
194
195
  	 *
  	 * Returns the supported actions as int to be
  	 * compared with OC_USER_BACKEND_CREATE_USER etc.
  	 */
  	public function implementsActions($actions) {
  		//it's the same across all our user backends obviously
  		return $this->refBackend->implementsActions($actions);
  	}
31b7f2792   Kload   Upgrade to ownclo...
196
  }