nextcloud/lib/user/http.php

106 lines
2.5 KiB
PHP
Raw Normal View History

2012-06-03 04:50:34 +04:00
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @copyright 2012 Robin Appelman icewind@owncloud.com
*
* 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/>.
*
*/
/**
* user backend using http auth requests
*/
class OC_User_HTTP extends OC_User_Backend {
/**
* split http://user@host/path into a user and url part
* @param string path
* @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
* @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
/**
* @brief Check if the password is correct
* @param $uid The username
* @param $password The password
* @returns string
*
* 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_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);
return $status==200;
}
/**
* @brief check if a user exists
* @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
/**
* @brief get the user's home directory
* @param string $uid the username
* @return boolean
*/
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;
}
}
2012-06-03 04:50:34 +04:00
}