nextcloud/lib/private/user/http.php

125 lines
3.3 KiB
PHP
Raw Normal View History

2012-06-03 04:50:34 +04:00
<?php
/**
2015-02-23 13:28:53 +03:00
* @author Arthur Schiwon <blizzz@owncloud.com>
* @author Bart Visscher <bartv@thisnet.nl>
* @author Christopher Schäpers <kondou@ts.unde.re>
* @author Felix Moeller <mail@felixmoeller.de>
* @author Georg Ehrke <georg@owncloud.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* 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.
*
* This program 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, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
2012-06-03 04:50:34 +04:00
*/
class OC_User_HTTP extends OC_User_Backend implements \OCP\IUserBackend {
2012-06-03 04:50:34 +04:00
/**
* split http://user@host/path into a user and url part
* @param string $url
2012-06-03 04:50:34 +04:00
* @return array
*/
2012-09-07 17:22:01 +04:00
private function parseUrl($url) {
2012-06-03 04:50:34 +04:00
$parts=parse_url($url);
$url=$parts['scheme'].'://'.$parts['host'];
2012-09-07 17:22:01 +04:00
if(isset($parts['port'])) {
2012-06-03 04:50:34 +04:00
$url.=':'.$parts['port'];
}
$url.=$parts['path'];
2012-09-07 17:22:01 +04:00
if(isset($parts['query'])) {
2012-06-03 04:50:34 +04:00
$url.='?'.$parts['query'];
}
2012-11-02 22:53:02 +04:00
return array($parts['user'], $url);
2012-08-29 10:38:33 +04:00
2012-06-03 04:50:34 +04:00
}
2012-08-29 10:38:33 +04:00
2012-06-03 04:50:34 +04:00
/**
* check if an url is a valid login
* @param string $url
2012-06-03 04:50:34 +04:00
* @return boolean
*/
2012-09-07 17:22:01 +04:00
private function matchUrl($url) {
2012-11-04 14:10:46 +04:00
return ! is_null(parse_url($url, PHP_URL_USER));
2012-06-03 04:50:34 +04:00
}
2012-08-29 10:38:33 +04:00
2012-06-03 04:50:34 +04:00
/**
* Check if the password is correct
* @param string $uid The username
* @param string $password The password
2014-05-11 21:05:28 +04:00
* @return string
2012-06-03 04:50:34 +04:00
*
* Check if the password is correct without logging in the user
* returns the user id or false
*/
2012-09-07 17:22:01 +04:00
public function checkPassword($uid, $password) {
if(!$this->matchUrl($uid)) {
2012-06-03 04:50:34 +04:00
return false;
}
2012-11-02 22:53:02 +04:00
list($user, $url)=$this->parseUrl($uid);
2012-08-29 10:38:33 +04:00
2012-06-03 04:50:34 +04:00
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$password);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
curl_setopt($ch, CURLOPT_REDIR_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
2012-06-03 04:50:34 +04:00
curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
2012-08-29 10:38:33 +04:00
2012-06-03 04:50:34 +04:00
curl_close($ch);
2013-09-24 15:51:33 +04:00
if($status === 200) {
return $uid;
}
return false;
2012-06-03 04:50:34 +04:00
}
/**
* check if a user exists
2012-06-03 04:50:34 +04:00
* @param string $uid the username
* @return boolean
*/
2012-09-07 17:22:01 +04:00
public function userExists($uid) {
2012-06-03 04:50:34 +04:00
return $this->matchUrl($uid);
}
2012-08-26 18:24:25 +04:00
/**
* get the user's home directory
2012-08-26 18:24:25 +04:00
* @param string $uid the username
* @return string|false
2012-08-26 18:24:25 +04:00
*/
2012-09-07 17:22:01 +04:00
public function getHome($uid) {
if($this->userExists($uid)) {
2012-08-26 23:57:05 +04:00
return OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ) . '/' . $uid;
2012-08-26 18:24:25 +04:00
}else{
return false;
}
}
/**
* Backend name to be shown in user management
* @return string the name of the backend to be shown
*/
public function getBackendName(){
return 'HTTP';
}
}