12345678910111213141516171819 |
- <?php
- if (dirsStatuses('subpath')[$_POST['dir']] !== false)
- output(403, 'Wrong value for <code>dir</code>.');
- if (preg_match('/^[a-z0-9]{1,32}$/D', $_POST['path']) !== 1)
- output(403, 'Chemin invalide.');
- if (query('select', 'sites', ['address' => $_POST['path'], 'type' => 'subpath']) !== [])
- output(403, 'Ce chemin est déjà utilisé sur ce service. Utilisez-en un autre.');
- rateLimit();
- addSite($_SESSION['id'], $_POST['dir'], $_POST['path'], 'subpath');
- if (symlink(CONF['ht']['ht_path'] . '/' . $_SESSION['id'] . '/' . $_POST['dir'], CONF['ht']['subpath_path'] . '/' . $_POST['path']) !== true)
- output(500, 'Unable to create symlink.');
- output(200, 'Accès HTTP par sous-chemin ajouté sur ce dossier !');
|