-
Notifications
You must be signed in to change notification settings - Fork 980
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82121d9
commit 0acccc6
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<?php | ||
|
||
namespace Elasticsearch\Endpoints; | ||
|
||
use Elasticsearch\Common\Exceptions\InvalidArgumentException; | ||
use Elasticsearch\Common\Exceptions; | ||
|
||
/** | ||
* Class FieldCaps | ||
* | ||
* @category Elasticsearch | ||
* @package Elasticsearch\Endpoints | ||
* @author Zachary Tong <[email protected]> | ||
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2 | ||
* @link http://elastic.co | ||
*/ | ||
class FieldCaps extends AbstractEndpoint | ||
{ | ||
/** | ||
* @param array $body | ||
* | ||
* @throws \Elasticsearch\Common\Exceptions\InvalidArgumentException | ||
* @return $this | ||
*/ | ||
public function setBody($body) | ||
{ | ||
if (isset($body) !== true) { | ||
return $this; | ||
} | ||
|
||
$this->body = $body; | ||
return $this; | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getURI() | ||
{ | ||
$index = $this->index; | ||
|
||
if (isset($index) === true ) { | ||
return "/$index/_field_caps"; | ||
} else { | ||
return "/_field_caps"; | ||
} | ||
} | ||
|
||
/** | ||
* @return string[] | ||
*/ | ||
public function getParamWhitelist() | ||
{ | ||
return array( | ||
'fields', | ||
'ignore_unavailable', | ||
'allow_no_indices', | ||
'expand_wildcards' | ||
); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getMethod() | ||
{ | ||
return 'GET'; | ||
} | ||
} |