HTMLPurifier/URIScheme/ftp.php Quellcode

ftp.php
gehe zur Dokumentation dieser Datei
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




Korrekturen, Hinweise und Ergänzungen

Bitte scheuen Sie sich nicht und melden Sie, was auf dieser Seite sachlich falsch oder irreführend ist, was ergänzt werden sollte, was fehlt usw. Dazu bitte oben aus dem Menü Seite den Eintrag Support Forum wählen. Es ist eine kostenlose Anmeldung erforderlich, um Anmerkungen zu posten. Unpassende Postings, Spam usw. werden kommentarlos entfernt.