class QueryString

Query string object to handle managing query string parameters and aggregating those parameters together as a string.

Hierarchy

Expanded class hierarchy of QueryString

3 files declare their use of QueryString
EntityEnclosingRequest.php in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/EntityEnclosingRequest.php
EntityEnclosingRequestInterface.php in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/EntityEnclosingRequestInterface.php
RequestInterface.php in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/RequestInterface.php

File

drupal/core/vendor/guzzle/http/Guzzle/Http/QueryString.php, line 10

Namespace

Guzzle\Http
View source
class QueryString extends Collection {

  /**
   * @var string Constant used to create blank query string values (e.g. ?foo)
   */
  const BLANK = "_guzzle_blank_";

  /**
   * @var string The query string field separator (e.g. '&')
   */
  protected $fieldSeparator = '&';

  /**
   * @var string The query string value separator (e.g. '=')
   */
  protected $valueSeparator = '=';

  /**
   * @var string The query string prefix
   */
  protected $prefix = '?';

  /**
   * @var bool URL encode fields and values?
   */
  protected $urlEncode = true;

  /**
   * @var callable A callback function for combining multi-valued query string values
   */
  protected $aggregator = array(
    __CLASS__,
    'aggregateUsingPhp',
  );

  /**
   * Parse a query string into a QueryString object
   *
   * @param string $query Query string to parse
   *
   * @return QueryString
   */
  public static function fromString($query) {
    $q = new static();
    if (!empty($query)) {
      if ($query[0] == '?') {
        $query = substr($query, 1);
      }
      foreach (explode('&', $query) as $kvp) {
        $parts = explode('=', $kvp, 2);
        $key = rawurldecode($parts[0]);
        if (substr($key, -2) == '[]') {
          $key = substr($key, 0, -2);
        }
        if (array_key_exists(1, $parts)) {
          $q
            ->add($key, rawurldecode(str_replace('+', '%20', $parts[1])));
        }
        else {
          $q
            ->add($key, '');
        }
      }
    }
    return $q;
  }

  /**
   * Convert the query string parameters to a query string string
   *
   * @return string
   */
  public function __toString() {
    if (empty($this->data)) {
      return '';
    }
    $queryString = $this->prefix;
    $firstValue = true;
    foreach ($this
      ->encodeData($this->data) as $name => $value) {
      $value = $value === null ? array(
        '',
      ) : (array) $value;
      foreach ($value as $v) {
        if ($firstValue) {
          $firstValue = false;
        }
        else {
          $queryString .= $this->fieldSeparator;
        }
        $queryString .= $name;
        if ($v !== self::BLANK) {
          $queryString .= $this->valueSeparator . $v;
        }
      }
    }
    return $queryString;
  }

  /**
   * Aggregate multi-valued parameters using PHP style syntax
   *
   * @param string $key    The name of the query string parameter
   * @param array  $value  The values of the parameter
   * @param bool   $encode Set to TRUE to encode field names and values
   *
   * @return array Returns an array of the combined values
   */
  public static function aggregateUsingPhp($key, array $value, $encode = false) {
    $ret = array();
    foreach ($value as $k => $v) {
      $k = "{$key}[{$k}]";
      if (is_array($v)) {
        $ret = array_merge($ret, self::aggregateUsingPhp($k, $v, $encode));
      }
      else {
        if ($encode) {
          $ret[rawurlencode($k)] = rawurlencode($v);
        }
        else {
          $ret[$k] = $v;
        }
      }
    }
    return $ret;
  }

  /**
   * Aggregate multi-valued parameters by joining the values using a comma
   *
   * @param string $key    The name of the query string parameter
   * @param array  $value  The values of the parameter
   * @param bool   $encode Set to TRUE to encode field names and values
   *
   * @return array Returns an array of the combined values
   */
  public static function aggregateUsingComma($key, array $value, $encode = false) {
    return $encode ? array(
      rawurlencode($key) => implode(',', array_map('rawurlencode', $value)),
    ) : array(
      $key => implode(',', $value),
    );
  }

  /**
   * Aggregate multi-valued parameters using duplicate values in a query string
   *
   * Example: http://test.com?q=1&q=2
   *
   * @param string $key    The name of the query string parameter
   * @param array  $value  The values of the parameter
   * @param bool   $encode Set to TRUE to encode field names and values
   *
   * @return array Returns an array of the combined values
   */
  public static function aggregateUsingDuplicates($key, array $value, $encode = false) {
    return $encode ? array(
      rawurlencode($key) => array_map('rawurlencode', $value),
    ) : array(
      $key => $value,
    );
  }

  /**
   * Get the query string field separator
   *
   * @return string
   */
  public function getFieldSeparator() {
    return $this->fieldSeparator;
  }

  /**
   * Get the query string prefix
   *
   * @return string
   */
  public function getPrefix() {
    return $this->prefix;
  }

  /**
   * Get the query string value separator
   *
   * @return string
   */
  public function getValueSeparator() {
    return $this->valueSeparator;
  }

  /**
   * Returns whether or not field names and values will be urlencoded
   *
   * @return bool
   */
  public function isUrlEncoding() {
    return $this->urlEncode;
  }

  /**
   * Provide a function for combining multi-valued query string parameters into a single or multiple fields
   *
   * @param callable|null $callback A function or callback array that accepts a $key, $value, $encodeFields, and
   *                                $encodeValues as arguments and returns an associative array containing the
   *                                combined values. Set to null to remove any custom aggregator.
   * @return QueryString
   * @see \Guzzle\Http\QueryString::aggregateUsingComma()
   */
  public function setAggregateFunction($callback) {
    $this->aggregator = $callback;
  }

