blob: 121c7e21b51fd5b9d92c379953a9a674ca55e96e (
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
|
<?php
//search
namespace phorkie;
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';
}
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";
?>
|