aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/phorkie/Database/Adapter/Elasticsearch/HTTPRequest.php30
-rw-r--r--src/phorkie/Database/Adapter/Elasticsearch/Indexer.php4
2 files changed, 23 insertions, 11 deletions
diff --git a/src/phorkie/Database/Adapter/Elasticsearch/HTTPRequest.php b/src/phorkie/Database/Adapter/Elasticsearch/HTTPRequest.php
index 2d74a4e..4cc02d6 100644
--- a/src/phorkie/Database/Adapter/Elasticsearch/HTTPRequest.php
+++ b/src/phorkie/Database/Adapter/Elasticsearch/HTTPRequest.php
@@ -3,22 +3,30 @@ namespace phorkie;
class Database_Adapter_Elasticsearch_HTTPRequest extends \HTTP_Request2
{
+ public $allow404 = false;
+
public function send()
{
$res = parent::send();
$mainCode = intval($res->getStatus() / 100);
- if ($mainCode != 2) {
- $js = json_decode($res->getBody());
- if (isset($js->error)) {
- $error = $js->error;
- } else {
- $error = $res->getBody();
- }
- throw new Exception(
- 'Error in elasticsearch communication: ' . $error
- );
+ if ($mainCode === 2) {
+ return $res;
+ }
+
+ if ($this->allow404 && $res->getStatus() == 404) {
+ return $res;
+ }
+ $js = json_decode($res->getBody());
+ if (isset($js->error)) {
+ $error = $js->error;
+ } else {
+ $error = $res->getBody();
}
- return $res;
+ throw new Exception(
+ 'Error in elasticsearch communication'
+ . '(status code ' . $res->getStatus() . '): '
+ . $error
+ );
}
}
diff --git a/src/phorkie/Database/Adapter/Elasticsearch/Indexer.php b/src/phorkie/Database/Adapter/Elasticsearch/Indexer.php
index dbe769e..cf50bbe 100644
--- a/src/phorkie/Database/Adapter/Elasticsearch/Indexer.php
+++ b/src/phorkie/Database/Adapter/Elasticsearch/Indexer.php
@@ -89,6 +89,7 @@ class Database_Adapter_Elasticsearch_Indexer implements Database_IIndexer
$this->searchInstance . 'repo/_query',
\HTTP_Request2::METHOD_DELETE
);
+ $r->allow404 = true;
$r->setBody(
json_encode(
(object)array(
@@ -101,6 +102,7 @@ class Database_Adapter_Elasticsearch_Indexer implements Database_IIndexer
$this->searchInstance . 'file/_query',
\HTTP_Request2::METHOD_DELETE
);
+ $r->allow404 = true;
$r->setBody(
json_encode(
(object)array(
@@ -118,6 +120,7 @@ class Database_Adapter_Elasticsearch_Indexer implements Database_IIndexer
$this->searchInstance . 'repo/' . $repo->id,
\HTTP_Request2::METHOD_DELETE
);
+ $r->allow404 = true;
$r->send();
$this->deleteRepoFiles($repo);
@@ -130,6 +133,7 @@ class Database_Adapter_Elasticsearch_Indexer implements Database_IIndexer
$this->searchInstance . 'file/_query',
\HTTP_Request2::METHOD_DELETE
);
+ $r->allow404 = true;
$r->setBody(
json_encode(
(object)array(