Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/public_html/core/components/phpthumbof/model/aws/services/ |
<?php /* * Copyright 2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /** * File: AmazonSQS * Amazon Simple Queue Service (Amazon SQS) offers a reliable, highly scalable, hosted queue for * storing messages as they travel between computers. By using Amazon SQS, developers can simply move * data between distributed components of their applications that perform different tasks, without * losing messages or requiring each component to be always available. Amazon SQS makes it easy to * build an automated workflow, working in close conjunction with the Amazon Elastic Compute Cloud * (Amazon EC2) and the other AWS infrastructure web services. * * Amazon SQS works by exposing Amazon's web-scale messaging infrastructure as a web service. Any * computer on the Internet can add or read messages without any installed software or special firewall * configurations. Components of applications using Amazon SQS can run independently, and do not need * to be on the same network, developed with the same technologies, or running at the same time. * * Visit [http://aws.amazon.com/sqs/](http://aws.amazon.com/sqs/) for more information. * * Version: * Thu Sep 30 17:33:34 PDT 2010 * * License and Copyright: * See the included NOTICE.md file for complete information. * * See Also: * [Amazon Simple Queue Service](http://aws.amazon.com/sqs/) * [Amazon Simple Queue Service documentation](http://aws.amazon.com/documentation/sqs/) */ /*%******************************************************************************************%*/ // EXCEPTIONS /** * Exception: SQS_Exception * Default SQS Exception. */ class SQS_Exception extends Exception {} /*%******************************************************************************************%*/ // MAIN CLASS /** * Class: AmazonSQS * Container for all service-related methods. */ class AmazonSQS extends CFRuntime { /*%******************************************************************************************%*/ // CLASS CONSTANTS /** * Constant: DEFAULT_URL * Specify the default queue URL. */ const DEFAULT_URL = 'sqs.us-east-1.amazonaws.com'; /** * Constant: REGION_US_E1 * Specify the queue URL for the US-East (Northern Virginia) Region. */ const REGION_US_E1 = self::DEFAULT_URL; /** * Constant: REGION_US_W1 * Specify the queue URL for the US-West (Northern California) Region. */ const REGION_US_W1 = 'sqs.us-west-1.amazonaws.com'; /** * Constant: REGION_EU_W1 * Specify the queue URL for the EU (Ireland) Region. */ const REGION_EU_W1 = 'sqs.eu-west-1.amazonaws.com'; /** * Constant: REGION_APAC_SE1 * Specify the queue URL for the Asia Pacific (Singapore) Region. */ const REGION_APAC_SE1 = 'sqs.ap-southeast-1.amazonaws.com'; /*%******************************************************************************************%*/ // SETTERS /** * Method: set_region() * This allows you to explicitly sets the region for the service to use. * * Access: * public * * Parameters: * $region - _string_ (Required) The region to explicitly set. Available options are <REGION_US_E1>, <REGION_US_W1>, <REGION_EU_W1>, or <REGION_APAC_SE1>. * * Returns: * `$this` */ public function set_region($region) { $this->set_hostname($region); return $this; } /*%******************************************************************************************%*/ // CONVENIENCE METHODS /** * Method: get_queue_size() * Returns the approximate number of messages in the queue. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) The queue URL to perform the action on. Retrieved when the queue is first created. * * Returns: * _mixed_ The Approximate number of messages in the queue as an integer. If the queue doesn't exist, it returns the entire <CFResponse> object. */ public function get_queue_size($queue_url) { $response = $this->get_queue_attributes($queue_url, array( 'AttributeName' => 'ApproximateNumberOfMessages' )); if (!$response->isOK()) { return $response; } return (integer) $response->body->Value(0); } /** * Method: get_queue_list() * ONLY lists the queue URLs, as an array, on the SQS account. * * Access: * public * * Parameters: * $pcre - _string_ (Optional) A Perl-Compatible Regular Expression (PCRE) to filter the names against. * * Returns: * _array_ The list of matching queue names. If there are no results, the method will return an empty array. * * See Also: * [Perl-Compatible Regular Expression (PCRE) Docs](http://php.net/pcre) */ public function get_queue_list($pcre = null) { if ($this->use_batch_flow) { throw new SQS_Exception(__FUNCTION__ . '() cannot be batch requested'); } // Get a list of queues. $list = $this->list_queues(); if ($list = $list->body->QueueUrl()) { $list = $list->map_string($pcre); return $list; } return array(); } /*%******************************************************************************************%*/ // CONSTRUCTOR /** * Method: __construct() * Constructs a new instance of <AmazonSQS>. * * Access: * public * * Parameters: * $key - _string_ (Optional) Your Amazon API Key. If blank, it will look for the <AWS_KEY> constant. * $secret_key - _string_ (Optional) Your Amazon API Secret Key. If blank, it will look for the <AWS_SECRET_KEY> constant. * * Returns: * _boolean_ false if no valid values are set, otherwise true. */ public function __construct($key = null, $secret_key = null) { $this->api_version = '2009-02-01'; $this->hostname = self::DEFAULT_URL; if (!$key && !defined('AWS_KEY')) { throw new SQS_Exception('No account key was passed into the constructor, nor was it set in the AWS_KEY constant.'); } if (!$secret_key && !defined('AWS_SECRET_KEY')) { throw new SQS_Exception('No account secret was passed into the constructor, nor was it set in the AWS_SECRET_KEY constant.'); } return parent::__construct($key, $secret_key); } /*%******************************************************************************************%*/ // SERVICE METHODS /** * Method: list_queues() * The ListQueues action returns a list of your queues. * * Access: * public * * Parameters: * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * QueueNamePrefix - _string_ (Optional) A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned. * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function list_queues($opt = null) { if (!$opt) $opt = array(); return $this->authenticate('ListQueues', $opt, $this->hostname); } /** * Method: set_queue_attributes() * Sets an attribute of a queue. Currently, you can set only the VisibilityTimeout attribute for a * queue. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $attribute - _ComplexList_ (Required) A list of attributes to set. A **required** ComplexList is an indexed array of ComplexTypes -- each of which must be set by passing a nested associative array with the following `Attribute`-prefixed entries as keys. `x`/`y`/`z` should be integers, starting at `1`. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $attribute parameter: * Name - _string_ (Optional) Hello World * Value - _string_ (Optional) * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function set_queue_attributes($queue_url, $attribute, $opt = null) { if (!$opt) $opt = array(); // Required parameter $opt = array_merge($opt, CFComplexType::map(array( 'Attribute' => (is_array($attribute) ? $attribute : array($attribute)) ))); return $this->authenticate('SetQueueAttributes', $opt, $queue_url); } /** * Method: change_message_visibility() * The ChangeMessageVisibility action changes the visibility timeout of a specified message in a queue * to a new value. The maximum allowed timeout value you can set the value to is 12 hours. This means * you can't extend the timeout of a message in an existing queue to more than a total visibility * timeout of 12 hours. (For more information visibility timeout, see Visibility Timeout in the Amazon * SQS Developer Guide.) * * For example, let's say you have a message and its default message visibility timeout is 30 minutes. * You could call ChangeMessageVisiblity with a value of two hours and the effective timeout would be * two hours and 30 minutes. When that time comes near you could again extend the time out by calling * ChangeMessageVisiblity, but this time the maximum allowed timeout would be 9 hours and 30 minutes. * * If you attempt to set the VisibilityTimeout to an amount more than the maximum time left, Amazon * SQS returns an error. It will not automatically recalculate and increase the timeout to the maximum * time remaining. * * Unlike with a queue, when you change the visibility timeout for a specific message, that timeout * value is applied immediately but is not saved in memory for that message. If you don't delete a * message after it is received, the visibility timeout for the message the next time it is received * reverts to the original timeout value, not the value you set with the ChangeMessageVisibility * action. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $receipt_handle - _string_ (Required) The receipt handle associated with the message whose visibility timeout the client wants to change. * $visibility_timeout - _integer_ (Required) The new value (in seconds) for the message's visibility timeout. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function change_message_visibility($queue_url, $receipt_handle, $visibility_timeout, $opt = null) { if (!$opt) $opt = array(); $opt['ReceiptHandle'] = $receipt_handle; $opt['VisibilityTimeout'] = $visibility_timeout; return $this->authenticate('ChangeMessageVisibility', $opt, $queue_url); } /** * Method: create_queue() * The CreateQueue action creates a new queue, or returns the URL of an existing one. When you request * CreateQueue, you provide a name for the queue. To successfully create a new queue, you must provide * a name that is unique within the scope of your own queues. If you provide the name of an existing * queue, a new queue isn't created and an error isn't returned. Instead, the request succeeds and the * queue URL for the existing queue is returned. * * If you provide a value for DefaultVisibilityTimeout that is different from the value for the * existing queue, you receive an error. * * Access: * public * * Parameters: * $queue_name - _string_ (Required) The name to use for the created queue. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * DefaultVisibilityTimeout - _integer_ (Optional) The visibility timeout (in seconds) to use for the created queue. * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function create_queue($queue_name, $opt = null) { if (!$opt) $opt = array(); $opt['QueueName'] = $queue_name; return $this->authenticate('CreateQueue', $opt, $this->hostname); } /** * Method: remove_permission() * The RemovePermission action revokes any permissions in the queue policy that matches the specified * Label parameter. Only the owner of the queue can remove permissions. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $label - _string_ (Required) The identfication of the permission to remove. This is the label added with the AddPermission operation. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function remove_permission($queue_url, $label, $opt = null) { if (!$opt) $opt = array(); $opt['Label'] = $label; return $this->authenticate('RemovePermission', $opt, $queue_url); } /** * Method: get_queue_attributes() * Gets one or all attributes of a queue. Queues currently have two attributes you can get: * ApproximateNumberOfMessages and VisibilityTimeout. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * AttributeName - _string_|_array_ (Optional) A list of attributes to get. Pass a string for a single value, or an indexed array for multiple values.. * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function get_queue_attributes($queue_url, $opt = null) { if (!$opt) $opt = array(); // Optional parameter if (isset($opt['AttributeName'])) { $opt = array_merge($opt, CFComplexType::map(array( 'AttributeName' => (is_array($opt['AttributeName']) ? $opt['AttributeName'] : array($opt['AttributeName'])) ))); unset($opt['AttributeName']); } return $this->authenticate('GetQueueAttributes', $opt, $queue_url); } /** * Method: add_permission() * The AddPermission action adds a permission to a queue for a specific principal. This allows for * sharing access to the queue. * * When you create a queue, you have full control access rights for the queue. Only you (as owner of * the queue) can grant or deny permissions to the queue. For more information about these permissions, * see Shared Queues in the Amazon SQS Developer Guide. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $label - _string_ (Required) * $account_id - _string_|_array_ (Required) The AWS account number of the principal who will be given permission. The principal must have an AWS account, but does not need to be signed up for Amazon SQS. Pass a string for a single value, or an indexed array for multiple values.. * $action_name - _string_|_array_ (Required) The action the client wants to allow for the specified principal. Pass a string for a single value, or an indexed array for multiple values.. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function add_permission($queue_url, $label, $account_id, $action_name, $opt = null) { if (!$opt) $opt = array(); $opt['Label'] = $label; // Required parameter $opt = array_merge($opt, CFComplexType::map(array( 'AWSAccountId' => (is_array($account_id) ? $account_id : array($account_id)) ))); // Required parameter $opt = array_merge($opt, CFComplexType::map(array( 'ActionName' => (is_array($action_name) ? $action_name : array($action_name)) ))); return $this->authenticate('AddPermission', $opt, $queue_url); } /** * Method: delete_queue() * This action unconditionally deletes the queue specified by the queue URL. Use this operation WITH * CARE! The queue is deleted even if it is NOT empty. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function delete_queue($queue_url, $opt = null) { if (!$opt) $opt = array(); return $this->authenticate('DeleteQueue', $opt, $queue_url); } /** * Method: delete_message() * The DeleteMessage action unconditionally removes the specified message from the specified queue. * Even if the message is locked by another reader due to the visibility timeout setting, it is still * deleted from the queue. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $receipt_handle - _string_ (Required) The receipt handle associated with the message to delete. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function delete_message($queue_url, $receipt_handle, $opt = null) { if (!$opt) $opt = array(); $opt['ReceiptHandle'] = $receipt_handle; return $this->authenticate('DeleteMessage', $opt, $queue_url); } /** * Method: send_message() * The SendMessage action delivers a message to the specified queue. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $message_body - _string_ (Required) The message to send. * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function send_message($queue_url, $message_body, $opt = null) { if (!$opt) $opt = array(); $opt['MessageBody'] = $message_body; return $this->authenticate('SendMessage', $opt, $queue_url); } /** * Method: receive_message() * Retrieves one or more messages from the specified queue, including the message body and message ID * of each message. Messages returned by this action stay in the queue until you delete them. However, * once a message is returned to a ReceiveMessage request, it is not returned on subsequent * ReceiveMessage requests for the duration of the VisibilityTimeout. If you do not specify a * VisibilityTimeout in the request, the overall visibility timeout for the queue is used for the * returned messages. * * Access: * public * * Parameters: * $queue_url - _string_ (Required) * $opt - _array_ (Optional) An associative array of parameters that can have the keys listed in the following section. * * Keys for the $opt parameter: * AttributeName - _string_|_array_ (Optional) A list of attributes to get. Pass a string for a single value, or an indexed array for multiple values.. * MaxNumberOfMessages - _integer_ (Optional) The maximum number of messages to return. Amazon SQS never returns more messages than this value but may return fewer. All of the messages are not necessarily returned. * VisibilityTimeout - _integer_ (Optional) The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request. * returnCurlHandle - _boolean_ (Optional) A private toggle specifying that the cURL handle be returned rather than actually completing the request. This toggle is useful for manually managed batch requests. * * Returns: * _CFResponse_ A <CFResponse> object containing a parsed HTTP response. */ public function receive_message($queue_url, $opt = null) { if (!$opt) $opt = array(); // Optional parameter if (isset($opt['AttributeName'])) { $opt = array_merge($opt, CFComplexType::map(array( 'AttributeName' => (is_array($opt['AttributeName']) ? $opt['AttributeName'] : array($opt['AttributeName'])) ))); unset($opt['AttributeName']); } return $this->authenticate('ReceiveMessage', $opt, $queue_url); } }