Completed
Push — stable2 ( 929455...10fadc )
by Robin
13:53 queued 12:28
created

Connection   A

Complexity

Total Complexity 17

Size/Duplication

Total Lines 106
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 17
lcom 1
cbo 4
dl 0
loc 106
ccs 0
cts 51
cp 0
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A unknownError() 0 12 3
A __construct() 0 4 1
A write() 0 3 1
A clearTillPrompt() 0 9 2
B read() 0 26 6
A isPrompt() 0 3 2
A close() 0 6 2
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;
9
10
use Icewind\SMB\Exception\AuthenticationException;
11
use Icewind\SMB\Exception\ConnectException;
12
use Icewind\SMB\Exception\ConnectionException;
13
use Icewind\SMB\Exception\InvalidHostException;
14
use Icewind\SMB\Exception\NoLoginServerException;
15
16
class Connection extends RawConnection {
17
	const DELIMITER = 'smb:';
18
	const DELIMITER_LENGTH = 4;
19
20
	/** @var Parser */
21
	private $parser;
22
23
	public function __construct($command, Parser $parser, $env = array()) {
24
		parent::__construct($command, $env);
25
		$this->parser = $parser;
26
	}
27
28
	/**
29
	 * send input to smbclient
30
	 *
31
	 * @param string $input
32
	 */
33
	public function write($input) {
34
		parent::write($input . PHP_EOL);
35
	}
36
37
	/**
38
	 * @throws ConnectException
39
	 */
40
	public function clearTillPrompt() {
41
		$this->write('');
42
		do {
43
			$promptLine = $this->readLine();
44
			$this->parser->checkConnectionError($promptLine);
45
		} while (!$this->isPrompt($promptLine));
46
		$this->write('');
47
		$this->readLine();
48
	}
49
50
	/**
51
	 * get all unprocessed output from smbclient until the next prompt
52
	 *
53
	 * @param callable $callback (optional) callback to call for every line read
54
	 * @return string[]
55
	 * @throws AuthenticationException
56
	 * @throws ConnectException
57
	 * @throws ConnectionException
58
	 * @throws InvalidHostException
59
	 * @throws NoLoginServerException
60
	 */
61
	public function read(callable $callback = null) {
62
		if (!$this->isValid()) {
63
			throw new ConnectionException('Connection not valid');
64
		}
65
		$promptLine = $this->readLine(); //first line is prompt
66
		$this->parser->checkConnectionError($promptLine);
67
68
		$output = array();
69
		$line = $this->readLine();
70
		if ($line === false) {
71
			$this->unknownError($promptLine);
0 ignored issues
show
Security Bug introduced by
It seems like $promptLine defined by $this->readLine() on line 65 can also be of type false; however, Icewind\SMB\Connection::unknownError() does only seem to accept string, did you maybe forget to handle an error condition?

This check looks for type mismatches where the missing type is false. This is usually indicative of an error condtion.

Consider the follow example

<?php

function getDate($date)
{
    if ($date !== null) {
        return new DateTime($date);
    }

    return false;
}

This function either returns a new DateTime object or false, if there was an error. This is a typical pattern in PHP programming to show that an error has occurred without raising an exception. The calling code should check for this returned false before passing on the value to another function or method that may not be able to handle a false.

Loading history...
72
		}
73
		while (!$this->isPrompt($line)) { //next prompt functions as delimiter
74
			if (is_callable($callback)) {
75
				$result = $callback($line);
76
				if ($result === false) { // allow the callback to close the connection for infinite running commands
77
					$this->close(true);
78
					break;
79
				}
80
			} else {
81
				$output[] .= $line;
82
			}
83
			$line = $this->readLine();
84
		}
85
		return $output;
86
	}
87
88
	/**
89
	 * Check
90
	 *
91
	 * @param $line
92
	 * @return bool
93
	 */
94
	private function isPrompt($line) {
95
		return mb_substr($line, 0, self::DELIMITER_LENGTH) === self::DELIMITER || $line === false;
96
	}
97
98
	/**
99
	 * @param string $promptLine (optional) prompt line that might contain some info about the error
100
	 * @throws ConnectException
101
	 */
102
	private function unknownError($promptLine = '') {
103
		if ($promptLine) { //maybe we have some error we missed on the previous line
104
			throw new ConnectException('Unknown error (' . $promptLine . ')');
105
		} else {
106
			$error = $this->readError(); // maybe something on stderr
107
			if ($error) {
108
				throw new ConnectException('Unknown error (' . $error . ')');
109
			} else {
110
				throw new ConnectException('Unknown error');
111
			}
112
		}
113
	}
114
115
	public function close($terminate = true) {
116
		if (is_resource($this->getInputStream())) {
117
			$this->write('close' . PHP_EOL);
118
		}
119
		parent::close($terminate);
120
	}
121
}
122