use stream_resolve_include_path
[phorkie.git] / scripts / search.php
index b6273b457dd8fbb4ed9fa091678ac528af8c0b2d..d7d1b643ee1b537c608e8cef629d0cd6b54f4c54 100644 (file)
@@ -9,9 +9,7 @@ set_include_path(
 spl_autoload_register(
     function ($class) {
         $file = str_replace(array('\\', '_'), '/', $class) . '.php';
-        $hdl = @fopen($file, 'r', true);
-        if ($hdl !== false) {
-            fclose($hdl);
+        if (stream_resolve_include_path($file)) {
             require $file;
         }
     }
@@ -24,14 +22,15 @@ if ($GLOBALS['phorkie']['cfg']['setupcheck']) {
     SetupCheck::run();
 }
 
-//delete all repos
-$r = new \HTTP_Request2(
-    'http://localhost:9200/phorkie/repo/_search',
+$r = new Database_Adapter_Elasticsearch_HTTPRequest(
+    $GLOBALS['phorkie']['cfg']['elasticsearch'] . 'repo/_search',
     \HTTP_Request2::METHOD_GET
 );
 $r->setBody(
     json_encode(
         (object)array(
+            'from' => 0,
+            'size' => 2,
             'query' => (object)array(
                 'bool' => (object)array(
                     'should' => array(