You are here

public static function OAuthUtil::build_http_query in jQuery social stream 8

Same name and namespace in other branches
  1. 8.2 src/Twitter/OAuthUtil.php \Drupal\jquery_social_stream\Twitter\OAuthUtil::build_http_query()
2 calls to OAuthUtil::build_http_query()
OAuthRequest::get_signable_parameters in src/Twitter/OAuthRequest.php
The request parameters, sorted and concatenated into a normalized string.
OAuthRequest::to_postdata in src/Twitter/OAuthRequest.php
builds the data one would send in a POST request

File

src/Twitter/OAuthUtil.php, line 138

Class

OAuthUtil

Namespace

Drupal\jquery_social_stream\Twitter

Code

public static function build_http_query($params) {
  if (!$params) {
    return '';
  }

  // Urlencode both keys and values
  $keys = OAuthUtil::urlencode_rfc3986(array_keys($params));
  $values = OAuthUtil::urlencode_rfc3986(array_values($params));
  $params = array_combine($keys, $values);

  // Parameters are sorted by name, using lexicographical byte value ordering.
  // Ref: Spec: 9.1.1 (1)
  uksort($params, 'strcmp');
  $pairs = array();
  foreach ($params as $parameter => $value) {
    if (is_array($value)) {

      // If two or more parameters share the same name, they are sorted by their value
      // Ref: Spec: 9.1.1 (1)
      natsort($value);
      foreach ($value as $duplicate_value) {
        $pairs[] = $parameter . '=' . $duplicate_value;
      }
    }
    else {
      $pairs[] = $parameter . '=' . $value;
    }
  }

  // For each parameter, the name is separated from the corresponding value by an '=' character (ASCII code 61)
  // Each name-value pair is separated by an '&' character (ASCII code 38)
  return implode('&', $pairs);
}