Skip to content

Commit 7d20341

Browse files
committed
Added methods for cookie management.
1 parent b181e06 commit 7d20341

File tree

2 files changed

+146
-24
lines changed

2 files changed

+146
-24
lines changed

README.md

+75-17
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ use \InitPHP\Curl\Curl;
2323

2424
$curl = new Curl();
2525
$curl->setUrl("https://example.com");
26-
$curl->prepare()
27-
->handler();
26+
$curl->handler();
2827

2928
$res = $this->getResponse();
3029

@@ -40,17 +39,14 @@ This library can be used as HTTP client for your API service. Example:
4039
require_once "vendor/autoload.php";
4140
use \InitPHP\Curl\Curl;
4241

43-
$curl = new Curl();
42+
$curl = Curl::client('PUT', 'http://api.service.example.com/update/1')
4443

45-
$curl->setUrl("http://api.service.example.com/update/1")
46-
->setMethod("PUT") // HTTP Request METHOD
47-
->setVersion("1.1") // HTTP Version
44+
$curl->setVersion("1.1") // HTTP Version
4845
->setHeader("Content-Type", "application/json")
4946
->setBody(json_encode([
5047
'username' => 'admin',
5148
'password' => '12345',
5249
]))
53-
->prepare()
5450
->handler();
5551

