ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ftp.php
Go to the documentation of this file.
1 <?php
2 
7 {
11  public $default_port = 21;
12 
16  public $browsable = true; // usually
17 
21  public $hierarchical = true;
22 
29  public function doValidate(&$uri, $config, $context)
30  {
31  $uri->query = null;
32 
33  // typecode check
34  $semicolon_pos = strrpos($uri->path, ';'); // reverse
35  if ($semicolon_pos !== false) {
36  $type = substr($uri->path, $semicolon_pos + 1); // no semicolon
37  $uri->path = substr($uri->path, 0, $semicolon_pos);
38  $type_ret = '';
39  if (strpos($type, '=') !== false) {
40  // figure out whether or not the declaration is correct
41  list($key, $typecode) = explode('=', $type, 2);
42  if ($key !== 'type') {
43  // invalid key, tack it back on encoded
44  $uri->path .= '%3B' . $type;
45  } elseif ($typecode === 'a' || $typecode === 'i' || $typecode === 'd') {
46  $type_ret = ";type=$typecode";
47  }
48  } else {
49  $uri->path .= '%3B' . $type;
50  }
51  $uri->path = str_replace(';', '%3B', $uri->path);
52  $uri->path .= $type_ret;
53  }
54  return true;
55  }
56 }
57 
58 // vim: et sw=4 sts=4