Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Search URL #386

Merged
merged 1 commit into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
152 changes: 152 additions & 0 deletions src/Api/Search/SearchApi.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
<?php
/**
* This file is part of the Cloudinary PHP package.
*
* (c) Cloudinary
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cloudinary\Api\Search;

use Cloudinary\Api\ApiClient;
use Cloudinary\Api\ApiResponse;
use Cloudinary\Api\Exception\GeneralError;
use Cloudinary\Asset\SearchAsset;
use Cloudinary\Asset\SearchAssetTrait;
use GuzzleHttp\Promise\PromiseInterface;
use JsonSerializable;

/**
* Class SearchApi
*
* The Cloudinary API search method allows you fine control on filtering and retrieving information on all the assets
* in your cloud with the help of query expressions in a Lucene-like query language. A few examples of what you can
* accomplish using the search method include:
*
* * Searching by descriptive attributes such as public ID, filename, folders, tags, context, etc.
* * Searching by file details such as type, format, file size, dimensions, etc.
* * Searching by embedded data such as Exif, XMP, etc.
* * Searching by analyzed data such as the number of faces, predominant colors, auto-tags, etc.
* * Requesting aggregation counts on specified parameters, for example the number of assets found broken down by file
* format.
*
* @api
*/
class SearchApi implements JsonSerializable, SearchQueryInterface
{
use SearchQueryTrait;
use SearchAssetTrait;

/**
* @internal
*/
const ASSETS = 'resources';

/**
* @var string The Search API endpoint.
*/
private $endpoint = self::ASSETS;

/**
* @var ApiClient $apiClient The HTTP API client instance.
*/
protected $apiClient;

/**
* @var SearchAsset $searchAsset The Search Asset for building Search URL.
*/
protected $searchAsset;

/**
* SearchApi constructor.
*
* @param mixed $configuration
*/
public function __construct($configuration = null)
{
$this->apiClient = new ApiClient($configuration);
$this->searchAsset = new SearchAsset($configuration);
}

/**
* Sets the Search API endpoint.
*
* @param string $endpoint The endpoint for the Search API.
*
* @return $this
*/
public function endpoint($endpoint)
{
$this->endpoint = $endpoint;

return $this;
}

/**
* Executes the search API request asynchronously.
*
* @return PromiseInterface
*
* @api
*/
public function executeAsync()
{
return $this->apiClient->postJsonAsync($this->getSearchEndpoint(), $this);
}

/**
* Executes the search API request.
*
* @return ApiResponse
*
* @throws GeneralError
*
* @api
*/
public function execute()
{
return $this->executeAsync()->wait();
}

/**
* Creates a signed Search URL that can be used on the client side.
*
* @param int $ttl The time to live in seconds.
* @param string $nextCursor Starting position.
*
* @return string The resulting search URL.
*/
public function toUrl($ttl = null, $nextCursor = null)
{
$this->searchAsset->query($this->asArray());

if ($ttl == null) {
$ttl = $this->ttl;
}

return $this->searchAsset->toUrl($ttl, $nextCursor);
}

/**
* Serializes to JSON.
*
* @return array data which can be serialized by <b>json_encode</b>
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->asArray();
}

/**
* Returns the search endpoint.
*
* @return string
*/
private function getSearchEndpoint()
{
return "{$this->endpoint}/search";
}
}
File renamed without changes.
38 changes: 38 additions & 0 deletions src/Api/Search/SearchQueryInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

namespace Cloudinary\Api\Search;

