javascript embedding support
[phorkie.git] / scripts / index.php
index c1e67af4cb6f04f14d32acdfaadc45ed23d0a12f..ea07e60a38544965e5b26911778723eaff3bddbd 100644 (file)
@@ -2,18 +2,7 @@
 //index repositories in elasticsearch
 
 namespace phorkie;
-set_include_path(
-    __DIR__ . '/../src/'
-    . PATH_SEPARATOR . get_include_path()
-);
-spl_autoload_register(
-    function ($class) {
-        $file = str_replace(array('\\', '_'), '/', $class) . '.php';
-        if (stream_resolve_include_path($file)) {
-            require $file;
-        }
-    }
-);
+require_once __DIR__ . '/../src/phorkie/autoload.php';
 require_once __DIR__ . '/../data/config.default.php';
 if (file_exists(__DIR__ . '/../data/config.php')) {
     require_once __DIR__ . '/../data/config.php';
@@ -24,6 +13,12 @@ if ($GLOBALS['phorkie']['cfg']['setupcheck']) {
 
 
 $db = new Database();
+
+if ($db->prefix == '\phorkie\Database_Adapter_Null') {
+    echo "Error: No search adapter configured.\n";
+    exit(1);
+}
+
 $idx = $db->getIndexer();
 
 //create mapping