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-08-26 19:51:01 +04:00
|
|
|
|
public function createUser() {
|
|
|
|
|
// Can't create user
|
2012-11-02 22:53:02 +04:00
|
|
|
|
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to create users from web frontend using WebDAV user backend', 3);
|
2012-08-26 19:51:01 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
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 ) {
|
|
|
|
|
$url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url;
|
|
|
|
|
$headers = get_headers($url);
|
2012-09-07 17:22:01 +04:00
|
|
|
|
if($headers==false) {
|
2012-10-23 10:35:54 +04:00
|
|
|
|
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ', 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);
|
|
|
|
|
|
2012-11-20 16:44:49 +04:00
|
|
|
|
if(($returncode=='401') or ($returncode=='403')) {
|
2012-11-05 13:46:28 +04:00
|
|
|
|
return(false);
|
2012-08-26 19:51:01 +04:00
|
|
|
|
}else{
|
2012-11-05 13:46:28 +04:00
|
|
|
|
return($uid);
|
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
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|