/**
  * Add a cookie to the request. If the client has no Cookie Jar, the cookies
  * will be added directly to the headers array as "Cookie" headers.
  *
  * @param EHttpCookie|string $cookie
  * @param string|null $value If "cookie" is a string, this is the cookie value.
  * @return EHttpClient
  * @throws EHttpClientException
  */
 public function setCookie($cookie, $value = null)
 {
     if (!class_exists('EHttpCookie')) {
         require_once 'EHttpCookie.php';
     }
     if (is_array($cookie)) {
         foreach ($cookie as $c => $v) {
             if (is_string($c)) {
                 $this->setCookie($c, $v);
             } else {
                 $this->setCookie($v);
             }
         }
         return $this;
     }
     if ($value !== null && $this->config['encodecookies']) {
         $value = urlencode($value);
     }
     if (isset($this->cookiejar)) {
         if ($cookie instanceof EHttpCookie) {
             $this->cookiejar->addCookie($cookie);
         } elseif (is_string($cookie) && $value !== null) {
             $cookie = EHttpCookie::fromString("{$cookie}={$value}", $this->uri, $this->config['encodecookies']);
             $this->cookiejar->addCookie($cookie);
         }
     } else {
         if ($cookie instanceof EHttpCookie) {
             $name = $cookie->getName();
             $value = $cookie->getValue();
             $cookie = $name;
         }
         if (preg_match("/[=,; \t\r\n\v\f]/", $cookie)) {
             throw new EHttpClientException(Yii::t('EHttpClient', "Cookie name cannot contain these characters: =,; \t\r\n\v\f ({$cookie})"));
         }
         $value = addslashes($value);
         if (!isset($this->headers['cookie'])) {
             $this->headers['cookie'] = array('Cookie', '');
         }
         $this->headers['cookie'][1] .= $cookie . '=' . $value . '; ';
     }
     return $this;
 }
Exemple #2
0
 /**
  * Return a subset of a domain-matching cookies that also match a specified path
  *
  * Returned array is actually an array of pointers to items in the $passed array.
  *
  * @param array $dom_array
  * @param string $path
  * @return array
  */
 protected function _matchPath($domains, $path)
 {
     $ret = array();
     foreach ($domains as $dom => $paths_array) {
         foreach (array_keys($paths_array) as $cpath) {
             if (EHttpCookie::matchCookiePath($cpath, $path)) {
                 if (!isset($ret[$dom])) {
                     $ret[$dom] = array();
                 }
             }
             $ret[$dom][$cpath] = $paths_array[$cpath];
         }
     }
     return $ret;
 }