2012-08-26 19:51:01 +04:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ownCloud
|
|
|
|
|
*
|
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
|
|
|
|
*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class OC_USER_WEBDAVAUTH extends OC_User_Backend {
|
|
|
|
|
protected $webdavauth_url;
|
2012-08-29 10:42:49 +04:00
|
|
|
|
|
2012-08-26 19:51:01 +04:00
|
|
|
|
public function __construct() {
|
|
|
|
|
$this->webdavauth_url = OC_Config::getValue( "user_webdavauth_url" );
|
|
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
|
|
2012-11-05 13:46:28 +04:00
|
|
|
|
public function deleteUser($uid) {
|
2012-08-26 19:51:01 +04:00
|
|
|
|
// Can't delete user
|
2012-11-02 22:53:02 +04:00
|
|
|
|
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to delete users from web frontend using WebDAV user backend', 3);
|
2012-08-26 19:51:01 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setPassword ( $uid, $password ) {
|
|
|
|
|
// We can't change user password
|
2012-11-02 22:53:02 +04:00
|
|
|
|
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to change password for users from web frontend using WebDAV user backend', 3);
|
2012-08-26 19:51:01 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
|
|
2012-08-26 19:51:01 +04:00
|
|
|
|
public function checkPassword( $uid, $password ) {
|
2013-05-23 18:57:22 +04:00
|
|
|
|
$arr = explode('://', $this->webdavauth_url, 2);
|
2013-05-23 19:22:05 +04:00
|
|
|
|
if( ! isset($arr) OR count($arr) !== 2) {
|
2013-05-23 18:57:22 +04:00
|
|
|
|
OC_Log::write('OC_USER_WEBDAVAUTH', 'Invalid Url: "'.$this->webdavauth_url.'" ', 3);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
list($webdavauth_protocol, $webdavauth_url_path) = $arr;
|
|
|
|
|
$url= $webdavauth_protocol.'://'.urlencode($uid).':'.urlencode($password).'@'.$webdavauth_url_path;
|
2012-08-26 19:51:01 +04:00
|
|
|
|
$headers = get_headers($url);
|
2012-09-07 17:22:01 +04:00
|
|
|
|
if($headers==false) {
|
2013-05-23 18:57:22 +04:00
|
|
|
|
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$webdavauth_protocol.'://'.$webdavauth_url_path.'" ', 3);
|
2012-08-29 10:42:49 +04:00
|
|
|
|
return false;
|
2012-08-26 19:51:01 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
$returncode= substr($headers[0], 9, 3);
|
|
|
|
|
|
2013-06-21 16:39:04 +04:00
|
|
|
|
if(substr($returncode, 0, 1) === '2') {
|
|
|
|
|
return $uid;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
2012-08-26 19:51:01 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2012-08-29 10:42:49 +04:00
|
|
|
|
|
2012-08-26 19:51:01 +04:00
|
|
|
|
/*
|
2013-01-07 19:45:03 +04:00
|
|
|
|
* we don´t know if a user exists without the password. so we have to return true all the time
|
2012-08-26 19:51:01 +04:00
|
|
|
|
*/
|
2012-11-05 17:22:16 +04:00
|
|
|
|
public function userExists( $uid ){
|
|
|
|
|
return true;
|
2012-08-26 19:51:01 +04:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function hasUserListings() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-11-05 17:22:16 +04:00
|
|
|
|
|
2012-08-26 19:51:01 +04:00
|
|
|
|
/*
|
|
|
|
|
* we don´t know the users so all we can do it return an empty array here
|
|
|
|
|
*/
|
2012-11-05 13:46:28 +04:00
|
|
|
|
public function getUsers($search = '', $limit = 10, $offset = 0) {
|
2012-08-26 19:51:01 +04:00
|
|
|
|
$returnArray = array();
|
2012-08-29 10:42:49 +04:00
|
|
|
|
|
2012-08-26 19:51:01 +04:00
|
|
|
|
return $returnArray;
|
|
|
|
|
}
|
|
|
|
|
}
|