  /**
   * Set whether or not field names and values should be rawurlencoded
   *
   * @param bool $encode Set whether or not to encode
   *
   * @return QueryString
   */
  public function useUrlEncoding($encode) {
    $this->urlEncode = $encode;
    return $this;
  }

  /**
   * Set the query string separator
   *
   * @param string $separator The query string separator that will separate fields
   *
   * @return QueryString
   */
  public function setFieldSeparator($separator) {
    $this->fieldSeparator = $separator;
    return $this;
  }

  /**
   * Set the query string prefix
   *
   * @param string $prefix Prefix to use with the query string (e.g. '?')
   *
   * @return QueryString
   */
  public function setPrefix($prefix) {
    $this->prefix = $prefix;
    return $this;
  }

  /**
   * Set the query string value separator
   *
   * @param string $separator The query string separator that will separate values from fields
   *
   * @return QueryString
   */
  public function setValueSeparator($separator) {
    $this->valueSeparator = $separator;
    return $this;
  }

  /**
   * Returns an array of url encoded field names and values
   *
   * @return array
   */
  public function urlEncode() {
    return $this
      ->encodeData($this->data);
  }

  /**
   * Url encode parameter data.
   *
   * If a parameter value is an array and no aggregator has been set, the values of the array will be converted into
   * a PHP compatible form array. If an aggregator is set, the values will be converted using the aggregator function
   *
   * @param array $data The data to encode
   *
   * @return array Returns an array of encoded values and keys
   */
  protected function encodeData(array $data) {
    $temp = array();
    foreach ($data as $key => $value) {
      if (is_array($value)) {
        $temp = array_merge($temp, call_user_func_array($this->aggregator, array(
          $key,
          $value,
          $this->urlEncode,
        )));
      }
      else {
        if ($this->urlEncode) {
          $temp[rawurlencode($key)] = rawurlencode($value);
        }
        else {
          $temp[$key] = (string) $value;
        }
      }
    }
    return $temp;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Collection::$data protected property
Collection::add public function Add a value to a key. If a key of the same name has already been added, the key value will be converted into an array and the new value will be pushed to the end of the array.
Collection::clear public function Removes all key value pairs
Collection::count public function Return the number of keys
Collection::filter public function Iterates over each key value pair in the collection passing them to the Closure. If the Closure function returns true, the current value from input is returned into the result Collection. The Closure must accept three parameters: (string) $key,…
Collection::fromConfig public static function Create a new collection from an array, validate the keys, and add default values where missing
Collection::get public function Get a specific key value.
Collection::getAll public function Get all or a subset of matching key value pairs
Collection::getIterator public function Get an iterator object
Collection::getKeys public function Get all keys in the collection
Collection::getPregMatchValue public function Return a collection value for a match array of a preg_replace function
Collection::hasKey public function Returns whether or not the specified key is present.
Collection::hasValue public function Checks if any keys contains a certain value
Collection::inject public function Inject configuration settings into an input string
Collection::keySearch public function Case insensitive search the keys in the collection
Collection::map public function Returns a Collection containing all the elements of the collection after applying the callback function to each one. The Closure should accept three parameters: (string) $key, (string) $value, (array) $context and return a modified value
Collection::merge public function Add and merge in a Collection or array of key value pair data.
Collection::offsetExists public function ArrayAccess implementation of offsetExists()
Collection::offsetGet public function ArrayAccess implementation of offsetGet()
Collection::offsetSet public function ArrayAccess implementation of offsetGet()
Collection::offsetUnset public function ArrayAccess implementation of offsetUnset()
Collection::remove public function Remove a specific key value pair
Collection::replace public function Replace the data of the object with the value of an array
Collection::set public function Set a key value pair
Collection::toArray public function Get the array representation of an object Overrides ToArrayInterface::toArray
Collection::__construct public function Constructor
QueryString::$aggregator protected property
QueryString::$fieldSeparator protected property
QueryString::$prefix protected property
QueryString::$urlEncode protected property
QueryString::$valueSeparator protected property
QueryString::aggregateUsingComma public static function Aggregate multi-valued parameters by joining the values using a comma
QueryString::aggregateUsingDuplicates public static function Aggregate multi-valued parameters using duplicate values in a query string
QueryString::aggregateUsingPhp public static function Aggregate multi-valued parameters using PHP style syntax
QueryString::BLANK constant
QueryString::encodeData protected function Url encode parameter data.
QueryString::fromString public static function Parse a query string into a QueryString object
QueryString::getFieldSeparator public function Get the query string field separator
QueryString::getPrefix public function Get the query string prefix
QueryString::getValueSeparator public function Get the query string value separator
QueryString::isUrlEncoding public function Returns whether or not field names and values will be urlencoded
QueryString::setAggregateFunction public function Provide a function for combining multi-valued query string parameters into a single or multiple fields
QueryString::setFieldSeparator public function Set the query string separator
QueryString::setPrefix public function Set the query string prefix
QueryString::setValueSeparator public function Set the query string value separator
QueryString::urlEncode public function Returns an array of url encoded field names and values
QueryString::useUrlEncoding public function Set whether or not field names and values should be rawurlencoded
QueryString::__toString public function Convert the query string parameters to a query string string