Blame view

web/backend/js/filemanager/include/FtpWrapper.php 5.22 KB
d1f8bd40   Alexey Boroda   first commit
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
106
107
108
109
110
111
112
113
114
115
  <?php
  /*
   * This file is part of the `nicolab/php-ftp-client` package.
   *
   * (c) Nicolas Tallefourtane <dev@nicolab.net>
   *
   * For the full copyright and license information, please view the LICENSE
   * file that was distributed with this source code.
   *
   * @copyright Nicolas Tallefourtane http://nicolab.net
   */
  namespace FtpClient;
  
  /**
   * Wrap the PHP FTP functions
   *
   * @method bool alloc() alloc(int $filesize, string &$result = null) Allocates space for a file to be uploaded
   * @method bool cdup() cdup() Changes to the parent directory
   * @method bool chdir() chdir(string $directory) Changes the current directory on a FTP server
   * @method int chmod() chmod(int $mode, string $filename) Set permissions on a file via FTP
   * @method bool close() close() Closes an FTP connection
   * @method bool delete() delete(string $path) Deletes a file on the FTP server
   * @method bool exec() exec(string $command) Requests execution of a command on the FTP server
   * @method bool fget() fget(resource $handle, string $remote_file, int $mode, int $resumepos = 0) Downloads a file from the FTP server and saves to an open file
   * @method bool fput() fput(string $remote_file, resource $handle, int $mode, int $startpos = 0) Uploads from an open file to the FTP server
   * @method mixed get_option() get_option(int $option) Retrieves various runtime behaviours of the current FTP stream
   * @method bool get() get(string $local_file, string $remote_file, int $mode, int $resumepos = 0) Downloads a file from the FTP server
   * @method bool login() login(string $username, string $password) Logs in to an FTP connection
   * @method int mdtm() mdtm(string $remote_file) Returns the last modified time of the given file
   * @method string mkdir() mkdir(string $directory) Creates a directory
   * @method int nb_continue() nb_continue() Continues retrieving/sending a file (non-blocking)
   * @method int nb_fget() nb_fget(resource $handle, string $remote_file, int $mode, int $resumepos = 0) Retrieves a file from the FTP server and writes it to an open file (non-blocking)
   * @method int nb_fput() nb_fput(string $remote_file, resource $handle, int $mode, int $startpos = 0) Stores a file from an open file to the FTP server (non-blocking)
   * @method int nb_get() nb_get(string $local_file, string $remote_file, int $mode, int $resumepos = 0) Retrieves a file from the FTP server and writes it to a local file (non-blocking)
   * @method int nb_put() nb_put(string $remote_file, string $local_file, int $mode, int $startpos = 0) Stores a file on the FTP server (non-blocking)
   * @method array nlist() nlist(string $directory) Returns a list of files in the given directory
   * @method bool pasv() pasv(bool $pasv) Turns passive mode on or off
   * @method bool put() put(string $remote_file, string $local_file, int $mode, int $startpos = 0) Uploads a file to the FTP server
   * @method string pwd() pwd() Returns the current directory name
   * @method bool quit() quit() Closes an FTP connection
   * @method array raw() raw(string $command) Sends an arbitrary command to an FTP server
   * @method array rawlist() rawlist(string $directory, bool $recursive = false) Returns a detailed list of files in the given directory
   * @method bool rename() rename(string $oldname, string $newname) Renames a file or a directory on the FTP server
   * @method bool rmdir() rmdir(string $directory) Removes a directory
   * @method bool set_option() set_option(int $option, mixed $value) Set miscellaneous runtime FTP options
   * @method bool site() site(string $command) Sends a SITE command to the server
   * @method int size() size(string $remote_file) Returns the size of the given file
   * @method string systype() systype() Returns the system type identifier of the remote FTP server
   *
   * @author Nicolas Tallefourtane <dev@nicolab.net>
   */
  class FtpWrapper
  {
      /**
       * The connection with the server
       *
       * @var resource
       */
      protected $conn;
  
      /**
       * Constructor.
       *
       * @param resource &$connection The FTP (or SSL-FTP) connection (takes by reference).
       */
      public function __construct(&$connection)
      {
          $this->conn = &$connection;
      }
  
      /**
       * Forward the method call to FTP functions
       *
       * @param  string       $function
       * @param  array        $arguments
       * @return mixed
       * @throws FtpException When the function is not valid
       */
      public function __call($function, array $arguments)
      {
          $function = 'ftp_' . $function;
  
          if (function_exists($function)) {
              array_unshift($arguments, $this->conn);
              return call_user_func_array($function, $arguments);
          }
  
          throw new FtpException("{$function} is not a valid FTP function");
      }
  
      /**
       * Opens a FTP connection
       *
       * @param  string   $host
       * @param  int      $port
       * @param  int      $timeout
       * @return resource
       */
      public function connect($host, $port = 21, $timeout = 90)
      {
          return ftp_connect($host, $port, $timeout);
      }
  
      /**
       * Opens a Secure SSL-FTP connection
       * @param  string   $host
       * @param  int      $port
       * @param  int      $timeout
       * @return resource
       */
      public function ssl_connect($host, $port = 21, $timeout = 90)
      {
          return ftp_ssl_connect($host, $port, $timeout);
      }
  }