nextcloud/apps/user_webdavauth/user_webdavauth.php

98 lines
2.8 KiB
PHP
Raw Normal View History

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 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
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);
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
/*
* 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
}
/**
* @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
*/
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;
}
/**
* 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
}