|
@@ -84,7 +84,7 @@ function hackpoint_content_setting(){
|
|
|
|
|
|
Configuration::setting('hackpoint',array(
|
|
|
"Général",
|
|
|
- 'hackpoint_enable' => array("label"=>"Activer","type"=>"checkbox"),
|
|
|
+
|
|
|
));
|
|
|
|
|
|
|
|
@@ -96,6 +96,7 @@ Configuration::setting('hackpoint',array(
|
|
|
function hackpoint_dav($requested){
|
|
|
global $conf,$myUser;
|
|
|
$requested = trim($requested, '/');
|
|
|
+
|
|
|
|
|
|
if(substr($requested, 0,13)!='dav/hackpoint') return;
|
|
|
if(empty($requested)) throw new Exception("Unspecified DAV path");
|
|
@@ -110,6 +111,7 @@ function hackpoint_dav($requested){
|
|
|
$server->logs = WebDav::logPath().SLASH.'dav-logs.txt';
|
|
|
$server->lockfile = WebDav::logPath().SLASH.'dav-lock.json';
|
|
|
$server->root = str_replace('//','/',$projectPath.'/dav/hackpoint/');
|
|
|
+
|
|
|
$server->folder = '';
|
|
|
|
|
|
|
|
@@ -162,8 +164,7 @@ function hackpoint_dav($requested){
|
|
|
$server->do['delete'] = function($isoPath){
|
|
|
global $myUser,$conf;
|
|
|
$utf8Path = utf8_encode($isoPath);
|
|
|
-
|
|
|
-
|
|
|
+ throw new Exception("Méthode non implémentée",501);
|
|
|
};
|
|
|
|
|
|
$server->do['download'] = function($isoPath){
|
|
@@ -173,32 +174,55 @@ function hackpoint_dav($requested){
|
|
|
|
|
|
$osPath = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ? $isoPath: $utf8Path;
|
|
|
|
|
|
- if(!file_exists($osPath)) throw new Exception("Fichier inexistant",404);
|
|
|
- if(!is_file($osPath)) throw new Exception("Méthode non autorisée sur autre chose qu'un fichier",501);
|
|
|
|
|
|
+ require_once(__DIR__.SLASH.'Resource.class.php');
|
|
|
+ require_once(__DIR__.SLASH.'ResourceType.class.php');
|
|
|
+
|
|
|
+ preg_match_all('/#([0-9]*)/i', $utf8Path,$matches,PREG_SET_ORDER);
|
|
|
+ $id = end($matches);
|
|
|
+ $id = $id[1];
|
|
|
+
|
|
|
+ $resource = Resource::getById($id);
|
|
|
$stream = 'not implemented';
|
|
|
|
|
|
+ if(!$resource) throw new Exception("Fichier inexistant",404);
|
|
|
+
|
|
|
+ $type = ResourceType::types($resource->type);
|
|
|
+ $stream = $type['class']::toFile($resource);
|
|
|
+ $stream = $stream['content'];
|
|
|
+
|
|
|
+
|
|
|
return $stream;
|
|
|
};
|
|
|
|
|
|
$server->do['edit'] = function($isoPath,$body,$type){
|
|
|
global $myUser,$conf;
|
|
|
- User::check_access('document','edit');
|
|
|
+ User::check_access('hackpoint','edit');
|
|
|
$utf8Path = utf8_encode($isoPath);
|
|
|
|
|
|
- if($type=='file'){
|
|
|
- $maxSize = $conf->get('document_allowed_size');
|
|
|
- $extension = getExt($utf8Path);
|
|
|
- $extensions = explode(',',str_replace(' ', '', $conf->get('document_allowed_extensions')));
|
|
|
- if(strlen($body) > $maxSize) throw new Exception("Taille du fichier trop grande, taille maximum :".readable_size($maxSize).' ('.$maxSize.' octets)',406);
|
|
|
- if(!in_array($extension , $extensions)) throw new Exception("Extension '".$extension."' du fichier ".$path." non permise, autorisé :".implode(', ',$extensions),415);
|
|
|
- $element = Element::addFile($utf8Path, $body);
|
|
|
- if($conf->get('document_enable_logs') || $conf->get('document_enable_logs_verbose')) Log::put('Enregistrement fichier '.$utf8Path,'document');
|
|
|
- }else{
|
|
|
-
|
|
|
- if($conf->get('document_enable_logs') || $conf->get('document_enable_logs_verbose')) Log::put('Enregistrement dossier '.$utf8Path,'document');
|
|
|
- }
|
|
|
|
|
|
+ require_once(__DIR__.SLASH.'Resource.class.php');
|
|
|
+ require_once(__DIR__.SLASH.'ResourceType.class.php');
|
|
|
+ preg_match_all('/#([0-9]*)/i', $utf8Path,$matches,PREG_SET_ORDER);
|
|
|
+ $id = end($matches);
|
|
|
+ $id = $id[1];
|
|
|
+
|
|
|
+ $resource = Resource::getById($id);
|
|
|
+
|
|
|
+ if(!$resource) throw new Exception("Fichier inexistant",404);
|
|
|
+
|
|
|
+ if($type!='file')throw new Exception("Non implémenté",501);
|
|
|
+
|
|
|
+
|
|
|
+ $extension = getExt($utf8Path);
|
|
|
+
|
|
|
+ if(strlen($body) > $maxSize) throw new Exception("Taille du fichier trop grande, taille maximum :".readable_size($maxSize).' ('.$maxSize.' octets)',406);
|
|
|
+ if(!in_array($extension , $extensions)) throw new Exception("Extension '".$extension."' du fichier ".$path." non permise, autorisé :".implode(', ',$extensions),415);
|
|
|
+
|
|
|
+ if($conf->get('document_enable_logs') || $conf->get('document_enable_logs_verbose')) Log::put('Enregistrement fichier '.$utf8Path,'hackpoint');
|
|
|
+ */
|
|
|
+ $resource->content = $body;
|
|
|
+ $resource->save();
|
|
|
|
|
|
};
|
|
|
|
|
@@ -206,73 +230,69 @@ function hackpoint_dav($requested){
|
|
|
global $myUser,$conf;
|
|
|
$utf8Path = utf8_encode($isoPath);
|
|
|
$utf8To = utf8_encode($isoTo);
|
|
|
- User::check_access('document','edit');
|
|
|
- if(!document_check_element_name(mt_basename($utf8To), ENT_QUOTES)) throw new Exception("Caractères interdits : \\/:*?\"<>|");
|
|
|
-
|
|
|
+ User::check_access('hackpoint','edit');
|
|
|
+ throw new Exception("Méthode non implémentée",501);
|
|
|
};
|
|
|
|
|
|
$server->do['copy'] = function($isoPath,$isoTo){
|
|
|
global $myUser,$conf;
|
|
|
$utf8Path = utf8_encode($isoPath);
|
|
|
$utf8To = utf8_encode($isoTo);
|
|
|
- User::check_access('document','edit');
|
|
|
- if(!document_check_element_name(mt_basename($utf8To), ENT_QUOTES)) throw new Exception("Caractères interdits : \\/:*?\"<>|");
|
|
|
+ User::check_access('hackpoint','edit');
|
|
|
+ throw new Exception("Méthode non implémentée",501);
|
|
|
|
|
|
};
|
|
|
|
|
|
$server->do['list'] = function($isoPath,$depth =0){
|
|
|
+
|
|
|
global $myUser,$conf;
|
|
|
$utf8Path = utf8_encode($isoPath);
|
|
|
- User::check_access('document','read');
|
|
|
+ require_once(__DIR__.SLASH.'Sketch.class.php');
|
|
|
+ require_once(__DIR__.SLASH.'Resource.class.php');
|
|
|
+ User::check_access('hackpoint','read');
|
|
|
|
|
|
-
|
|
|
- $osPath = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ? $isoPath: $utf8Path;
|
|
|
-
|
|
|
|
|
|
- $files = array();
|
|
|
|
|
|
-
|
|
|
- if($utf8Path == __DIR__.SLASH.'hackpoint'.SLASH.'dav'.SLASH.'hackpoint'){
|
|
|
- $file = (object) array();
|
|
|
- $file->label = '';
|
|
|
- $file->type = 'directory';
|
|
|
- $file->path = '';
|
|
|
- $toScan = array($file);
|
|
|
- }else{
|
|
|
-
|
|
|
- $file = (object) array();
|
|
|
- $file->label = '';
|
|
|
- $file->type = 'directory';
|
|
|
- $file->path = '';
|
|
|
- $toScan = array($file);
|
|
|
- }
|
|
|
- */
|
|
|
|
|
|
+ $files = array();
|
|
|
|
|
|
-
|
|
|
- if($depth>0)
|
|
|
- $toScan = array_merge($toScan,Element::browse($utf8Path.SLASH.'*'));
|
|
|
|
|
|
- foreach($toScan as $element){
|
|
|
-
|
|
|
- $file = array(
|
|
|
- 'type' => $element->type,
|
|
|
- 'label' => $element->label
|
|
|
- );
|
|
|
-
|
|
|
- if($element->type == 'directory'){
|
|
|
-
|
|
|
- $file['create_time'] = time();
|
|
|
- $file['update_time'] = time();
|
|
|
- $file['length'] = 1000;
|
|
|
+ $file = array();
|
|
|
+ $file['label'] = '';
|
|
|
+ $file['type'] = 'directory';
|
|
|
+ $file['path'] = '';
|
|
|
+ $files[] = $file;
|
|
|
+
|
|
|
+ if($depth>0){
|
|
|
+ if(!empty($utf8Path)){
|
|
|
+
|
|
|
+ preg_match('/#([0-9]*)/i', $utf8Path,$matches);
|
|
|
+
|
|
|
+ $sketch = Sketch::load(array('id'=>$matches[1]));
|
|
|
+ foreach(Resource::loadAll(array('sketch'=>$sketch->id)) as $resource){
|
|
|
+ $type = $resource->type();
|
|
|
+ $file = array();
|
|
|
+ $file['label'] = $resource->label.' #'.$resource->id.'.'.$type['toExtension'];
|
|
|
+ $file['type'] = 'file';
|
|
|
+ $file['create_time'] = $resource->created;
|
|
|
+ $file['update_time'] = $resource->updated;
|
|
|
+ $file['length'] = 1000;
|
|
|
+ $files[] = $file;
|
|
|
+ }
|
|
|
}else{
|
|
|
- $file['create_time'] = time();
|
|
|
- $file['update_time'] = time();
|
|
|
- $file['length'] = 1000;
|
|
|
+ foreach(Sketch::loadAll() as $sketch){
|
|
|
+ $file = array();
|
|
|
+ $file['label'] = $sketch->label.' #'.$sketch->id;
|
|
|
+ $file['type'] = 'directory';
|
|
|
+ $file['create_time'] = $sketch->created;
|
|
|
+ $file['update_time'] = $sketch->updated;
|
|
|
+ $file['length'] = 1000;
|
|
|
+ $files[] = $file;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
- $files[] = $file;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
|
|
|
return $files;
|
|
|
};
|