承接 betalabs/amazon-es-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

betalabs/amazon-es-php

最新稳定版本:0.3.0

Composer 安装命令:

composer require betalabs/amazon-es-php

包简介

Support for using IAM authentication with the official Elasticsearch PHP client

README 文档

README

Apache 2 License Total Downloads Author Build Status

This package provides a signing handler for use with the official Elasticsearch-PHP (elasticsearch/elasticsearch) client. By default, the handler will load AWS credentials from the environment and send requests using a RingPHP cURL handler.

Basic Usage

Instances of Aws\ElasticsearchService\ElasticsearchPhpHandler are callables that fulfill Elasticsearch-PHP's handler contract. They can be passed to Elasticsearch\ClientBuilder's setHandler method:

use Aws\ElasticsearchService\ElasticsearchPhpHandler; use Elasticsearch\ClientBuilder; // Create a handler (with the region of your Amazon Elasticsearch Service domain) $handler = new ElasticsearchPhpHandler('us-west-2'); // Use this handler to create an Elasticsearch-PHP client $client = ClientBuilder::create() ->setHandler($handler) ->setHosts(['https://search-foo-3gn4utxfus5cqpn89go4z5lbsm.us-west-2.es.amazonaws.com:443']) ->build(); // Use the client as you normally would $client->index([ 'index' => $index, 'type' => $type, 'id' => $id, 'body' => [$key => $value] ]);

Using custom credentials

By default, the handler will attempt to source credentials from the environment as described in the AWS SDK for PHP documentation. To use custom credentials, pass in a credential provider:

use Aws\Credentials\CredentialProvider; use Aws\Credentials\Credentials; use Aws\ElasticsearchService\ElasticsearchPhpHandler; $provider = CredentialProvider::fromCredentials( new Credentials('foo', 'bar', 'baz') ); $handler = new ElasticsearchPhpHandler('us-west-2', $provider);

Using a custom HTTP handler

By default, the handler will use Elasticsearch\ClientBuilder::defaultHandler() to dispatch HTTP requests, but this is customizable via an optional constructor parameter. For example, this repository's tests use a custom handler to mock network traffic:

class ElasticsearchPhpHandlerTest extends \PHPUnit_Framework_TestCase { public function testSignsRequestsPassedToHandler() { $toWrap = function (array $ringRequest) { $this->assertArrayHasKey('X-Amz-Date', $ringRequest['headers']); $this->assertArrayHasKey('Authorization', $ringRequest['headers']); $this->assertStringStartsWith( 'AWS4-HMAC-SHA256 Credential=', $ringRequest['headers']['Authorization'][0] ); return $this->getGenericResponse(); }; $handler = new ElasticsearchPhpHandler('us-west-2', null, $toWrap); $client = \Elasticsearch\ClientBuilder::create() ->setHandler($handler) ->build(); $client->get([ 'index' => 'index', 'type' => 'type', 'id' => 'id', ]); } ... }

Installation

Composer

composer require jsq/amazon-es-php 

统计信息

  • 总下载量: 13.04k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 29
  • 开发语言: PHP

其他信息

  • 授权协议: Apache-2.0
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固