/**
* Interface SearchQueryInterface.
*/
interface SearchQueryInterface
{
/**
* @internal
*/
const SORT_BY = 'sort_by';
/**
* @internal
*/
const AGGREGATE = 'aggregate';
/**
* @internal
*/
const WITH_FIELD = 'with_field';
/**
* @internal
*/
const EXPRESSION = 'expression';
/**
* @internal
*/
const MAX_RESULTS = 'max_results';
/**
* @internal
*/
const NEXT_CURSOR = 'next_cursor';
/**
* @internal
*/
const KEYS_WITH_UNIQUE_VALUES = [self::SORT_BY, self::AGGREGATE, self::WITH_FIELD];
}
142 changes: 8 additions & 134 deletions src/Api/SearchApi.php → src/Api/Search/SearchQueryTrait.php
Original file line number Diff line number Diff line change
@@ -1,78 +1,14 @@
<?php
/**
* This file is part of the Cloudinary PHP package.
*
* (c) Cloudinary
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Cloudinary\Api\Search;

use Cloudinary\Api\ApiClient;
use Cloudinary\Api\ApiResponse;
use Cloudinary\Api\Exception\GeneralError;
use Cloudinary\ArrayUtils;
use GuzzleHttp\Promise\PromiseInterface;
use JsonSerializable;

/**
* Class SearchApi
*
* The Cloudinary API search method allows you fine control on filtering and retrieving information on all the assets
* in your cloud with the help of query expressions in a Lucene-like query language. A few examples of what you can
* accomplish using the search method include:
*
* * Searching by descriptive attributes such as public ID, filename, folders, tags, context, etc.
* * Searching by file details such as type, format, file size, dimensions, etc.
* * Searching by embedded data such as Exif, XMP, etc.
* * Searching by analyzed data such as the number of faces, predominant colors, auto-tags, etc.
* * Requesting aggregation counts on specified parameters, for example the number of assets found broken down by file
* format.
*
* @api
* Trait SearchQueryTrait
*/
class SearchApi implements JsonSerializable
trait SearchQueryTrait
{
/**
* @internal
*/
const SORT_BY = 'sort_by';
/**
* @internal
*/
const AGGREGATE = 'aggregate';
/**
* @internal
*/
const WITH_FIELD = 'with_field';
/**
* @internal
*/
const EXPRESSION = 'expression';
/**
* @internal
*/
const MAX_RESULTS = 'max_results';
/**
* @internal
*/
const NEXT_CURSOR = 'next_cursor';
/**
* @internal
*/
const KEYS_WITH_UNIQUE_VALUES = [self::SORT_BY, self::AGGREGATE, self::WITH_FIELD];
/**
* @internal
*/
const ASSETS = 'resources';

/**
* @var string The Search API endpoint.
*/
private $endpoint = self::ASSETS;

/**
* @var array query object that includes the search query
*/
Expand All @@ -83,35 +19,6 @@ class SearchApi implements JsonSerializable
self::WITH_FIELD => [],
];

/**
* @var ApiClient $apiClient The HTTP API client instance.
*/
protected $apiClient;

/**
* SearchApi constructor.
*
* @param mixed $configuration
*/
public function __construct($configuration = null)
{
$this->apiClient = new ApiClient($configuration);
}

/**
* Sets the Search API endpoint.
*
* @param string $endpoint The endpoint for the Search API.
*
* @return $this
*/
public function endpoint($endpoint)
{
$this->endpoint = $endpoint;

return $this;
}

/**
* Sets the query string for filtering the assets in your cloud.
*
Expand Down Expand Up @@ -223,29 +130,17 @@ public function withField($value)
}

/**
* Executes the search API request asynchronously.
* Sets the search query.
*
* @return PromiseInterface
* @param array $query The search query.
*
* @api
* @return $this
*/
public function executeAsync()
public function query($query)
{
return $this->apiClient->postJsonAsync($this->getSearchEndpoint(), $this);
}
$this->query = $query;

/**
* Executes the search API request.
*
* @return ApiResponse
*
* @throws GeneralError
*
* @api
*/
public function execute()
{
return $this->executeAsync()->wait();
return $this;
}

/**
Expand All @@ -270,25 +165,4 @@ static function ($value) {
)
);
}

/**
* Serializes to JSON.
*
* @return array data which can be serialized by <b>json_encode</b>
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->asArray();
}

/**
* Returns the search endpoint.
*
* @return string
*/
private function getSearchEndpoint()
{
return "{$this->endpoint}/search";
}
}
2 changes: 1 addition & 1 deletion src/Asset/AssetFinalizerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ protected function finalizeAssetType()

$finalAssetType = $suffixSupportedDeliveryTypes[$this->asset->assetType][$this->asset->deliveryType];
} else {
$finalAssetType = implode('/', [$this->asset->assetType, $this->asset->deliveryType]);
$finalAssetType = ArrayUtils::implodeUrl([$this->asset->assetType, $this->asset->deliveryType]);
}

return $finalAssetType;
Expand Down