123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <?php
-
-
-
- class Requests_Session {
-
-
- public $url = null;
-
-
-
- public $headers = array();
-
-
-
- public $data = array();
-
-
-
- public $options = array();
-
-
-
- public function __construct($url = null, $headers = array(), $data = array(), $options = array()) {
- $this->url = $url;
- $this->headers = $headers;
- $this->data = $data;
- $this->options = $options;
-
- if (empty($this->options['cookies'])) {
- $this->options['cookies'] = new Requests_Cookie_Jar();
- }
- }
-
-
-
- public function __get($key) {
- if (isset($this->options[$key])) {
- return $this->options[$key];
- }
-
- return null;
- }
-
-
-
- public function __set($key, $value) {
- $this->options[$key] = $value;
- }
-
-
-
- public function __isset($key) {
- return isset($this->options[$key]);
- }
-
-
-
- public function __unset($key) {
- if (isset($this->options[$key])) {
- unset($this->options[$key]);
- }
- }
-
-
-
-
-
- public function get($url, $headers = array(), $options = array()) {
- return $this->request($url, $headers, null, Requests::GET, $options);
- }
-
-
-
- public function head($url, $headers = array(), $options = array()) {
- return $this->request($url, $headers, null, Requests::HEAD, $options);
- }
-
-
-
- public function delete($url, $headers = array(), $options = array()) {
- return $this->request($url, $headers, null, Requests::DELETE, $options);
- }
-
-
-
-
-
-
- public function post($url, $headers = array(), $data = array(), $options = array()) {
- return $this->request($url, $headers, $data, Requests::POST, $options);
- }
-
-
-
- public function put($url, $headers = array(), $data = array(), $options = array()) {
- return $this->request($url, $headers, $data, Requests::PUT, $options);
- }
-
-
-
- public function patch($url, $headers, $data = array(), $options = array()) {
- return $this->request($url, $headers, $data, Requests::PATCH, $options);
- }
-
-
-
-
- public function request($url, $headers = array(), $data = array(), $type = Requests::GET, $options = array()) {
- $request = $this->merge_request(compact('url', 'headers', 'data', 'options'));
-
- return Requests::request($request['url'], $request['headers'], $request['data'], $type, $request['options']);
- }
-
-
-
- public function request_multiple($requests, $options = array()) {
- foreach ($requests as $key => $request) {
- $requests[$key] = $this->merge_request($request, false);
- }
-
- $options = array_merge($this->options, $options);
-
-
- unset($options['type']);
-
- return Requests::request_multiple($requests, $options);
- }
-
-
-
- protected function merge_request($request, $merge_options = true) {
- if ($this->url !== null) {
- $request['url'] = Requests_IRI::absolutize($this->url, $request['url']);
- $request['url'] = $request['url']->uri;
- }
-
- if (empty($request['headers'])) {
- $request['headers'] = array();
- }
- $request['headers'] = array_merge($this->headers, $request['headers']);
-
- if (empty($request['data'])) {
- if (is_array($this->data)) {
- $request['data'] = $this->data;
- }
- }
- elseif (is_array($request['data']) && is_array($this->data)) {
- $request['data'] = array_merge($this->data, $request['data']);
- }
-
- if ($merge_options !== false) {
- $request['options'] = array_merge($this->options, $request['options']);
-
-
- unset($request['options']['type']);
- }
-
- return $request;
- }
- }
|