-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathFtpProtocol.php
105 lines (92 loc) · 2.26 KB
/
FtpProtocol.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
namespace gftp;
/**
* Description of FtpProtocol
*
* @property-read string $protocol Protocol name.
* @property-read string $driver Driver class name.
* @property-read int $port Default port number.
*
* @author Herve Guenot
* @link http://www.guenot.info
* @copyright Copyright © 2015 Herve Guenot
* @license GNU LESSER GPL 3
* @version 1.0
*
* @internal
*/
class FtpProtocol {
/** @var FtpProtocol[] All known protocols. */
private static $drivers = [];
/**
* @param string $protocol Protocol name
* @param string $driver Driver class name
* @param int $port Default port
*/
public static function registerDriver(string $protocol, string $driver, int $port) {
$key = strtolower($protocol);
self::$drivers[$key] = new FtpProtocol($protocol, $driver, $port);
}
/**
* @return FtpProtocol[] All known protocols.
*/
public static function values(): array {
return array_merge([], self::$drivers);
}
/**
* @param string $protocol Expected protocol name.
*
* @return FtpProtocol|null Found protocol or `null` if not exists
*/
public static function valueOf(string $protocol): ?FtpProtocol {
$key = strtolower($protocol);
return array_key_exists($key, self::$drivers) && isset(self::$drivers[$key])
? self::$drivers[$key]
: null;
}
/**
* @param string $protocol Protocol name
* @param string $driver Driver class name
* @param int $port Default port
*/
private function __construct(string $protocol, string $driver, int $port) {
$this->_protocol = $protocol;
$this->_driver = $driver;
$this->_port = $port;
}
/** @var string Protocol name */
private $_protocol;
/** @var string Driver class name */
private $_driver;
/** @var int Default port */
private $_port;
/**
* @return string Protocol name.
*/
public function getProtocol(): string {
return $this->_protocol;
}
/**
* @return string Driver class name.
*/
public function getDriver(): string {
return $this->_driver;
}
/**
* @return int Default port
*/
public function getPort(): int {
return $this->_port;
}
public function __get($name) {
if ($name == 'protocol') {
return $this->getProtocol();
}
if ($name == 'driver') {
return $this->getDriver();
}
if ($name == 'port') {
return $this->getPort();
}
}
}