Blame view

sources/apps/user_ldap/user_proxy.php 7 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
31
32
33
  class User_Proxy extends lib\Proxy implements \OCP\UserInterface {
  	private $backends = array();
  	private $refBackend = null;
  
  	/**
  	 * @brief Constructor
  	 * @param $serverConfigPrefixes array containing the config Prefixes
  	 */
31b7f2792   Kload   Upgrade to ownclo...
34
35
  	public function __construct($serverConfigPrefixes, ILDAPWrapper $ldap) {
  		parent::__construct($ldap);
03e52840d   Kload   Init
36
  		foreach($serverConfigPrefixes as $configPrefix) {
31b7f2792   Kload   Upgrade to ownclo...
37
38
  		    $this->backends[$configPrefix] =
  				new \OCA\user_ldap\USER_LDAP($this->getAccess($configPrefix));
03e52840d   Kload   Init
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  			if(is_null($this->refBackend)) {
  				$this->refBackend = &$this->backends[$configPrefix];
  			}
  		}
  	}
  
  	/**
  	 * @brief Tries the backends one after the other until a positive result is returned from the specified method
  	 * @param $uid string, the uid connected to the request
  	 * @param $method string, the method of the user backend that shall be called
  	 * @param $parameters an array of parameters to be passed
  	 * @return mixed, the result of the method or false
  	 */
  	protected  function walkBackends($uid, $method, $parameters) {
  		$cacheKey = $this->getUserCacheKey($uid);
  		foreach($this->backends as $configPrefix => $backend) {
a293d369c   Kload   Update sources to...
55
56
57
58
59
60
  			$instance = $backend;
  			if(!method_exists($instance, $method)
  				&& method_exists($this->getAccess($configPrefix), $method)) {
  				$instance = $this->getAccess($configPrefix);
  			}
  			if($result = call_user_func_array(array($instance, $method), $parameters)) {
03e52840d   Kload   Init
61
62
  				$this->writeToCache($cacheKey, $configPrefix);
  				return $result;
a293d369c   Kload   Update sources to...
63
  			}
03e52840d   Kload   Init
64
65
66
67
68
69
70
71
72
  		}
  		return false;
  	}
  
  	/**
  	 * @brief Asks the backend connected to the server that supposely takes care of the uid from the request.
  	 * @param $uid string, the uid connected to the request
  	 * @param $method string, the method of the user backend that shall be called
  	 * @param $parameters an array of parameters to be passed
31b7f2792   Kload   Upgrade to ownclo...
73
  	 * @param $passOnWhen the result matches this variable
03e52840d   Kload   Init
74
75
  	 * @return mixed, the result of the method or false
  	 */
31b7f2792   Kload   Upgrade to ownclo...
76
  	protected  function callOnLastSeenOn($uid, $method, $parameters, $passOnWhen) {
03e52840d   Kload   Init
77
78
79
80
81
  		$cacheKey = $this->getUserCacheKey($uid);
  		$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])) {
a293d369c   Kload   Update sources to...
82
83
84
85
86
87
  				$instance = $this->backends[$prefix];
  				if(!method_exists($instance, $method)
  					&& method_exists($this->getAccess($prefix), $method)) {
  					$instance = $this->getAccess($prefix);
  				}
  				$result = call_user_func_array(array($instance, $method), $parameters);
31b7f2792   Kload   Upgrade to ownclo...
88
  				if($result === $passOnWhen) {
03e52840d   Kload   Init
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
  					//not found here, reset cache to null if user vanished
  					//because sometimes methods return false with a reason
  					$userExists = call_user_func_array(
  						array($this->backends[$prefix], 'userExists'),
  						array($uid)
  					);
  					if(!$userExists) {
  						$this->writeToCache($cacheKey, null);
  					}
  				}
  				return $result;
  			}
  		}
  		return false;
  	}
  
  	/**
  	 * @brief Check if backend implements actions
  	 * @param $actions bitwise-or'ed actions
  	 * @returns boolean
  	 *
  	 * 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);
  	}
  
  	/**
  	 * @brief Get a list of all users
  	 * @returns array with all uids
  	 *
  	 * Get a list of all users.
  	 */
  	public function getUsers($search = '', $limit = 10, $offset = 0) {
  		//we do it just as the /OC_User implementation: do not play around with limit and offset but ask all backends
  		$users = array();
  		foreach($this->backends as $backend) {
  			$backendUsers = $backend->getUsers($search, $limit, $offset);
  			if (is_array($backendUsers)) {
  				$users = array_merge($users, $backendUsers);
  			}
  		}
  		return $users;
  	}
  
  	/**
  	 * @brief check if a user exists
  	 * @param string $uid the username
  	 * @return boolean
  	 */
  	public function userExists($uid) {
  		return $this->handleRequest($uid, 'userExists', array($uid));
  	}
  
  	/**
  	 * @brief Check if the password is correct
  	 * @param $uid The username
  	 * @param $password The password
  	 * @returns true/false
  	 *
  	 * Check if the password is correct without logging in the user
  	 */
  	public function checkPassword($uid, $password) {
  		return $this->handleRequest($uid, 'checkPassword', array($uid, $password));
  	}
  
  	/**
  	 * @brief get the user's home directory
  	 * @param string $uid the username
  	 * @return boolean
  	 */
  	public function getHome($uid) {
  		return $this->handleRequest($uid, 'getHome', array($uid));
  	}
  
  	/**
  	 * @brief get display name of the user
  	 * @param $uid user ID of the user
  	 * @return display name
  	 */
  	public function getDisplayName($uid) {
  		return $this->handleRequest($uid, 'getDisplayName', array($uid));
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
176
177
178
179
180
181
182
183
184
  	 * @brief checks whether the user is allowed to change his avatar in ownCloud
  	 * @param $uid string the ownCloud user name
  	 * @return boolean either the user can or cannot
  	 */
  	public function canChangeAvatar($uid) {
  		return $this->handleRequest($uid, 'canChangeAvatar', array($uid), true);
  	}
  
  	/**
03e52840d   Kload   Init
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
  	 * @brief Get a list of all display names
  	 * @returns array with  all displayNames (value) and the corresponding uids (key)
  	 *
  	 * Get a list of all display names and user ids.
  	 */
  	public function getDisplayNames($search = '', $limit = null, $offset = null) {
  		//we do it just as the /OC_User implementation: do not play around with limit and offset but ask all backends
  		$users = array();
  		foreach($this->backends as $backend) {
  			$backendUsers = $backend->getDisplayNames($search, $limit, $offset);
  			if (is_array($backendUsers)) {
  				$users = $users + $backendUsers;
  			}
  		}
  		return $users;
  	}
  
  	/**
  	 * @brief delete a user
  	 * @param $uid The username of the user to delete
  	 * @returns true/false
  	 *
  	 * Deletes a user
  	 */
  	public function deleteUser($uid) {
  		return false;
  	}
  
  	/**
  	 * @return bool
  	 */
  	public function hasUserListings() {
  		return $this->refBackend->hasUserListings();
  	}
a293d369c   Kload   Update sources to...
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  	/**
  	 * @brief Count the number of users
  	 * @returns int | bool
  	 */
  	public function countUsers() {
  		$users = false;
  		foreach($this->backends as $backend) {
  			$backendUsers = $backend->countUsers();
  			if ($backendUsers !== false) {
  				$users += $backendUsers;
  			}
  		}
  		return $users;
  	}
31b7f2792   Kload   Upgrade to ownclo...
233
  }