Browse Source

Merge pull request #43446 from jithin-space/add-patch-request-to-http-client-interface

tags/v29.0.0beta4
John Molakvoæ 3 months ago
parent
commit
836c882b8c
No account linked to committer's email address
2 changed files with 65 additions and 0 deletions
  1. 35
    0
      lib/private/Http/Client/Client.php
  2. 30
    0
      lib/public/Http/Client/IClient.php

+ 35
- 0
lib/private/Http/Client/Client.php View File

@@ -338,6 +338,41 @@ class Client implements IClient {
return new Response($response);
}

/**
* Sends a PATCH request
*
* @param string $uri
* @param array $options Array such as
* 'body' => [
* 'field' => 'abc',
* 'other_field' => '123',
* 'file_name' => fopen('/path/to/file', 'r'),
* ],
* 'headers' => [
* 'foo' => 'bar',
* ],
* 'cookies' => [
* 'foo' => 'bar',
* ],
* 'allow_redirects' => [
* 'max' => 10, // allow at most 10 redirects.
* 'strict' => true, // use "strict" RFC compliant redirects.
* 'referer' => true, // add a Referer header
* 'protocols' => ['https'] // only allow https URLs
* ],
* 'sink' => '/path/to/file', // save to a file or a stream
* 'verify' => true, // bool or string to CA file
* 'debug' => true,
* 'timeout' => 5,
* @return IResponse
* @throws \Exception If the request could not get completed
*/
public function patch(string $uri, array $options = []): IResponse {
$this->preventLocalAddress($uri, $options);
$response = $this->client->request('patch', $uri, $this->buildRequestOptions($options));
return new Response($response);
}

/**
* Sends a DELETE request
*

+ 30
- 0
lib/public/Http/Client/IClient.php View File

@@ -147,6 +147,36 @@ interface IClient {
*/
public function put(string $uri, array $options = []): IResponse;

/**
* Sends a PATCH request
* @param string $uri
* @param array $options Array such as
* 'body' => [
* 'field' => 'abc',
* 'other_field' => '123',
* 'file_name' => fopen('/path/to/file', 'r'),
* ],
* 'headers' => [
* 'foo' => 'bar',
* ],
* 'cookies' => [
* 'foo' => 'bar',
* ],
* 'allow_redirects' => [
* 'max' => 10, // allow at most 10 redirects.
* 'strict' => true, // use "strict" RFC compliant redirects.
* 'referer' => true, // add a Referer header
* 'protocols' => ['https'] // only allow https URLs
* ],
* 'sink' => '/path/to/file', // save to a file or a stream
* 'verify' => true, // bool or string to CA file
* 'debug' => true,
* @return IResponse
* @throws \Exception If the request could not get completed
* @since 29.0.0
*/
public function patch(string $uri, array $options = []): IResponse;

/**
* Sends a DELETE request
* @param string $uri

Loading…
Cancel
Save