2012-08-26 19:51:01 +04:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
|
* @author Georg Ehrke <georg@ownCloud.com>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
|
* @author opensaucesystems <ashley@opensaucesystems.com>
|
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2012-08-26 19:51:01 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
|
* @license AGPL-3.0
|
2012-08-26 19:51:01 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
2012-08-26 19:51:01 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-08-26 19:51:01 +04:00
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2012-08-26 19:51:01 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-08-26 19:51:01 +04:00
|
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
2014-12-12 19:25:03 +03:00
|
|
|
|
class OC_USER_WEBDAVAUTH extends OC_User_Backend implements \OCP\IUserBackend {
|
2012-08-26 19:51:01 +04:00
|
|
|
|
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;
|
|
|
|
|
}
|
2014-12-12 19:25:03 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Backend name to be shown in user management
|
|
|
|
|
* @return string the name of the backend to be shown
|
|
|
|
|
*/
|
|
|
|
|
public function getBackendName(){
|
|
|
|
|
return 'WebDAV';
|
|
|
|
|
}
|
2012-08-26 19:51:01 +04:00
|
|
|
|
}
|