FileCookieJar.php in Auth0 Single Sign On 8.2
File
vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
View source
<?php
namespace GuzzleHttp\Cookie;
class FileCookieJar extends CookieJar {
private $filename;
private $storeSessionCookies;
public function __construct($cookieFile, $storeSessionCookies = false) {
parent::__construct();
$this->filename = $cookieFile;
$this->storeSessionCookies = $storeSessionCookies;
if (file_exists($cookieFile)) {
$this
->load($cookieFile);
}
}
public function __destruct() {
$this
->save($this->filename);
}
public function save($filename) {
$json = [];
foreach ($this as $cookie) {
if (CookieJar::shouldPersist($cookie, $this->storeSessionCookies)) {
$json[] = $cookie
->toArray();
}
}
$jsonStr = \GuzzleHttp\json_encode($json);
if (false === file_put_contents($filename, $jsonStr, LOCK_EX)) {
throw new \RuntimeException("Unable to save file {$filename}");
}
}
public function load($filename) {
$json = file_get_contents($filename);
if (false === $json) {
throw new \RuntimeException("Unable to load file {$filename}");
}
elseif ($json === '') {
return;
}
$data = \GuzzleHttp\json_decode($json, true);
if (is_array($data)) {
foreach (json_decode($json, true) as $cookie) {
$this
->setCookie(new SetCookie($cookie));
}
}
elseif (strlen($data)) {
throw new \RuntimeException("Invalid cookie file: {$filename}");
}
}
}
Classes
Name |
Description |
FileCookieJar |
Persists non-session cookies using a JSON formatted file |