blob: 4de514f06ea6af2c5c273dd66f10b40815f525ca (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
//search
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();
}
$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(
(object)array(
'query_string' => (object)array(
'query' => 'test'
),
),
(object)array(
'has_child' => (object)array(
'type' => 'file',
'query' => (object)array(
'query_string' => (object)array(
'query' => 'test'
)
)
)
)
)
),
)
)
)
);
$res = $r->send();
echo $res->getBody() . "\n";
?>
|