|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Copyright (c) 2014 Robin Appelman <[email protected]> |
|
4
|
|
|
* This file is licensed under the Licensed under the MIT license: |
|
5
|
|
|
* http://opensource.org/licenses/MIT |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
namespace Icewind\SMB\Wrapped; |
|
9
|
|
|
|
|
10
|
|
|
use Icewind\SMB\AbstractServer; |
|
11
|
|
|
use Icewind\SMB\Exception\AuthenticationException; |
|
12
|
|
|
use Icewind\SMB\Exception\ConnectException; |
|
13
|
|
|
use Icewind\SMB\Exception\ConnectionException; |
|
14
|
|
|
use Icewind\SMB\Exception\InvalidHostException; |
|
15
|
|
|
use Icewind\SMB\IShare; |
|
16
|
|
|
use Icewind\SMB\ISystem; |
|
17
|
|
|
|
|
18
|
|
|
class Server extends AbstractServer { |
|
19
|
|
|
/** |
|
20
|
|
|
* Check if the smbclient php extension is available |
|
21
|
|
|
* |
|
22
|
|
|
* @param ISystem $system |
|
23
|
|
|
* @return bool |
|
24
|
|
|
*/ |
|
25
|
6 |
|
public static function available(ISystem $system) { |
|
26
|
6 |
|
return $system->getSmbclientPath(); |
|
|
|
|
|
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
15 |
|
private function getAuthFileArgument() { |
|
30
|
15 |
|
if ($this->getAuth()->getUsername()) { |
|
|
|
|
|
|
31
|
15 |
|
return '--authentication-file=' . $this->system->getFD(3); |
|
32
|
|
|
} else { |
|
33
|
|
|
return ''; |
|
34
|
|
|
} |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* @return IShare[] |
|
39
|
|
|
* |
|
40
|
|
|
* @throws AuthenticationException |
|
41
|
|
|
* @throws InvalidHostException |
|
42
|
|
|
* @throws ConnectException |
|
43
|
|
|
*/ |
|
44
|
15 |
|
public function listShares() { |
|
45
|
15 |
|
$command = sprintf('%s %s %s -L %s', |
|
46
|
15 |
|
$this->system->getSmbclientPath(), |
|
47
|
15 |
|
$this->getAuthFileArgument(), |
|
48
|
15 |
|
$this->getAuth()->getExtraCommandLineArguments(), |
|
49
|
15 |
|
escapeshellarg('//' . $this->getHost()) |
|
50
|
|
|
); |
|
51
|
15 |
|
$connection = new RawConnection($command); |
|
52
|
15 |
|
$connection->writeAuthentication($this->getAuth()->getUsername(), $this->getAuth()->getPassword()); |
|
53
|
15 |
|
$connection->connect(); |
|
54
|
15 |
|
if (!$connection->isValid()) { |
|
55
|
|
|
throw new ConnectionException($connection->readLine()); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
15 |
|
$parser = new Parser($this->timezoneProvider); |
|
|
|
|
|
|
59
|
|
|
|
|
60
|
15 |
|
$output = $connection->readAll(); |
|
61
|
15 |
|
if (isset($output[0])) { |
|
62
|
9 |
|
$parser->checkConnectionError($output[0]); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
// sometimes we get an empty line first |
|
66
|
6 |
|
if (count($output) < 2) { |
|
67
|
6 |
|
$output = $connection->readAll(); |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
6 |
|
if (isset($output[0])) { |
|
71
|
6 |
|
$parser->checkConnectionError($output[0]); |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
6 |
|
$shareNames = $parser->parseListShares($output); |
|
75
|
|
|
|
|
76
|
6 |
|
$shares = array(); |
|
77
|
6 |
|
foreach ($shareNames as $name => $description) { |
|
78
|
6 |
|
$shares[] = $this->getShare($name); |
|
79
|
|
|
} |
|
80
|
6 |
|
return $shares; |
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
|
|
/** |
|
84
|
|
|
* @param string $name |
|
85
|
|
|
* @return IShare |
|
86
|
|
|
*/ |
|
87
|
768 |
|
public function getShare($name) { |
|
88
|
768 |
|
return new Share($this, $name, $this->system); |
|
89
|
|
|
} |
|
90
|
|
|
} |
|
91
|
|
|
|