blob: 5afbee090d70fad2d35af5a1016444bf6332aa16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php
//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';
$hdl = @fopen($file, 'r', true);
if ($hdl !== false) {
fclose($hdl);
require $file;
}
}
);
require_once __DIR__ . '/../data/config.default.php';
if (file_exists(__DIR__ . '/../data/config.php')) {
require_once __DIR__ . '/../data/config.php';
}
if ($GLOBALS['phorkie']['cfg']['setupcheck']) {
SetupCheck::run();
}
$db = new Database();
$idx = $db->getIndexer();
//cleanup
echo "Deleting all index data\n";
$idx->deleteAllRepos();
//create mapping
echo "Index setup\n";
$db->getSetup()->setup();
$rs = new Repositories();
list($repos, $count) = $rs->getList(0, 10000);
foreach ($repos as $repo) {
echo 'Indexing ' . $repo->id . "\n";
$idx->addRepo($repo, filectime($repo->gitDir));
}
?>
|