2011-04-16 14:35:21 +04:00
|
|
|
<?php
|
|
|
|
class OC_PublicLink{
|
|
|
|
/**
|
|
|
|
* create a new public link
|
|
|
|
* @param string path
|
|
|
|
* @param int (optional) expiretime time the link expires, as timestamp
|
|
|
|
*/
|
|
|
|
public function __construct($path,$expiretime=0){
|
2011-07-29 23:36:03 +04:00
|
|
|
if($path and OC_Filesystem::file_exists($path) and OC_Filesystem::is_readable($path)){
|
|
|
|
$user=OC_User::getUser();
|
2011-04-18 12:31:20 +04:00
|
|
|
$token=sha1("$user-$path-$expiretime");
|
2011-04-16 14:35:21 +04:00
|
|
|
$query=OC_DB::prepare("INSERT INTO *PREFIX*publiclink VALUES(?,?,?,?)");
|
|
|
|
$result=$query->execute(array($token,$path,$user,$expiretime));
|
|
|
|
if( PEAR::isError($result)) {
|
|
|
|
$entry = 'DB Error: "'.$result->getMessage().'"<br />';
|
|
|
|
$entry .= 'Offending command was: '.$result->getDebugInfo().'<br />';
|
|
|
|
error_log( $entry );
|
|
|
|
die( $entry );
|
|
|
|
}
|
|
|
|
$this->token=$token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-18 12:19:50 +04:00
|
|
|
* get the path of that shared file
|
2011-04-16 14:35:21 +04:00
|
|
|
*/
|
2011-04-18 12:19:50 +04:00
|
|
|
public static function getPath($token){
|
2011-04-16 14:35:21 +04:00
|
|
|
//remove expired links
|
2011-07-17 17:44:02 +04:00
|
|
|
$query=OC_DB::prepare("DELETE FROM *PREFIX*publiclink WHERE expire_time < ? AND expire_time!=0");
|
|
|
|
$query->execute(array(time()));
|
2011-04-16 14:35:21 +04:00
|
|
|
|
|
|
|
//get the path and the user
|
|
|
|
$query=OC_DB::prepare("SELECT user,path FROM *PREFIX*publiclink WHERE token=?");
|
|
|
|
$result=$query->execute(array($token));
|
|
|
|
$data=$result->fetchAll();
|
|
|
|
if(count($data)>0){
|
|
|
|
$path=$data[0]['path'];
|
|
|
|
$user=$data[0]['user'];
|
|
|
|
|
|
|
|
//prepare the filesystem
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Util::setupFS($user);
|
2011-04-16 14:35:21 +04:00
|
|
|
|
2011-04-18 12:19:50 +04:00
|
|
|
return $path;
|
2011-04-16 14:35:21 +04:00
|
|
|
}else{
|
2011-04-18 12:19:50 +04:00
|
|
|
return false;
|
2011-04-16 14:35:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the token for the public link
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getToken(){
|
|
|
|
return $this->token;
|
|
|
|
}
|
2011-08-05 19:18:35 +04:00
|
|
|
|
|
|
|
public static function getLink($path) {
|
|
|
|
$query=OC_DB::prepare("SELECT token FROM *PREFIX*publiclink WHERE user=? AND path=? LIMIT 1");
|
|
|
|
$result=$query->execute(array(OC_User::getUser(),$path))->fetchAll();
|
|
|
|
return $result[0]['token'];
|
|
|
|
}
|
|
|
|
|
2011-06-02 04:45:35 +04:00
|
|
|
/**
|
|
|
|
* gets all public links
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static public function getLinks(){
|
|
|
|
$query=OC_DB::prepare("SELECT * FROM *PREFIX*publiclink WHERE user=?");
|
2011-07-29 23:36:03 +04:00
|
|
|
return $query->execute(array(OC_User::getUser()))->fetchAll();
|
2011-06-02 04:45:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* delete a public link
|
|
|
|
*/
|
|
|
|
static public function delete($token){
|
|
|
|
$query=OC_DB::prepare("SELECT user,path FROM *PREFIX*publiclink WHERE token=?");
|
|
|
|
$result=$query->execute(array($token))->fetchAll();
|
2011-07-29 23:36:03 +04:00
|
|
|
if(count($result)>0 and $result[0]['user']==OC_User::getUser()){
|
2011-06-02 04:45:35 +04:00
|
|
|
$query=OC_DB::prepare("DELETE FROM *PREFIX*publiclink WHERE token=?");
|
|
|
|
$query->execute(array($token));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-16 14:35:21 +04:00
|
|
|
private $token;
|
|
|
|
}
|
|
|
|
?>
|