5652
if(!empty($curl->getError())){
@@ -74,6 +70,14 @@ switch ($curl->getResponse('code')) {
7470

7571
## Methods
7672

73+
### `client()`
74+
75+
Creates a new client object.
76+
77+
```php
78+
public static function client(string $method, string $url): \InitPHP\Curl\Curl;
79+
```
80+
7781
### `getResponse()`
7882

7983
Returns the result of the curl operation.
@@ -284,7 +288,7 @@ public function getError(): null|string
284288
It is the `curl_setopt()` function in this library.
285289

286290
```php
287-
public function setOpt($key, $value): self
291+
public function setOpt(int $key, mixed $value): self
288292
```
289293

290294
### `setOptions()`
@@ -295,14 +299,6 @@ It is the `curl_setopt_array()` function in this library.
295299
public function setOptions(array $options): self
296300
```
297301

298-
### `prepare()`
299-
300-
cURL prepares the library for initialization.
301-
302-
```php
303-
public function prepare(): self
304-
```
305-
306302
### `handler()`
307303

308304
cURL starts and executes.
@@ -327,14 +323,76 @@ Returns the number of bytes written on success.
327323
/** @var \InitPHP\Curl\Curl $curl */
328324
$curl = new \InitPHP\Curl\Curl();
329325
$curl->setUrl("http://example.com")
330-
->prepare()
331326
->handler();
332327

333328
if($curl->save(__DIR__ . '/example.html') === FALSE){
334329
echo "The file could not be written.";
335330
}
336331
```
337332

333+
### `setCookie()`
334+
335+
Defines a cookie to be sent with cURL.
336+
337+
```php
338+
public function setCookie(string $name, string|int|float $value): self
339+
```
340+
341+
**Example :**
342+
343+
```php
344+
/** @var \InitPHP\Curl\Curl $curl */
345+
$curl->setCookie('username', 'admin') // $_COOKIE['username']
346+
->setCookie('mail', '[email protected]'); // $_COOKIE['mail']
347+
```
348+
349+
### `setCookies()`
350+
351+
Defines cookies as multiple with an associative array.
352+
353+
```php
354+
public function setCookies(array $cookies): self
355+
```
356+
357+
**Example :**
358+
359+
```php
360+
/** @var \InitPHP\Curl\Curl $curl */
361+
$curl->setCookies([
362+
'username' => 'admin', // $_COOKIE['username']
363+
'mail' => '[email protected]' // $_COOKIE['mail']
364+
]);
365+
```
366+
367+
### `setCookieJarFile()`
368+
369+
It tells the file path where the cookies values to be sent to the server will be kept or kept.
370+
371+
```php
372+
public function setCookieJarFile(string $filePath): self
373+
```
374+
375+
If the specified file exists, cookies are read from the file and sent to the server. `CURLOPT_COOKIEFILE`
376+
377+
If the specified file does not exist, cookies from the server are written to the file. `CURLOPT_COOKIEJAR`
378+
379+
**Example :**
380+
381+
```php
382+
$login = new \InitPHP\Curl\Curl();
383+
$login->setUrl("http://example.com/user/login")
384+
->setField('username', 'admin')
385+
->setField('password', '123456')
386+
->setMethod('POST')
387+
->setCookieJarFile(__DIR__ . '/session.txt')
388+
->handler();
389+
390+
$dashboard = new \InitPHP\Curl\Curl();
391+
$dashboard->setUrl("http://example.com/user/dashboard")
392+
->setCookieJarFile(__DIR__ . '/session.txt')
393+
->handler();
394+
```
395+
338396
## Credits
339397

340398
- [Muhammet ŞAFAK](https://www.muhammetsafak.com.tr) <<[email protected]>>

src/Curl.php

+71-7
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class Curl
4646

4747
protected array $fields = [];
4848

49+
protected array $cookies = [];
50+
4951
protected bool $canFollow = false;
5052

5153
protected bool $allowRedirects = false;
@@ -88,6 +90,33 @@ public function __debugInfo()
8890
];
8991
}
9092

93+
public static function client(string $method, string $url): Curl
94+
{
95+
$client = new self();
96+
$client->setMethod($method)
97+
->setUrl($url);
98+
return $client;
99+
}
100+
101+
public static function get(string $method, string $url, array $headers = [], ?string $body = null, string $version = '1.1'): array
102+
{
103+
$curl = self::client($method, $url)
104+
->setVersion($version);
105+
if(!empty($headers)){
106+
$curl->setHeaders($headers);
107+
}
108+
if(!empty($body)){
109+
$curl->setBody($body);
110+
}
111+
if(!$curl->handler()){
112+
return [
113+
'error' => (!empty($curl->getError()) ? $curl->getError() : 'Something went wrong.'),
114+
'info' => $curl->getInfo()
115+
];
116+
}
117+
return $curl->getResponse();
118+
}
119+
91120
public function setUrl(string $url): self
92121
{
93122
if(\filter_var($url, \FILTER_VALIDATE_URL) === FALSE){
@@ -212,6 +241,40 @@ public function setUpload(string $name, \CURLFile $file): self
212241
return $this;
213242
}
214243

244+
/**
245+
* @param string $name
246+
* @param string|int|float $value
247+
* @return $this
248+
*/
249+
public function setCookie(string $name, $value): self
250+
{
251+
if(!\is_string($value) && !\is_numeric($value)){
252+
throw new \InvalidArgumentException("Defined '" . $name . "' cookie value can only be string or numeric.");
253+
}
254+
$name = \trim($name);
255+
$value = \trim((string)$value);
256+
$this->cookies[$name] = $value;
257+
return $this;
258+
}
259+
260+
public function setCookies(array $cookies): self
261+
{
262+
foreach ($cookies as $key => $value) {
263+
$this->setCookie((string)$key, $value);
264+
}
265+
return $this;
266+
}
267+
268+
public function setCookieJarFile(string $filePath): self
269+
{
270+
if(!\is_file($filePath)){
271+
$this->addCurlOption(\CURLOPT_COOKIEJAR, $filePath);
272+
}else{
273+
$this->addCurlOption(\CURLOPT_COOKIEFILE, $filePath);
274+
}
275+
return $this;
276+
}
277+
215278
/**
216279
* @param null|string $key
217280
* @return null|mixed
@@ -274,14 +337,9 @@ public function setOptions(array $options): self
274337
return $this;
275338
}
276339

277-
public function prepare(): self
278-
{
279-
$this->curlOptionsPrepare();
280-
return $this;
281-
}
282-
283340
public function handler(): bool
284341
{
342+
$this->curlOptionsPrepare();
285343
$this->curl = \curl_init();
286344
try {
287345
if(!empty($this->options)){
@@ -335,7 +393,13 @@ private function curlOptionsPrepare(): void
335393
if(!empty($this->referer)){
336394
$this->addCurlOption(\CURLOPT_REFERER, $this->referer);
337395
}
338-
396+
if(!empty($this->cookies)){
397+
$cookies = [];
398+
foreach ($this->cookies as $key => $value) {
399+
$cookies[$key] = $key . '=' . $value;
400+
}
401+
$this->addCurlOption(\CURLOPT_COOKIE, \implode('; ', $cookies));
402+
}
339403
switch ($this->version) {
340404
case '1.0':
341405
$version = \CURL_HTTP_VERSION_1_0;

0 commit comments

Comments
 (0)