nextcloud/apps/files_external/lib/smb.php

99 lines
2.4 KiB
PHP
Raw Normal View History

2012-05-24 20:22:33 +04:00
<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2012-09-06 01:28:59 +04:00
require_once 'smb4php/smb.php';
2012-05-24 20:22:33 +04:00
class OC_FileStorage_SMB extends OC_FileStorage_StreamWrapper{
2012-05-24 20:22:33 +04:00
private $password;
private $user;
private $host;
private $root;
private $share;
2012-05-24 20:22:33 +04:00
2012-09-07 17:22:01 +04:00
public function __construct($params) {
2012-05-24 20:22:33 +04:00
$this->host=$params['host'];
$this->user=$params['user'];
$this->password=$params['password'];
$this->share=$params['share'];
2012-05-24 20:22:33 +04:00
$this->root=isset($params['root'])?$params['root']:'/';
if ( ! $this->root || $this->root[0]!='/') {
$this->root='/'.$this->root;
}
if (substr($this->root, -1, 1)!='/') {
$this->root.='/';
}
if ( ! $this->share || $this->share[0]!='/') {
$this->share='/'.$this->share;
}
if (substr($this->share, -1, 1)=='/') {
2012-11-02 22:53:02 +04:00
$this->share=substr($this->share, 0, -1);
}
2012-05-24 20:22:33 +04:00
//create the root folder if necesary
if ( ! $this->is_dir('')) {
$this->mkdir('');
}
2012-05-24 20:22:33 +04:00
}
2012-09-07 17:22:01 +04:00
public function constructUrl($path) {
if (substr($path, -1)=='/') {
2012-11-02 22:53:02 +04:00
$path=substr($path, 0, -1);
2012-05-24 20:22:33 +04:00
}
return 'smb://'.$this->user.':'.$this->password.'@'.$this->host.$this->share.$this->root.$path;
2012-06-17 04:54:23 +04:00
}
2012-09-07 17:22:01 +04:00
public function stat($path) {
if ( ! $path and $this->root=='/') {//mtime doesn't work for shares
2012-06-17 04:54:23 +04:00
$mtime=$this->shareMTime();
$stat=stat($this->constructUrl($path));
$stat['mtime']=$mtime;
return $stat;
} else {
2012-06-17 04:54:23 +04:00
return stat($this->constructUrl($path));
}
}
2012-09-07 17:22:01 +04:00
public function filetype($path) {
// using opendir causes the same amount of requests and caches the content of the folder in one go
return (bool)@$this->opendir($path) ? 'dir' : 'file';
2012-06-17 04:59:38 +04:00
}
2012-06-17 04:54:23 +04:00
/**
* check if a file or folder has been updated since $time
* @param int $time
* @return bool
*/
2012-11-02 22:53:02 +04:00
public function hasUpdated($path, $time) {
if ( ! $path and $this->root=='/') {
// mtime doesn't work for shares, but giving the nature of the backend,
// doing a full update is still just fast enough
2012-06-17 04:54:23 +04:00
return true;
} else {
2012-06-17 04:54:23 +04:00
$actualTime=$this->filemtime($path);
return $actualTime>$time;
}
}
/**
* get the best guess for the modification time of the share
*/
2012-09-07 17:22:01 +04:00
private function shareMTime() {
2012-06-17 04:54:23 +04:00
$dh=$this->opendir('');
$lastCtime=0;
2012-09-07 17:22:01 +04:00
while($file=readdir($dh)) {
if ($file!='.' and $file!='..') {
2012-06-17 04:54:23 +04:00
$ctime=$this->filemtime($file);
if ($ctime>$lastCtime) {
2012-06-17 04:54:23 +04:00
$lastCtime=$ctime;
}
}
}
return $lastCtime;
2012-05-24 20:22:33 +04:00
}
}